add db.1.85
[nvi.git] / db.1.85 / test / Makefile
bloba5dd08ae58b862ebdddc0d258b8b72a228aaeed6
1 # @(#)Makefile 8.15 (Berkeley) 7/28/94
3 PROG= dbtest
4 OBJS= dbtest.o strerror.o
6 # Uncomment the STAT line get hash and btree statistical use info. This
7 # also forces ld to load the btree debug functions for use by gdb, which
8 # is useful. The db library has to be compiled with -DSTATISTICS as well.
9 INC= -I${PORTDIR}/include -I${PORTDIR}
10 OORG= -g
11 #STAT= -DSTATISTICS
12 CFLAGS= -D__DBINTERFACE_PRIVATE -DDEBUG ${STAT} ${OORG} ${INC}
14 dbtest: ${OBJS} ${PORTDIR}/libdb.a
15 ${CC} -o $@ ${OBJS} ${PORTDIR}/libdb.a
17 strerror.o: ${PORTDIR}/clib/strerror.c
18 ${CC} -c ${PORTDIR}/clib/strerror.c
20 clean:
21 rm -f dbtest.core gmon.out ${OBJS} ${PROG} t1 t2 t3
23 ${OBJS}: Makefile