port to tahoe by Nir peleg of CCI
[unix-history] / usr / src / usr.bin / pascal / Makefile
index 686edd0..28625fe 100644 (file)
@@ -1,11 +1,16 @@
-#      @(#)Makefile    1.2     (Berkeley)      %G%
+#
+# Copyright (c) 1980 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%
 #
 DESTDIR=
 CFLAGS=        -O
 
 # Programs that live in subdirectories, and have makefiles of their own.
 #
 #
 DESTDIR=
 CFLAGS=        -O
 
 # Programs that live in subdirectories, and have makefiles of their own.
 #
-SUBDIR=        pi pc0 px pxp pdx utilities
+SUBDIR=        eyacc pi pc0 px pxp pdx utilities
 
 all:   ${SUBDIR}
 
 
 all:   ${SUBDIR}
 
@@ -14,8 +19,11 @@ ${SUBDIR}: /tmp
 
 install:
        for i in ${SUBDIR}; do \
 
 install:
        for i in ${SUBDIR}; do \
-               (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done
+               (echo $$i; cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); \
+       done
 
 clean:
        rm -f a.out core *.s *.o
 
 clean:
        rm -f a.out core *.s *.o
-       for i in ${SUBDIR}; do (echo $$i; cd $$i; make ${MFLAGS} clean); done
+       for i in ${SUBDIR}; do \
+               (echo $$i; cd $$i; make ${MFLAGS} clean); \
+       done