From 1fddbd0ee31f4420b5128b3d88cd7294c0c8c0a3 Mon Sep 17 00:00:00 2001 From: ceriel Date: Wed, 25 Feb 1987 18:30:22 +0000 Subject: [PATCH] Initial revision --- lang/occam/test/Makefile | 42 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 lang/occam/test/Makefile 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 -- 2.34.1