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