mirror of
https://github.com/cc65/cc65.git
synced 2025-01-10 19:29:45 +00:00
removed -f again, as that is the default. also removed "-" before the actual comments, which were the workaround previously
This commit is contained in:
parent
6970053023
commit
ad97b1b08e
@ -16,9 +16,9 @@ ifdef CMD_EXE
|
||||
RMDIR = rmdir /s /q $(subst /,\,$1)
|
||||
else
|
||||
EXE :=
|
||||
DEL = $(RM) -f $1
|
||||
DEL = $(RM) $1
|
||||
MKDIR = mkdir $1
|
||||
RMDIR = $(RM) -rf $1
|
||||
RMDIR = $(RM) -r $1
|
||||
endif
|
||||
|
||||
WORKDIR := ../testwrk
|
||||
@ -52,5 +52,5 @@ mostly-clean:
|
||||
@$(MAKE) -C misc clean
|
||||
|
||||
clean: mostly-clean
|
||||
-@$(call DEL,$(WORKDIR)/bdiff$(EXE))
|
||||
-@$(call RMDIR,$(WORKDIR))
|
||||
@$(call DEL,$(WORKDIR)/bdiff$(EXE))
|
||||
@$(call RMDIR,$(WORKDIR))
|
||||
|
Loading…
x
Reference in New Issue
Block a user