Automatically build _Xmodmap and unicode_sampler for posts/Xmodmap.
[blog.git] / Makefile
1 # Build everything necessary to compile the wiki.
2
3 SUBDIRS = posts/yacc2dot posts/Xmodmap posts/XSLT/chapter posts/XSLT/code
4 TARGETS = all clean
5
6 all :
7
8 $(TARGETS) :
9         @for i in $(SUBDIRS); do \
10                 echo "make $@ in $$i..."; \
11                 (cd $$i; $(MAKE) $(MFLAGS) $@); done