16 lines
396 B
Makefile
16 lines
396 B
Makefile
# $NetBSD: Makefile,v 1.16 2001/12/12 01:24:00 tv Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
|
|
PROG= dbtest
|
|
|
|
# add -DSTATISTICS to CPPFLAGS to get usage statistics. Note that
|
|
# for this to work, libc must be compiled with -DSTATISTICS as well
|
|
CPPFLAGS+= -g -D__DBINTERFACE_PRIVATE -DDEBUG
|
|
NOMAN= # defined
|
|
CLEANFILES+= t1 t2 t3
|
|
|
|
regress: dbtest
|
|
sh ${.CURDIR}/run.test
|
|
|
|
.include <bsd.prog.mk>
|