From: Christian G. [M. Mitch] <mas...@us...> - 2002-01-20 12:01:33
|
Update of /cvsroot/jprojecttimer/jprojecttimer In directory usw-pr-cvs1:/tmp/cvs-serv17443 Modified Files: Makefile Log Message: Multiple subdirectories are traversed correctly. Index: Makefile =================================================================== RCS file: /cvsroot/jprojecttimer/jprojecttimer/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Makefile 2002/01/19 10:38:22 1.7 --- Makefile 2002/01/20 12:01:29 1.8 *************** *** 55,64 **** all: $(CLASSES) for DIR in `find . -maxdepth 1 -mindepth 1 -type d`; do \ ! test $$DIR != ./CVS && test -d $$DIR && cd $$DIR && $(MAKE) all; \ done;true clean: for DIR in `find . -maxdepth 1 -mindepth 1 -type d`; do \ ! test $$DIR != ./CVS && test -d $$DIR && cd $$DIR && $(MAKE) clean; \ done;true rm -f *~ --- 55,64 ---- all: $(CLASSES) for DIR in `find . -maxdepth 1 -mindepth 1 -type d`; do \ ! (test $$DIR != ./CVS && test -d $$DIR && cd $$DIR && $(MAKE) all) \ done;true clean: for DIR in `find . -maxdepth 1 -mindepth 1 -type d`; do \ ! (test $$DIR != ./CVS && test -d $$DIR && cd $$DIR && $(MAKE) clean) \ done;true rm -f *~ *************** *** 70,74 **** atonce: for DIR in `find . -maxdepth 1 -mindepth 1 -type d`; do \ ! test $$DIR != ./CVS && test -d $$DIR && cd $$DIR && $(MAKE) atonce; \ done;true -javac $(JFLAGS) *.java --- 70,74 ---- atonce: for DIR in `find . -maxdepth 1 -mindepth 1 -type d`; do \ ! (test $$DIR != ./CVS && test -d $$DIR && cd $$DIR && $(MAKE) atonce) \ done;true -javac $(JFLAGS) *.java |