diff options
author | 2002-01-02 17:40:56 +0000 | |
---|---|---|
committer | 2002-01-02 17:40:56 +0000 | |
commit | 3fd8aeca724ad89afefed93556e82afc3b2cbb34 (patch) | |
tree | 45aacae1b5b61f4d88417423d107441e512c6839 /regress/lib/libc | |
parent | On the road to serial console support. stage one, if of console is serial (diff) | |
download | wireguard-openbsd-3fd8aeca724ad89afefed93556e82afc3b2cbb34.tar.xz wireguard-openbsd-3fd8aeca724ad89afefed93556e82afc3b2cbb34.zip |
First conversion to bsd.regress.mk, needs to be split into
smaller tests.
Diffstat (limited to 'regress/lib/libc')
-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> |