made 'make -f Makefile clean' less destructive under minGW, removed some redundant redundancy
git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@4669 127b21dd-08f5-0310-b4b7-95ae10353056
This commit is contained in:
parent
d6d4accdc8
commit
35f3a46c2c
8
Makefile
8
Makefile
@ -106,7 +106,12 @@ endif
|
||||
.PHONY: clean
|
||||
clean:
|
||||
$(MAKE) -f GNUmakefile clean
|
||||
$(RM) -rf obj obj.dbg oolite.app
|
||||
ifeq ($(GNUSTEP_HOST_OS),mingw32)
|
||||
@echo "The oolite.app directory contains settings, logs, savegames and snapshots."
|
||||
@echo "Please clean oolite.app manually if required."
|
||||
else
|
||||
$(RM) -rf oolite.app
|
||||
endif
|
||||
$(RM) -rf AddOns && cd DebugOXP && $(MAKE) clean && cd ..
|
||||
|
||||
.PHONY: distclean
|
||||
@ -114,7 +119,6 @@ distclean: clean
|
||||
ifneq ($(GNUSTEP_HOST_OS),mingw32)
|
||||
$(MAKE) -f libjs.make distclean debug=yes
|
||||
$(MAKE) -f libjs.make distclean debug=no
|
||||
$(RM) -rf AddOns && cd DebugOXP && $(MAKE) clean && cd ..
|
||||
endif
|
||||
|
||||
.PHONY: all
|
||||
|
Loading…
x
Reference in New Issue
Block a user