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
This commit is contained in:
Vadim Zeitlin
1999-11-04 16:52:23 +00:00
parent e8ce9e6baf
commit 678b92a94a
3 changed files with 47 additions and 104 deletions

View File

@@ -2,72 +2,10 @@
# Makefile : Builds wxWindows samples for Unix.
#
SAMPLES_SUBDIRS=@SAMPLES_SUBDIRS@
all:
cd bombs && make
cd checklst && make
cd config && make
cd controls && make
cd dialogs && make
cd docview && make
cd docvwmdi && make
cd dynamic && make
cd fractal && make
cd grid && make
cd help && make
cd image && make
cd internat && make
cd layout && make
cd listctrl && make
cd memcheck && make
cd minifram && make
cd minimal && make
cd notebook && make
cd printing && make
cd proplist && make
cd resource && make
cd sashtest && make
cd splitter && make
cd text && make
cd toolbar && make
cd typetest && make
cd validate && make
cd treectrl && make
cd wxpoem && make
cd dnd && make
cd thread && make
cd html && make
@for d in $(SAMPLES_SUBDIRS); do (cd $$d && make); done
clean:
cd bombs && make clean
cd checklst && make clean
cd config && make clean
cd controls && make clean
cd dialogs && make clean
cd docview && make clean
cd docvwmdi && make clean
cd dynamic && make clean
cd fractal && make clean
cd grid && make clean
cd help && make clean
cd image && make clean
cd internat && make clean
cd layout && make clean
cd listctrl && make clean
cd memcheck && make clean
cd minifram && make clean
cd minimal && make clean
cd notebook && make clean
cd printing && make clean
cd proplist && make clean
cd resource && make clean
cd sashtest && make clean
cd splitter && make clean
cd toolbar && make clean
cd typetest && make clean
cd validate && make clean
cd treectrl && make clean
cd wxpoem && make clean
cd dnd && make clean
cd thread && make clean
cd html && make clean
@for d in $(SAMPLES_SUBDIRS); do (cd $$d && make clean); done