BSD 4_2 development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Thu, 19 May 1983 12:17:42 +0000 (04:17 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Thu, 19 May 1983 12:17:42 +0000 (04:17 -0800)
Work on file usr/src/usr.bin/f77/Makefile

Synthesized-from: CSRG/cd1/4.2

usr/src/usr.bin/f77/Makefile [new file with mode: 0644]

diff --git a/usr/src/usr.bin/f77/Makefile b/usr/src/usr.bin/f77/Makefile
new file mode 100644 (file)
index 0000000..4aa24e1
--- /dev/null
@@ -0,0 +1,18 @@
+DESTDIR              =
+
+SUBDIR       = src/f77 src/f77pass1 src/f1 src/f2 src/fpr src/fsplit
+
+all:           ${SUBDIR}
+
+${SUBDIR}:     /tmp
+               cd $@; make ${MFLAGS}
+
+install:
+               for i in ${SUBDIR}; do \
+               (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done
+
+clean:
+               for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} clean); done
+
+depend:
+               for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} depend); done