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