date and time created 83/07/03 18:53:34 by sam
authorSam Leffler <sam@ucbvax.Berkeley.EDU>
Mon, 4 Jul 1983 09:53:34 +0000 (01:53 -0800)
committerSam Leffler <sam@ucbvax.Berkeley.EDU>
Mon, 4 Jul 1983 09:53:34 +0000 (01:53 -0800)
SCCS-vsn: contrib/Makefile 4.1

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

diff --git a/usr/src/contrib/Makefile b/usr/src/contrib/Makefile
new file mode 100644 (file)
index 0000000..44fe777
--- /dev/null
@@ -0,0 +1,22 @@
+#      Makefile        4.1     83/07/03
+#
+DESTDIR=
+CFLAGS=        -O
+
+# Programs that live in subdirectories, and have makefiles of their own.
+#
+SUBDIR=        apl bib courier cpm icon hyper mh news notes rcs sccstorcs spms
+
+all:   ${SUBDIR}
+
+${SUBDIR}: FRC
+       cd $@; make ${MFLAGS}
+
+install:
+       for i in ${SUBDIR}; do \
+               (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done
+
+clean:
+       for i in ${SUBDIR}; do (echo $$i; cd $$i; make ${MFLAGS} clean); done
+
+FRC: