From: ceriel Date: Wed, 25 Feb 1987 18:30:22 +0000 (+0000) Subject: Initial revision X-Git-Tag: release-5-5~4595 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=1fddbd0ee31f4420b5128b3d88cd7294c0c8c0a3;p=ack.git Initial revision --- diff --git a/lang/occam/test/Makefile b/lang/occam/test/Makefile new file mode 100644 index 000000000..caf85228c --- /dev/null +++ b/lang/occam/test/Makefile @@ -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