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