/
teeny/db/
teeny/dbm/
teeny/doc/
teeny/includes/
#
# Make up a library for the DB code.
#
OBJ = db.o disk.o cache.o textdump.o
CFLAGS= -O -I../includes

INC = ../includes

$(OBJ): $(INC)/db.h $(INC)/teeny.h

dblib.a: $(OBJ) 
	ar crv dblib.a $(OBJ)
	ranlib dblib.a