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