CC = gcc CFLAGS = -g RM = rm -f default: all all: hello Hello: hello.c $(CC) $(CFLAGS) -o hello hello.c clean veryclean: $(RM) hello