diff options
| -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) | 
