Initial revision
authorceriel <none@none>
Wed, 25 Feb 1987 18:30:22 +0000 (18:30 +0000)
committerceriel <none@none>
Wed, 25 Feb 1987 18:30:22 +0000 (18:30 +0000)
lang/occam/test/Makefile [new file with mode: 0644]

diff --git a/lang/occam/test/Makefile b/lang/occam/test/Makefile
new file mode 100644 (file)
index 0000000..caf8522
--- /dev/null
@@ -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