Add sawsim post.
[blog.git] / Makefile
1 # Build everything necessary to compile the wiki.
2
3 SUBDIRS = posts/problempack posts/rel-vcs posts/sawsim posts/yacc2dot \
4         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