From a1902d9af4f8bc2526d147a4d4955e375a0cf347 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sat, 3 Sep 2011 21:03:26 -0700 Subject: [PATCH] adding an "all" target and marking both it and "clean" as phony --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index 931a728..ee08819 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,11 @@ CFLAGS=-Wall -g + +all: ex1 + + clean: rm -f ex1 + + +.PHONY: all clean