]> Chaos Git - corbenik/ctrulib.git/commitdiff
add intermediate Makefile for input examples
authorDave Murphy <davem@devkitpro.org>
Wed, 25 Feb 2015 15:36:07 +0000 (15:36 +0000)
committerDave Murphy <davem@devkitpro.org>
Wed, 25 Feb 2015 15:36:07 +0000 (15:36 +0000)
examples/input/Makefile [new file with mode: 0644]

diff --git a/examples/input/Makefile b/examples/input/Makefile
new file mode 100644 (file)
index 0000000..bce05ec
--- /dev/null
@@ -0,0 +1,7 @@
+SUBDIRS:= `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;
+install:
+       @for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE)  -C $$i install || { exit 1;} fi; done;