Update of /cvsroot/jprojecttimer/jprojecttimer/de/cgarbs/apps
In directory usw-pr-cvs1:/tmp/cvs-serv17443/de/cgarbs/apps
Modified Files:
Makefile
Log Message:
Multiple subdirectories are traversed correctly.
Index: Makefile
===================================================================
RCS file: /cvsroot/jprojecttimer/jprojecttimer/de/cgarbs/apps/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:38 1.1.1.1
--- Makefile 2002/01/20 12:01:29 1.2
***************
*** 23,32 ****
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 *~
--- 23,32 ----
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 *~
***************
*** 37,41 ****
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
--- 37,41 ----
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
|