posts:node: Add a post on Node and npm
[blog.git] / Makefile
index c734fa8995ace9105a346ab5aab1c596a5a5e1e0..7c0aafad6dafac980a26997bb73cc453f12a516e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,23 +5,10 @@ SUBDIRS = posts/drexel-thesis posts/problempack \
        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