Fixed Makefile to not give an error when cleaning if files were missing.

This commit is contained in:
Ken MacKay
2013-08-05 11:39:30 -07:00
parent 693cb4fc21
commit 858b1765ea
+1 -1
View File
@@ -11,6 +11,6 @@ makekeys: ecc.o makekeys.o
gcc -o makekeys makekeys.o ecc.o
clean:
rm ecc.o makekeys.o makekeys
rm -f ecc.o makekeys.o makekeys
.PHONY: default all clean