$(RM) abc -> @$(DEL) abc 2>$(NULLDEV)

This commit is contained in:
mrdudz
2020-10-15 18:53:56 +02:00
parent a0dc7cd9e4
commit 6920b8be78
3 changed files with 10 additions and 10 deletions

View File

@@ -53,7 +53,7 @@ image.bin: image.s image.cfg
$(CL) -t none -C image.cfg -o image.bin image.s
clean:
$(RM) $(ASMS)
$(RM) $(DAIS)
$(RM) image.bin
$(DEL) $(ASMS) 2>$(NULLDEV)
$(DEL) $(DAIS) 2>$(NULLDEV)
$(DEL) image.bin 2>$(NULLDEV)