]> git.saurik.com Git - wxWidgets.git/commitdiff
patch for cleanall target in mingw makefiles (which I forgot to commit before)
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 21 Mar 2001 19:13:09 +0000 (19:13 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 21 Mar 2001 19:13:09 +0000 (19:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9564 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/makelib.g95
src/makeprog.g95
src/msw/makefile.g95

index 462cff120d1c73f59fd151b70914a50cddd4e3f9..7fb95c9b3c7d2141b03f2c07087e6e7bafb0aa51 100644 (file)
@@ -20,4 +20,7 @@ $(LIBTARGET): $(OBJECTS)
        $(RANLIB) $@
 
 clean:
-       -$(RM) $(OBJECTS) $(LIBTARGET) core *.rsc *.res
+       -$(RM) $(OBJECTS) core *.rsc *.res
+
+cleanall: clean
+       -$(RM) $(LIBTARGET)
\ No newline at end of file
index 4ded0d8261370c709b34e7f0871ae123b9482fc8..2200451b60d7d68a9cfd050759802f332bcfc26c 100644 (file)
@@ -22,7 +22,9 @@ $(TARGET)_resources.o:  $(TARGET).rc
 clean:
        -$(RM) *.o
        -$(RM) $(TARGET)_resources.o
-       -$(RM) $(TARGET).exe 
        -$(RM) core 
        -$(RM) *.rsc
        -$(RM) *.res
+
+cleanall: clean
+       -$(RM) $(TARGET).exe 
index 82702e3442c7186b611c9a9b0834ab8853102981..dc1890ba3db750383d2589a006dbe8e125bbe209 100644 (file)
@@ -620,6 +620,8 @@ clean:
        -$(RM) ../xpm/*.bak
        -$(RM) ../tiff/*.o
        -$(RM) ../tiff/*.bak
+
+cleanall: clean
        -$(RM) $(WXLIB)
        -$(RM) $(ZLIBLIB)
        -$(RM) $(PNGLIB)
@@ -635,8 +637,3 @@ ifneq "$(strip $(LD_SUPPORTS_SHARED))" "yes"
        -$(RM) wx.exp
 endif
 endif
-
-
-cleanall: clean
-
-