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