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