blob: 9d2dc61d66ba030f36c53d29be402b9d44c4e091 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: Makefile,v 1.11 1995/12/12 01:54:15 cgd Exp $
# @(#)Makefile 8.1 (Berkeley) 6/4/93
PROG= dbtest
# add -DSTATISTICS to CFLAGS to get usage statistics. Note that
# for this to work, libc must be compiled with -DSTATISTICS as well
CFLAGS+= -g -D__DBINTERFACE_PRIVATE -DDEBUG
NOMAN= noman
CLEANFILES+= t1 t2 t3
install:
regress: ${PROG}
sh ${.CURDIR}/run.test
.include <bsd.prog.mk>
|