1
0
Files
irix-657m-src/eoe/lib/libdb/db.1.85/test/Makefile.bak
2022-09-29 17:59:04 +03:00

29 lines
727 B
Makefile

# @(#)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
# is useful. The db library has to be compiled with -DSTATISTICS as well.
INC= -I${PORTDIR}/include -I${PORTDIR}
OORG= -g
#STAT= -DSTATISTICS
CLAGS= -D__DBINTERFACE_PRIVATE -DDEBUG ${STAT} ${OORG} ${INC} -D__BIT_TYPES_DEFINED__
CFLAGS=-O
dbtest: ${OBJS} ${PORTDIR}/libdb.a
${CC} -o $@ ${OBJS} ${PORTDIR}/libdb.a
strerror.o: ${PORTDIR}/clib/strerror.c
${CC} -c ${PORTDIR}/clib/strerror.c
.c.o:
${CC} -c $(CFLAGS) $(INC) $*.c
clean:
rm -f dbtest.core gmon.out ${OBJS} ${PROG} t1 t2 t3
${OBJS}: Makefile