#
# makefile for splay tree library
CFLAGS = -g $(DEFINES)

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

all:	$(OBJ)

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