aboutsummaryrefslogtreecommitdiff
path: root/backends/platform
diff options
context:
space:
mode:
authorAndre Heider2008-12-30 18:36:22 +0000
committerAndre Heider2008-12-30 18:36:22 +0000
commit771ecec9832aca4af9df09543ad34ede752638a9 (patch)
treecd388bcf7b94c6962505a151c08d1e5078160075 /backends/platform
parentb7178ecbf6dc4099fa1f7ab856281673799b3546 (diff)
downloadscummvm-rg350-771ecec9832aca4af9df09543ad34ede752638a9.tar.gz
scummvm-rg350-771ecec9832aca4af9df09543ad34ede752638a9.tar.bz2
scummvm-rg350-771ecec9832aca4af9df09543ad34ede752638a9.zip
added RM_REC, it's required for clean:
svn-id: r35623
Diffstat (limited to 'backends/platform')
-rw-r--r--backends/platform/wii/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/backends/platform/wii/Makefile b/backends/platform/wii/Makefile
index 18a36ca382..6638e0ef8f 100644
--- a/backends/platform/wii/Makefile
+++ b/backends/platform/wii/Makefile
@@ -63,6 +63,7 @@ RANLIB = $(PREFIX)ranlib
STRIP = $(PREFIX)strip -g
MKDIR = mkdir -p
RM = rm -f
+RM_REC = rm -rf
CP = cp -f
ifeq ($(GAMECUBE),1)
@@ -147,12 +148,12 @@ $(TARGET).elf: $(OBJS)
clean: clean-wii
clean-wii:
- @-$(RM) $(TARGET).elf $(TARGET).elf.map $(TARGET).dol
+ @$(RM) $(TARGET).elf $(TARGET).elf.map $(TARGET).dol
distclean: distclean-wii
distclean-wii:
- @-$(RM) dist
+ @$(RM_REC) dist
upload: $(TARGET).dol
ifeq ($(GAMECUBE),1)