posts:bugs: Record my Emacs XTerm version-detection patch
[blog.git] / Makefile
index 69e4efa69e8b7adbd49f48686ce17303d8ef7513..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/sawsim posts/yacc2dot \
-       posts/Xmodmap 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