Intial commit

This commit is contained in:
Mario Fetka
2024-05-27 16:13:40 +02:00
parent f8dc12b10a
commit d71d446104
2495 changed files with 539746 additions and 0 deletions

23
berkdb/test/Makefile Normal file
View File

@@ -0,0 +1,23 @@
# @(#)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
# is useful. The db library has to be compiled with -DSTATISTICS as well.
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
strerror.o: ${PORTDIR}/clib/strerror.c
${CC} -c ${PORTDIR}/clib/strerror.c
clean:
rm -f dbtest.core gmon.out ${OBJS} ${PROG} t1 t2 t3
${OBJS}: Makefile