# # Makefile for many UNIX compilers using the # "standard" command name CC # CC=CC CFLAGS=-g all: die die: die.cc $(CC) $(CFLAGS) -o die die.cc clean: rm die