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