# # Makefile for many UNIX compilers using the # "standard" command name CC # CC=CC CFLAGS=-g all: balance balance: balance.cc @echo "The following compile may generate a warning" $(CC) $(CFLAGS) -o balance balance.cc clean: rm balance