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