adding an "all" target and marking both it and "clean" as phony

This commit is contained in:
Dan Buch 2011-09-03 21:03:26 -07:00
parent e511657898
commit a1902d9af4

View File

@ -1,4 +1,11 @@
CFLAGS=-Wall -g
all: ex1
clean:
rm -f ex1
.PHONY: all clean