author | Sam Lantinga |
Sun, 12 Feb 2012 23:22:44 -0500 | |
changeset 6287 | d69f2aa6f048 |
parent 6286 | 087aff26a39d |
child 6288 | 1204ff03a0c1 |
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/test/nds-test-progs/Makefile Sun Feb 12 23:22:44 2012 -0500 1.3 @@ -0,0 +1,7 @@ 1.4 +SUBDIRS:= $(shell ls | egrep -v '^(CVS)$$') 1.5 + 1.6 +all: 1.7 + for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i || { exit 1;} fi; done; 1.8 + 1.9 +clean: 1.10 + for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i clean || { exit 1;} fi; done;