# This makefile creates the B-Tree database subsystem that is used by
# LifeLines.  The database stands alone and can be used for any single
# keyed, database application.
#
# Copyright(c), by T. T. Wetmore IV, 1993, all rights reserved.

CC=cc
CFLAGS=
AR=ar
ARFLAGS=-crv
HDRS=../hdrs
OFILES= addkey.o block.o file.o index.o opnbtree.o record.o \
	traverse.o utils.o

btree.a: $(OFILES)
	$(AR) $(ARFLAGS) btree.a $(OFILES)

.c.o:
	$(CC) $(CFLAGS) -c -I$(HDRS) $<
