mkogg.py: Fix 'self.get_mp4_metadata(self, source)'
[blog.git] / Makefile
1 # Build everything necessary to compile the wiki.
2
3 SUBDIRS = posts/drexel-thesis 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 : make-all
9 clean : make-clean
10
11 $(TARGETS:%=make-%) :
12         @for i in $(SUBDIRS); do \
13                 echo "make ${@:make-%=%} in $$i..."; \
14                 (cd $$i; $(MAKE) $(MFLAGS) ${@:make-%=%}); done