37 lines
1.1 KiB
Groff
37 lines
1.1 KiB
Groff
*** Makefile.orig Sun Aug 28 08:42:52 1994
|
|
--- Makefile Mon Oct 23 13:27:56 1995
|
|
***************
|
|
*** 1,7 ****
|
|
# @(#)Makefile 8.15 (Berkeley) 7/28/94
|
|
|
|
PROG= dbtest
|
|
! OBJS= dbtest.o strerror.o
|
|
|
|
# Uncomment the STAT line get hash and btree statistical use info. This
|
|
# also forces ld to load the btree debug functions for use by gdb, which
|
|
--- 1,7 ----
|
|
# @(#)Makefile 8.15 (Berkeley) 7/28/94
|
|
|
|
PROG= dbtest
|
|
! OBJS= dbtest.o
|
|
|
|
# Uncomment the STAT line get hash and btree statistical use info. This
|
|
# also forces ld to load the btree debug functions for use by gdb, which
|
|
***************
|
|
*** 9,15 ****
|
|
INC= -I${PORTDIR}/include -I${PORTDIR}
|
|
OORG= -g
|
|
#STAT= -DSTATISTICS
|
|
! CFLAGS= -D__DBINTERFACE_PRIVATE -DDEBUG ${STAT} ${OORG} ${INC}
|
|
|
|
dbtest: ${OBJS} ${PORTDIR}/libdb.a
|
|
${CC} -o $@ ${OBJS} ${PORTDIR}/libdb.a
|
|
--- 9,15 ----
|
|
INC= -I${PORTDIR}/include -I${PORTDIR}
|
|
OORG= -g
|
|
#STAT= -DSTATISTICS
|
|
! CLAGS= -D__DBINTERFACE_PRIVATE -DDEBUG ${STAT} ${OORG} ${INC} -D__BIT_TYPES_DEFINED__
|
|
|
|
dbtest: ${OBJS} ${PORTDIR}/libdb.a
|
|
${CC} -o $@ ${OBJS} ${PORTDIR}/libdb.a
|