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