OBJ = find.o

.c.o:
	cc -E200 $*.c

find:		Makefile $(OBJ)
	ln -o find $(OBJ) -lc

find.o:		find.c

find.uue:	find
	uuencode >find.uue find find

shar:		shar1 shar2 shar3

shar1:
	shar -a find.c makefile > find.shar1

shar2:
	shar -a find.doc README > find.shar2

shar3:		find.uue
	shar -a find.uue > find.shar3
