all: release release: hello.c debug.h $(CC) -o hello hello.c debug0: hello.c debug.h $(CC) -DDEBUG -o hello hello.c debug1: hello.c debug.h $(CC) -DDEBUG -DVERBOSE=1 -o hello hello.c clean: rm -f hello