APP=hello CPP=g++ CPPFLAGS=-DDEBUG -g $(APP): $(APP).o $(CPP) $(APP).o -o $(APP) .PHONY: clean wipe clean: rm -f *.o wipe: clean rm -f $(APP)