wxWidgets/demos/Makefile.in
Vadim Zeitlin 451868847b replaced make with $MAKE
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6623 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2000-03-11 16:38:01 +00:00

12 lines
240 B
Makefile

#
# Makefile : Builds wxWindows demos for Unix.
#
DEMOS_SUBDIRS=bombs dbbrowse forty fractal life poem
all:
@for d in $(DEMOS_SUBDIRS); do (cd $$d && $(MAKE)); done
clean:
@for d in $(DEMOS_SUBDIRS); do (cd $$d && $(MAKE) clean); done