]> git.saurik.com Git - wxWidgets.git/blame - setup/general/makedirs
more files to ignore in cvs commands (setup.h, lex_yy.c, y_tab.c)
[wxWidgets.git] / setup / general / makedirs
CommitLineData
bcf1fa6b
RR
1SHELL=/bin/sh
2
3DIRS=`find . -print | sed "s|\./||g" | grep -v "/" | grep -v "\." `
4
5all:
6 @for i in $(DIRS) xxx; do \
7 if test -r $$i/Makefile ; then \
8 echo "entering directory $$i building $@";\
9 (cd $$i ; ${MAKE} $@); \
10 fi; \
11 done
12
13.DEFAULT:
14 @for i in $(DIRS) xxx; do \
15 if test -r $$i/Makefile ; then \
16 echo "entering directory $$i building $@";\
17 (cd $$i ; ${MAKE} $@); \
18 fi; \
19 done