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