]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/samples/Makefile.in
fixes for the dialog layout for the multiline labels
[wxWidgets.git] / contrib / samples / Makefile.in
index 2ec692ed42d4f694c7b3aa0904eb1327587fb6b2..2d1cd3a037a81be3f2ab6b545e7fbc8c3e4f186c 100644 (file)
@@ -1,12 +1,10 @@
-#
-# Makefile : Builds wxWindows utils for Unix.
-#
+# $Id$
+
+CONTRIB_SAMPLES=mmedia ogl stc gizmos canvas xrc plot applet fl
 
 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