blob: 367fc90ce8fba2672d365578f8b738871b9881a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $OpenBSD: Makefile,v 1.7 2002/01/03 00:22:47 art Exp $
# $NetBSD: Makefile,v 1.11 1995/12/12 01:54:15 cgd Exp $
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
CLEANFILES+= t1 t2 t3
DBTARGETS=1 2 3 4 5 6 7 8 9 10 11 12 13 20
.for DT in ${DBTARGETS}
db-${DT}: ${PROG}
sh ${.CURDIR}/run.test ${DT}
REGRESSTARGETS+=db-${DT}
.PHONY: db-${DT}
.endfor
.include <bsd.regress.mk>
|