date and time created 83/01/31 18:05:04 by mckusick
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Tue, 1 Feb 1983 10:05:04 +0000 (02:05 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Tue, 1 Feb 1983 10:05:04 +0000 (02:05 -0800)
SCCS-vsn: usr.bin/pascal/Makefile 1.1

usr/src/usr.bin/pascal/Makefile [new file with mode: 0644]

diff --git a/usr/src/usr.bin/pascal/Makefile b/usr/src/usr.bin/pascal/Makefile
new file mode 100644 (file)
index 0000000..5ae7dd9
--- /dev/null
@@ -0,0 +1,21 @@
+#      @(#)Makefile    1.1     (Berkeley)      %G%
+#
+DESTDIR=
+CFLAGS=        -O
+
+# Programs that live in subdirectories, and have makefiles of their own.
+#
+SUBDIR=        pi pc0 px pxp pdx pascal
+
+all:   ${SUBDIR}
+
+${SUBDIR}: /tmp
+       cd $@; make ${MFLAGS}
+
+install:
+       for i in ${SUBDIR}; do \
+               (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done
+
+clean:
+       rm -f a.out core *.s *.o
+       for i in ${SUBDIR}; do (echo $$i; cd $$i; make ${MFLAGS} clean); done