Return "-1" on an error.
[unix-history] / usr / src / usr.bin / f77 / Makefile
CommitLineData
e2a6ac48
KM
1#
2# Copyright (c) 1987 Regents of the University of California.
3# All rights reserved. The Berkeley software License Agreement
4# specifies the terms and conditions for redistribution.
5#
881f0158 6# @(#)Makefile 5.3 (Berkeley) 6/18/87
e2a6ac48 7#
881f0158 8SUBDIR= f77.${MACHINE}/f77 f77.${MACHINE}/f77pass1 fpr fsplit
e2a6ac48 9
01ccfa75
KB
10all: FRC
11 for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS}); done
e2a6ac48 12
01ccfa75
KB
13install: FRC
14 for i in ${SUBDIR}; do \
15 (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); \
16 done
e2a6ac48 17
01ccfa75
KB
18clean: FRC
19 for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} clean); done
e2a6ac48 20
01ccfa75
KB
21depend: FRC
22 for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} depend); done
e2a6ac48 23
01ccfa75 24FRC: