date and time created 87/12/12 17:36:15 by bostic
[unix-history] / usr / src / old / eqn / Makefile
#
# 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.1 (Berkeley) %G%
#
SUBDIR= eqn neqn
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: