Initial revision

This commit is contained in:
ceriel 1987-02-25 18:30:22 +00:00
parent 32be4760cd
commit 1fddbd0ee3

42
lang/occam/test/Makefile Normal file
View file

@ -0,0 +1,42 @@
.SUFFIXES: .ocm
.ocm.o:
ack -c $<
ALL = Huffman aatob copy key lifegame matmul sort tst use_prnt xxtoy
all: $(ALL)
install: all
cmp: all
clean:
rm -f *.o $(ALL) nohup.out
pr:
@pr Makefile *.ocm
opr:
make pr | opr
Huffman: Huffman.o
ack -.ocm -o Huffman Huffman.o
use_prnt: use_prnt.o
ack -.ocm -o use_prnt use_prnt.o
xxtoy: xxtoy.o
ack -.ocm -o xxtoy xxtoy.o
aatob: aatob.o
ack -.ocm -o aatob aatob.o
copy: copy.o
ack -.ocm -o copy copy.o
key: key.o
ack -.ocm -o key key.o
lifegame: lifegame.o
ack -.ocm -o lifegame lifegame.o
matmul: matmul.o
ack -.ocm -o matmul matmul.o
sort: sort.o
ack -.ocm -o sort sort.o
tst: tst.o
ack -.ocm -o tst tst.o