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