From 02ff590b5a5e8de57d38db5dadfa962b169286da Mon Sep 17 00:00:00 2001 From: Dave Murphy Date: Wed, 25 Feb 2015 15:36:07 +0000 Subject: [PATCH] add intermediate Makefile for input examples --- examples/input/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 examples/input/Makefile diff --git a/examples/input/Makefile b/examples/input/Makefile new file mode 100644 index 0000000..bce05ec --- /dev/null +++ b/examples/input/Makefile @@ -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;