wxWidgets/samples/Makefile.in
Vadim Zeitlin efafcdca4a Add distclean target to samples/Makefile.
It is necessary because it is used by the distclean target of the top level
makefile.

Closes #14793.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72840 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2012-11-01 17:14:59 +00:00

17 lines
338 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
distclean:
@for d in $(SAMPLES_SUBDIRS); do (cd $$d && $(MAKE) distclean); done
.PHONY: all clean distclean