]> git.saurik.com Git - wxWidgets.git/commitdiff
Add distclean target to samples/Makefile.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 1 Nov 2012 17:14:59 +0000 (17:14 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 1 Nov 2012 17:14:59 +0000 (17:14 +0000)
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

samples/Makefile.in

index f059382a04227d7bee50611a0b98e6231778a711..773632f955c6d0bf550070de9dec40791b75ce73 100644 (file)
@@ -9,3 +9,8 @@ all:
 
 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