mirror of
https://github.com/cc65/cc65.git
synced 2025-02-06 12:31:12 +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)
|
RMDIR = rmdir /s /q $(subst /,\,$1)
|
||||||
else
|
else
|
||||||
EXE :=
|
EXE :=
|
||||||
DEL = $(RM) $1
|
DEL = $(RM) -f $1
|
||||||
MKDIR = mkdir $1
|
MKDIR = mkdir $1
|
||||||
RMDIR = rmdir $1
|
RMDIR = $(RM) -rf $1
|
||||||
endif
|
endif
|
||||||
|
|
||||||
WORKDIR := ../testwrk
|
WORKDIR := ../testwrk
|
||||||
|
Loading…
x
Reference in New Issue
Block a user