posts:bibtex: Update with crossref ordering notes
[blog.git] / Makefile
index 806849338e7202772bff3b52552539b53457de31..7c0aafad6dafac980a26997bb73cc453f12a516e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,14 @@
 # Build everything necessary to compile the wiki.
 
-SUBDIRS = posts/problempack posts/rel-vcs posts/yacc2dot posts/Xmodmap \
+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