678b92a94a
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
12 lines
221 B
Makefile
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
|