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