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