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