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