]> git.sur5r.net Git - cc65/blobdiff - test/val/Makefile
Ignore return values only with CMD.EXE MkII.
[cc65] / test / val / Makefile
index b82d8fb51557798e3fcd6eeff4f8b32e4add44a3..4ad8160efbb2080a183229445dd790cc3bb814f8 100644 (file)
@@ -6,10 +6,8 @@ ifneq ($(shell echo),)
 endif
 
 ifdef CMD_EXE
-  M := -
-  DEL = del /f $(subst /,\,$1)
+  DEL = -del /f $(subst /,\,$1)
 else
-  M :=
   DEL = $(RM) $1
 endif
 
@@ -68,5 +66,5 @@ $(WORKDIR)/%.or.prg: %.c
        $(SIM65) $(SIM65FLAGS) $@
 
 clean:
-       $M@$(call DEL,$(TESTS))
-       $M@$(call DEL,$(SOURCES:.c=.o))
+       @$(call DEL,$(TESTS))
+       @$(call DEL,$(SOURCES:.c=.o))