# # 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 all: FRC for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS}); done install: FRC for i in ${SUBDIR}; do \ (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); \ done clean: FRC for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} clean); done depend: FRC for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} depend); done FRC: