X-Git-Url: http://git.tremily.us/?a=blobdiff_plain;f=Makefile;h=7c0aafad6dafac980a26997bb73cc453f12a516e;hb=44b7972559b7111e5e4b1660d4aff65bb48f3480;hp=c734fa8995ace9105a346ab5aab1c596a5a5e1e0;hpb=8b386a4d0f572360da6a83b175e508033868820d;p=blog.git diff --git a/Makefile b/Makefile index c734fa8..7c0aafa 100644 --- a/Makefile +++ b/Makefile @@ -5,23 +5,10 @@ SUBDIRS = posts/drexel-thesis posts/problempack \ posts/XSLT/chapter posts/XSLT/code TARGETS = all clean -SCONS_SUBDIRS = posts/Pulse_oxymetry - - -all : make-all scons-all -clean : make-clean scons-clean +all : make-all +clean : make-clean $(TARGETS:%=make-%) : @for i in $(SUBDIRS); do \ echo "make ${@:make-%=%} in $$i..."; \ (cd $$i; $(MAKE) $(MFLAGS) ${@:make-%=%}); done - -scons-all : - @for i in $(SCONS_SUBDIRS); do \ - echo "scons in $$i..."; \ - (cd $$i; scons); done - -scons-clean : - @for i in $(SCONS_SUBDIRS); do \ - echo "scons -c in $$i..."; \ - (cd $$i; scons -c); done