wxWidgets/samples/Makefile.in
Vadim Zeitlin 678b92a94a more samples are being built and samples/Makefiles uses SAMPLES_SUBDIRS
determined by configure which avoids trying to build the samples which won't
compile anyhow


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4358 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
1999-11-04 16:52:23 +00:00

12 lines
221 B
Makefile

#
# Makefile : Builds wxWindows samples for Unix.
#
SAMPLES_SUBDIRS=@SAMPLES_SUBDIRS@
all:
@for d in $(SAMPLES_SUBDIRS); do (cd $$d && make); done
clean:
@for d in $(SAMPLES_SUBDIRS); do (cd $$d && make clean); done