1# @(#)Makefile 8.9 (Berkeley) 2/21/94 2 3PROG= dbtest 4OBJS= dbtest.o strerror.o 5 6# Add -DSTATISTICS to CFLAGS to get btree statistical use info. 7# Note, the db library has to be compiled for statistics as well. 8CFLAGS= -D__DBINTERFACE_PRIVATE -DDEBUG -O ${INC} 9 10dbtest: ${OBJS} ${LIB} 11 ${CC} -o $@ ${OBJS} ${LIB} 12 13strerror.o: ../PORT/clib/strerror.c 14 ${CC} -c ../PORT/clib/strerror.c 15 16clean: 17 rm -f gmon.out ${OBJS} ${PROG} t1 t2 t3 18