gallery.py: Shift urlencode into the _urllib_parse namespace for Python 2
[blog.git] / Makefile
index 3acb4406b0be265ae73d27063bece9c4d410e201..7c0aafad6dafac980a26997bb73cc453f12a516e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,27 +1,14 @@
 # Build everything necessary to compile the wiki.
 
-SUBDIRS = posts/Abax posts/drexel-thesis posts/Hooke posts/problempack \
+SUBDIRS = posts/drexel-thesis posts/problempack \
        posts/rel-vcs posts/sawsim posts/Thesis posts/yacc2dot posts/Xmodmap \
        posts/XSLT/chapter posts/XSLT/code
 TARGETS = all clean
 
-SCONS_SUBDIRS = posts/Pulse_oxymetry
-
-
-all : make-all scons-all
-clean : make-clean scons-clean
+all : make-all
+clean : make-clean
 
 $(TARGETS:%=make-%) :
        @for i in $(SUBDIRS); do \
                echo "make ${@:make-%=%} in $$i..."; \
                (cd $$i; $(MAKE) $(MFLAGS) ${@:make-%=%}); done
-
-scons-all :
-       @for i in $(SCONS_SUBDIRS); do \
-               echo "scons in $$i..."; \
-               (cd $$i; scons); done
-
-scons-clean :
-       @for i in $(SCONS_SUBDIRS); do \
-               echo "scons -c in $$i..."; \
-               (cd $$i; scons -c); done