diff --git a/examples/Makefile b/examples/Makefile index c9f2994..ccc5dda 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -1,13 +1,22 @@ -SUBDIRS:= `ls | egrep -v '^(CVS)$$'` +SUBDIRS:= `ls | egrep -v '^(\.svn)$$'` DATESTRING := $(shell date +%Y)$(shell date +%m)$(shell date +%d) all: - @for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i || { exit 1;} fi; done; + @for i in $(SUBDIRS); do \ + if test -e $$i/Makefile ; then \ + echo "-----------------------------------------------------------";\ + $(MAKE) -C $$i || { exit 1;} \ + fi; \ + done; clean: @rm -f *.bz2 - @for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i clean || { exit 1;} fi; done; + @for i in $(SUBDIRS); do \ + if test -e $$i/Makefile ; then \ + $(MAKE) -C $$i clean || { exit 1;} \ + fi; \ + done; dist: clean @tar --exclude=.svn -cvjf wii-examples-$(DATESTRING).tar.bz2 *