1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-10 19:29:45 +00:00

use rm -r instead of rmdir, and use -f for rm, that makes subsequent runs of "make clean" not fail

This commit is contained in:
mrdudz 2015-07-10 10:43:00 +02:00
parent bdb01212c2
commit 6970053023

View File

@ -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