#
# makefile for splay tree library
CFLAGS = -O $(DEFINES) -I..

OBJ	=	sptree.o
SRC	= README Makefile *.h *.c

all:	$(OBJ)

clean:
	-rm -f *.o $(LIB) \#* *~ prof.out *.sL core a.out
