]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/samples/Makefile.in
Compile fix for sound without threads. Not sure
[wxWidgets.git] / contrib / samples / Makefile.in
index 2ec692ed42d4f694c7b3aa0904eb1327587fb6b2..6398a025b08bfa65e13ebf9f09a13741b0b4c7dd 100644 (file)
@@ -1,12 +1,10 @@
-#
-# Makefile : Builds wxWindows utils for Unix.
-#
+# $Id$
+
+CONTRIB_SAMPLES=fl gizmos mmedia ogl plot stc svg xrc deprecated #applet net
 
 all:
-       cd mmedia; make
-       cd stc; make
+       @for d in $(CONTRIB_SAMPLES); do (cd $$d && $(MAKE)); done
 
 clean:
-       cd mmedia; make clean
-       cd stc; make clean
+       @for d in $(CONTRIB_SAMPLES); do (cd $$d && $(MAKE) clean); done