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