date and time created 87/12/12 17:36:15 by bostic
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Sun, 13 Dec 1987 09:36:15 +0000 (01:36 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Sun, 13 Dec 1987 09:36:15 +0000 (01:36 -0800)
SCCS-vsn: old/eqn/Makefile 5.1

usr/src/old/eqn/Makefile [new file with mode: 0644]

diff --git a/usr/src/old/eqn/Makefile b/usr/src/old/eqn/Makefile
new file mode 100644 (file)
index 0000000..9cf1ddd
--- /dev/null
@@ -0,0 +1,24 @@
+#
+# 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: