X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/110b5d83a6c8d460e185c5a746c6fbc9f8ae2eb1..dc1f566f6ac9e15f08730ad9a0ec17fef44e9468:/contrib/samples/Makefile.in?ds=sidebyside diff --git a/contrib/samples/Makefile.in b/contrib/samples/Makefile.in index 2ec692ed42..9dc158100a 100644 --- a/contrib/samples/Makefile.in +++ b/contrib/samples/Makefile.in @@ -1,12 +1,10 @@ -# -# Makefile : Builds wxWindows utils for Unix. -# +# $Id$ + +CONTRIB_SAMPLES=canvas fl gizmos mmedia net ogl plot stc svg xrc #applet 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