From 2e990c285bfac42f598c73b8d3a9409ea04aaf00 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 12 Feb 2012 23:22:44 -0500 Subject: [PATCH] Missed a file in Frank's patch --- test/nds-test-progs/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/nds-test-progs/Makefile diff --git a/test/nds-test-progs/Makefile b/test/nds-test-progs/Makefile new file mode 100644 index 000000000..ab7725a67 --- /dev/null +++ b/test/nds-test-progs/Makefile @@ -0,0 +1,7 @@ +SUBDIRS:= $(shell ls | egrep -v '^(CVS)$$') + +all: + for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i || { exit 1;} fi; done; + +clean: + for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i clean || { exit 1;} fi; done;