]> git.sur5r.net Git - cc65/commitdiff
Removed DEL as suggested by Greg.
authorOliver Schmidt <ol.sc@web.de>
Sun, 16 Oct 2016 11:47:31 +0000 (13:47 +0200)
committerOliver Schmidt <ol.sc@web.de>
Sun, 16 Oct 2016 11:47:31 +0000 (13:47 +0200)
test/Makefile

index f0d63f689d587f4919cd8c3c0aefddf1ecaf6192..4817e70e0ff103ce6692c9901578e7a81b1d34bc 100644 (file)
@@ -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))