BSD 4_4_Lite1 development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Tue, 23 Sep 1986 17:53:49 +0000 (09:53 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Tue, 23 Sep 1986 17:53:49 +0000 (09:53 -0800)
Work on file usr/src/contrib/dipress/src/bin/Makefile

Synthesized-from: CSRG/cd2/4.4BSD-Lite1

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

diff --git a/usr/src/contrib/dipress/src/bin/Makefile b/usr/src/contrib/dipress/src/bin/Makefile
new file mode 100644 (file)
index 0000000..4e430f3
--- /dev/null
@@ -0,0 +1,38 @@
+#
+# Copyright (c) 1984, 1985, 1986 Xerox Corp.
+#
+DESTBIN = ../../bin
+DESTLIB = ../../lib
+DESTMAN = ../../man
+DESTINCLUDE = ../../include
+MFLAGS = DESTBIN=../${DESTBIN} DESTLIB=../${DESTLIB} DESTMAN=../${DESTMAN} \
+       DESTINCLUDE=../${DESTINCLUDE}
+CFLAGS=        -O
+
+# Programs that live in subdirectories, and have makefiles of their own.
+#
+SUBDIR=        ipfe iptotext ipmetrics makextdev maha mp2res plot2ip charset dipress restotext stackres texttoip ipf
+
+
+all:   ${SUBDIR}
+
+${SUBDIR}: FRC
+       cd $@; make ${MFLAGS}
+
+FRC:
+
+install: ${DESTBIN}/qip
+       for i in ${SUBDIR}; do \
+               (cd $$i; make ${MFLAGS} install); done
+
+${DESTBIN}/qip: qip
+       cp qip ${DESTBIN}
+
+lint:
+       for i in ${SUBDIR}; do \
+               (cd $$i; make ${MFLAGS} lint); done
+
+clean:
+       rm -f a.out core *.s *.o
+       for i in ${SUBDIR}; do \
+               (cd $$i; make ${MFLAGS} clean); done