From: Ralph Campbell Date: Thu, 3 Mar 1983 05:29:58 +0000 (-0800) Subject: date and time created 83/03/02 13:29:58 by ralph X-Git-Tag: BSD-4_1c_2-Snapshot-Development~128 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/57b78ab354c4a8dde0ab4c0f03129bdf2262e91f date and time created 83/03/02 13:29:58 by ralph SCCS-vsn: local/ditroff/ditroff.old.okeeffe/gremlin.aed/gprint/Makefile 1.1 --- diff --git a/usr/src/local/ditroff/ditroff.old.okeeffe/gremlin.aed/gprint/Makefile b/usr/src/local/ditroff/ditroff.old.okeeffe/gremlin.aed/gprint/Makefile new file mode 100644 index 0000000000..26dd5fa506 --- /dev/null +++ b/usr/src/local/ditroff/ditroff.old.okeeffe/gremlin.aed/gprint/Makefile @@ -0,0 +1,23 @@ + +OBJ= hdb.o hpoint.o hgraph.o main.o getlogin.o + +all: $(OBJ) gprint + +hdb.o: hdb.c + cc -c -g hdb.c + +hgraph.o: hgraph.c + cc -c -g hgraph.c + +hpoint.o: hpoint.c + cc -c -g hpoint.c + + +main.o: main.c + cc -c -g main.c + +gprint: $(OBJ) + cc -o gprint -g $(OBJ) -lm + +gdump: gdump.o getlogin.o + cc -o gdump -g gdump.o getlogin.o