BSD 4_3 development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Thu, 17 Jan 1985 04:45:20 +0000 (20:45 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Thu, 17 Jan 1985 04:45:20 +0000 (20:45 -0800)
Work on file usr/src/usr.bin/f77/Makefile

Synthesized-from: CSRG/cd1/4.3

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..22b671a
--- /dev/null
@@ -0,0 +1,18 @@
+DESTDIR              =
+
+SUBDIR       = src/f77 src/f77pass1 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