/
teeny/db/
teeny/dbm/
teeny/docs/
teeny/includes/
teeny/misc/
teeny/news/
teeny/text/
#
# 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 flags.o textdump.o
#CFLAGS= -g -I../includes -D_ALL_SOURCE -D_BSD
CFLAGS= -g -I../includes 
#CC= bsdcc
CC= cc

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