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