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