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