BSD 4_3 development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Fri, 6 Jun 1986 17:13:32 +0000 (09:13 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Fri, 6 Jun 1986 17:13:32 +0000 (09:13 -0800)
Work on file usr/contrib/Makefile

Synthesized-from: CSRG/cd1/4.3

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

diff --git a/usr/contrib/Makefile b/usr/contrib/Makefile
new file mode 100644 (file)
index 0000000..49861a6
--- /dev/null
@@ -0,0 +1,41 @@
+#      Makefile        4.21    86/06/07
+#
+DESTDIR=
+CFLAGS=        -O
+
+# Programs that live in subdirectories, and have makefiles of their own.
+#
+SUBDIR=        ansi apl bib courier cpm dsh help hyper icon jove kermit mh \
+       mkmf np100 patch rcs sunrpc tac tools
+#
+# Default programs that are installed
+#
+STDINST=bib jove mh patch rcs
+#
+# Special purpose software that requires custom installation,
+# or may not be needed by all sites
+#
+OPTDIR=        B dipress emacs enet mmdf news nntp notes pathalias rn \
+       spms sumacc umodem xns X
+
+all:   ${SUBDIR}
+
+${SUBDIR}: FRC
+       cd $@; make ${MFLAGS}
+
+${OPTDIR}: FRC
+       cd $@; make ${MFLAGS} all
+
+install:
+       -for i in ${STDINST}; do \
+               (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done
+
+installall:
+       -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
+       -for i in ${OPTDIR}; do (echo $$i; cd $$i; make ${MFLAGS} clean); done
+
+FRC: