CC = gcc CFLAGS = -Wall -g all: hello hello: hello.o hello.o: hello.c .PHONY: clean clean: rm -f *.o *~ hello