Add drexel-thesis post.
[blog.git] / Makefile
1 # Build everything necessary to compile the wiki.
2
3 SUBDIRS = posts/drexel-thesis posts/Hooke posts/problempack posts/rel-vcs \
4         posts/sawsim posts/yacc2dot posts/Xmodmap posts/XSLT/chapter posts/XSLT/code
5 TARGETS = all clean
6
7 all :
8
9 $(TARGETS) :
10         @for i in $(SUBDIRS); do \
11                 echo "make $@ in $$i..."; \
12                 (cd $$i; $(MAKE) $(MFLAGS) $@); done