dbm/
misc/
old-docs/
#
# Make up a library for the DB code.	[AIX]
# (for BSD, you may need to remove the -D_ALL_SOURCE and -D_BSD, but
#  it probably doesn't matter.)
#
# If you're doing debugging work, you'll want to replace the -O with a -g.
#
OBJ = cache.o compress.o db.o disk.o textdump.o
CFLAGS= -g -I../includes

INC = ../includes

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

dblib.a: $(OBJ) 
	ar crv dblib.a $(OBJ)
# Comment out the following line if you're using SysV
	ranlib dblib.a