BSD 4_3_Tahoe release
[unix-history] / usr / src / usr.bin / f77 / Makefile
index 22b671a..c92d82b 100644 (file)
@@ -1,18 +1,24 @@
-DESTDIR              =
+#
+# Copyright (c) 1987 Regents of the University of California.
+# All rights reserved.  The Berkeley software License Agreement
+# specifies the terms and conditions for redistribution.
+#
+#      @(#)Makefile    5.3 (Berkeley) 6/18/87
+#
+SUBDIR=        f77.${MACHINE}/f77 f77.${MACHINE}/f77pass1 fpr fsplit
 
 
-SUBDIR       = src/f77 src/f77pass1 src/fpr src/fsplit
+all: FRC
+       for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS}); done
 
 
-all:           ${SUBDIR}
+install: FRC
+       for i in ${SUBDIR}; do \
+               (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); \
+       done
 
 
-${SUBDIR}:     /tmp
-               cd $@; make ${MFLAGS}
+clean: FRC
+       for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} clean); done
 
 
-install:
-               for i in ${SUBDIR}; do \
-               (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done
+depend: FRC
+       for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} depend); 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
+FRC: