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