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