diff options
author | Andre Heider | 2008-12-30 18:36:22 +0000 |
---|---|---|
committer | Andre Heider | 2008-12-30 18:36:22 +0000 |
commit | 771ecec9832aca4af9df09543ad34ede752638a9 (patch) | |
tree | cd388bcf7b94c6962505a151c08d1e5078160075 /backends | |
parent | b7178ecbf6dc4099fa1f7ab856281673799b3546 (diff) | |
download | scummvm-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')
-rw-r--r-- | backends/platform/wii/Makefile | 5 |
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) |