Don't clobber CFLAGS.
[dragonfly.git] / lib / libc / db / test / Makefile
blob0d1db95c7838f8251c54bc0b1a89fef4e3465263
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 ${.TARGET} ${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