From: Christian G. [M. Mitch] <mas...@us...> - 2002-01-20 12:01:33
|
Update of /cvsroot/jprojecttimer/jprojecttimer/de/cgarbs/apps/jprojecttimer In directory usw-pr-cvs1:/tmp/cvs-serv17443/de/cgarbs/apps/jprojecttimer Modified Files: Makefile Log Message: Multiple subdirectories are traversed correctly. Index: Makefile =================================================================== RCS file: /cvsroot/jprojecttimer/jprojecttimer/de/cgarbs/apps/jprojecttimer/Makefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile 2001/03/20 22:17:42 1.1.1.1 --- Makefile 2002/01/20 12:01:29 1.2 *************** *** 35,44 **** 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 *~ --- 35,44 ---- 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 *~ *************** *** 49,53 **** 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 --- 49,53 ---- 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 |