mirror of
https://github.com/cc65/cc65.git
synced 2025-08-08 22:25:28 +00:00
Removed DEL as suggested by Greg.
This commit is contained in:
@@ -11,12 +11,10 @@ endif
|
||||
|
||||
ifdef CMD_EXE
|
||||
EXE := .exe
|
||||
DEL = -del /f $(subst /,\,$1)
|
||||
MKDIR = mkdir $(subst /,\,$1)
|
||||
RMDIR = -rmdir /s /q $(subst /,\,$1)
|
||||
else
|
||||
EXE :=
|
||||
DEL = $(RM) $1
|
||||
MKDIR = mkdir $1
|
||||
RMDIR = $(RM) -r $1
|
||||
endif
|
||||
@@ -54,5 +52,4 @@ mostlyclean:
|
||||
@$(MAKE) -C misc clean
|
||||
|
||||
clean: mostlyclean
|
||||
@$(call DEL,$(WORKDIR)/bdiff$(EXE))
|
||||
@$(call RMDIR,$(WORKDIR))
|
||||
|
Reference in New Issue
Block a user