From: Dave Murphy Date: Wed, 25 Feb 2015 15:36:07 +0000 (+0000) Subject: add intermediate Makefile for input examples X-Git-Tag: v0.5.0~18 X-Git-Url: https://chaos.moe/g/?a=commitdiff_plain;h=02ff590b5a5e8de57d38db5dadfa962b169286da;p=corbenik%2Fctrulib.git add intermediate Makefile for input examples --- 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;