BSD 4_3 development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Fri, 24 Jan 1986 19:17:31 +0000 (11:17 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Fri, 24 Jan 1986 19:17:31 +0000 (11:17 -0800)
Work on file usr/contrib/dipress/src/bin/ipf/Makefile

Synthesized-from: CSRG/cd1/4.3

usr/contrib/dipress/src/bin/ipf/Makefile [new file with mode: 0644]

diff --git a/usr/contrib/dipress/src/bin/ipf/Makefile b/usr/contrib/dipress/src/bin/ipf/Makefile
new file mode 100644 (file)
index 0000000..82399c1
--- /dev/null
@@ -0,0 +1,22 @@
+#
+# Copyright (c) 1984, 1985 Xerox Corp.
+#
+DESTINCLUDE=../../../include
+DESTBIN=../../../bin
+DESTLIB=../../../lib
+
+ipf: ipf.o getopt.o
+       cc -o ipf ipf.o getopt.o
+
+ipf.o: $(DESTINCLUDE)/iptokens.h $(DESTINCLUDE)/ipnames.h
+       cc -c -I$(DESTINCLUDE) ipf.c
+
+lint: 
+       lint -ab -I$(DESTINCLUDE) ipf.c getopt.c $(DESTLIB)/llib-lip.ln -lc
+clean:
+       rm -f ipf *.o
+
+install: $(DESTBIN)/ipf
+
+$(DESTBIN)/ipf: ipf
+       install -c -s ipf $(DESTBIN)