X-Git-Url: http://git.tremily.us/?a=blobdiff_plain;f=Makefile;h=7c0aafad6dafac980a26997bb73cc453f12a516e;hb=ffb42f3076546b2649481f3fa651594e4cdb10e5;hp=d79c957a917e183311c283c318686fa9869ebc93;hpb=ec8b85e24cd1a9c2258993b8a75ac0d8b14e5bd3;p=blog.git diff --git a/Makefile b/Makefile index d79c957..7c0aafa 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,14 @@ # Build everything necessary to compile the wiki. -SUBDIRS = posts/yacc2dot posts/XSLT/chapter posts/XSLT/code +SUBDIRS = posts/drexel-thesis posts/problempack \ + posts/rel-vcs posts/sawsim posts/Thesis posts/yacc2dot posts/Xmodmap \ + posts/XSLT/chapter posts/XSLT/code TARGETS = all clean -all : +all : make-all +clean : make-clean -$(TARGETS) : +$(TARGETS:%=make-%) : @for i in $(SUBDIRS); do \ - echo "make $@ in $$i..."; \ - (cd $$i; $(MAKE) $(MFLAGS) $@); done + echo "make ${@:make-%=%} in $$i..."; \ + (cd $$i; $(MAKE) $(MFLAGS) ${@:make-%=%}); done