Make rm use -f

This commit is contained in:
Tim 'mithro' Ansell 2019-08-23 14:20:29 +02:00
parent d7126bb863
commit bf38bf67ee

View file

@ -36,9 +36,9 @@ load: blink.dfu
# Cleanup the generated files.
clean:
-rm blink.json # Generate netlist
-rm blink.asc # FPGA configuration
-rm blink.bit # FPGA bitstream
-rm blink.dfu # DFU image loadable onto the Fomu
-rm -f blink.json # Generate netlist
-rm -f blink.asc # FPGA configuration
-rm -f blink.bit # FPGA bitstream
-rm -f blink.dfu # DFU image loadable onto the Fomu
.PHONY: load