From: mrdudz Date: Fri, 10 Jul 2015 09:11:41 +0000 (+0200) Subject: removed -f again, as that is the default. also removed "-" before the actual comments... X-Git-Tag: V2.16~252^2~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ad97b1b08e0e389a12bdb998afc1402bac7f0aa6;p=cc65 removed -f again, as that is the default. also removed "-" before the actual comments, which were the workaround previously --- diff --git a/test/Makefile b/test/Makefile index d2ad2ee94..eb968095a 100644 --- a/test/Makefile +++ b/test/Makefile @@ -16,9 +16,9 @@ ifdef CMD_EXE RMDIR = rmdir /s /q $(subst /,\,$1) else EXE := - DEL = $(RM) -f $1 + DEL = $(RM) $1 MKDIR = mkdir $1 - RMDIR = $(RM) -rf $1 + RMDIR = $(RM) -r $1 endif WORKDIR := ../testwrk @@ -52,5 +52,5 @@ mostly-clean: @$(MAKE) -C misc clean clean: mostly-clean - -@$(call DEL,$(WORKDIR)/bdiff$(EXE)) - -@$(call RMDIR,$(WORKDIR)) + @$(call DEL,$(WORKDIR)/bdiff$(EXE)) + @$(call RMDIR,$(WORKDIR))