1# @(#)Makefile 8.6 (Berkeley) 12/19/93 2 3PROG= dbtest 4OBJS1= dbtest.o #strerror.o 5#OBJS2= rec_close.o rec_delete.o rec_get.o rec_open.o rec_put.o \ 6# rec_search.o rec_seq.o rec_utils.o 7#VPATH= ../recno 8OBJS= ${OBJS1} ${OBJS2} ${OBJS3} 9 10PDIR= ../PORT/bsd.44 11 12# Add -DSTATISTICS to CFLAGS to get btree statistical use info. 13# Note, the db library has to be compiled for statistics as well. 14CFLAGS= -O -DDEBUG -I${PDIR}/include -I${PDIR} #-I../recno 15LIB= ${PDIR}/libdb.a 16 17dbtest: ${OBJS} ${LIB} 18 ${CC} -o $@ ${OBJS} ${LIB} 19 20clean: 21 rm -f gmon.out ${OBJS} ${PROG} t1 t2 t3 22