Reinstated 'destructive' Makefile clean under windows.

git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@4671 127b21dd-08f5-0310-b4b7-95ae10353056
master
Marc 2011-12-01 17:31:20 +00:00
parent 6e06f5c94c
commit 3f010a5e0f
1 changed files with 0 additions and 9 deletions

View File

@ -106,17 +106,8 @@ endif
.PHONY: clean
clean:
$(MAKE) -f GNUmakefile clean
ifeq ($(GNUSTEP_HOST_OS),mingw32)
@echo ""
@echo "The oolite.app directory contains settings, logs, savegames and snapshots."
rm -idr oolite.app
@echo ""
@echo "The AddOns directory might contain more than just basic-debug,oxp."
rm -idr AddOns && cd DebugOXP && $(MAKE) clean && cd ..
else
$(RM) -rf oolite.app
$(RM) -rf AddOns && cd DebugOXP && $(MAKE) clean && cd ..
endif
.PHONY: distclean
distclean: clean