projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
don't use wxStaticCast to wxBookCtrlBase -- it doesn't work
[wxWidgets.git]
/
contrib
/
samples
/
Makefile.in
diff --git
a/contrib/samples/Makefile.in
b/contrib/samples/Makefile.in
index 2ec692ed42d4f694c7b3aa0904eb1327587fb6b2..87a10c91f61ad52e0ab08a501c7a019d0030b994 100644
(file)
--- a/
contrib/samples/Makefile.in
+++ b/
contrib/samples/Makefile.in
@@
-1,12
+1,10
@@
-#
-# Makefile : Builds wxWindows utils for Unix.
-#
+#
$Id$
+
+CONTRIB_SAMPLES=fl gizmos mmedia ogl plot stc svg deprecated #applet net
all:
all:
- cd mmedia; make
- cd stc; make
+ @for d in $(CONTRIB_SAMPLES); do (cd $$d && $(MAKE)); done
clean:
clean:
- cd mmedia; make clean
- cd stc; make clean
+ @for d in $(CONTRIB_SAMPLES); do (cd $$d && $(MAKE) clean); done