Initial revision

This commit is contained in:
ceriel
1988-04-19 10:38:18 +00:00
parent ee213b8c11
commit 0ffa06bf15
12 changed files with 150 additions and 0 deletions

2
mach/minix/liboc/.distr Normal file
View File

@@ -0,0 +1,2 @@
Makefile
compmodule

23
mach/minix/liboc/Makefile Normal file
View File

@@ -0,0 +1,23 @@
SUF=o
MAKEFILE=../../proto/libg/Makefile
MACHDEF="MACH=minix" "SUF=$(SUF)" "ASAR=aal"
PCDEF="PREF=ocm" "SUB=" "SRC=lang/occam/lib"
all:
make -f $(MAKEFILE) $(PCDEF) $(MACHDEF) tail
install:
make -f $(MAKEFILE) $(PCDEF) $(MACHDEF) tailcp
cmp:
make -f $(MAKEFILE) $(PCDEF) $(MACHDEF) tail
-../../compare tail_ocm
clean:
-rm -f *.old *.[ce$(SUF)] tail*
opr:
make pr | opr
pr:
@pr Makefile

6
mach/minix/liboc/compmodule Executable file
View File

@@ -0,0 +1,6 @@
if ${MACH?} -I../../../h ${MACHFL?} $1 1>&2
then
echo `basename $1 $2`.o
else
exit 1
fi