diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2002-01-02 17:40:57 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2002-01-02 17:40:57 +0000 |
commit | 88022e25e3d02bb5caca4741b24395a6bb5db548 (patch) | |
tree | 011a7f3da03eaee588572b111a05f5e04304592d /regress | |
parent | 2430186e889599af3ebe3dc75db010efbe0e0794 (diff) |
First conversion to bsd.regress.mk, needs to be split into
smaller tests.
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libc/db/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/regress/lib/libc/db/Makefile b/regress/lib/libc/db/Makefile index f49b6b7247b..e73ebbd2d57 100644 --- a/regress/lib/libc/db/Makefile +++ b/regress/lib/libc/db/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 2001/01/29 02:05:40 niklas Exp $ +# $OpenBSD: Makefile,v 1.5 2002/01/02 17:40:56 art Exp $ # $NetBSD: Makefile,v 1.11 1995/12/12 01:54:15 cgd Exp $ PROG= dbtest @@ -6,12 +6,12 @@ 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: +REGRESSTARGETS=do-db -regress: ${PROG} +# XXX - should be split into sub-tests here, not in the script. +do-db: ${PROG} sh ${.CURDIR}/run.test -.include <bsd.prog.mk> +.include <bsd.regress.mk> |