From: mrdudz Date: Fri, 10 Jul 2015 08:43:00 +0000 (+0200) Subject: use rm -r instead of rmdir, and use -f for rm, that makes subsequent runs of "make... X-Git-Tag: V2.16~252^2~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6970053023524caf75ad9b9873acbd320c1c3c87;p=cc65 use rm -r instead of rmdir, and use -f for rm, that makes subsequent runs of "make clean" not fail --- diff --git a/test/Makefile b/test/Makefile index 8c005a957..d2ad2ee94 100644 --- a/test/Makefile +++ b/test/Makefile @@ -16,9 +16,9 @@ ifdef CMD_EXE RMDIR = rmdir /s /q $(subst /,\,$1) else EXE := - DEL = $(RM) $1 + DEL = $(RM) -f $1 MKDIR = mkdir $1 - RMDIR = rmdir $1 + RMDIR = $(RM) -rf $1 endif WORKDIR := ../testwrk