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:
parent
bdb01212c2
commit
6970053023
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user