diff options
author | art <> | 2002-01-02 17:40:56 +0000 |
---|---|---|
committer | art <> | 2002-01-02 17:40:56 +0000 |
commit | 2e62ba6d95078ecae7ee0ea2a5f38a4061964702 (patch) | |
tree | 323b0a80a507ce69a6dc49105975a4a376c1fd5c /src | |
parent | 7a303f0cce266682e113b142a0d91019caeaa26d (diff) | |
download | openbsd-2e62ba6d95078ecae7ee0ea2a5f38a4061964702.tar.gz openbsd-2e62ba6d95078ecae7ee0ea2a5f38a4061964702.tar.bz2 openbsd-2e62ba6d95078ecae7ee0ea2a5f38a4061964702.zip |
First conversion to bsd.regress.mk, needs to be split into
smaller tests.
Diffstat (limited to '')
-rw-r--r-- | src/regress/lib/libc/db/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/regress/lib/libc/db/Makefile b/src/regress/lib/libc/db/Makefile index f49b6b7247..e73ebbd2d5 100644 --- a/src/regress/lib/libc/db/Makefile +++ b/src/regress/lib/libc/db/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.4 2001/01/29 02:05:40 niklas Exp $ | 1 | # $OpenBSD: Makefile,v 1.5 2002/01/02 17:40:56 art Exp $ |
2 | # $NetBSD: Makefile,v 1.11 1995/12/12 01:54:15 cgd Exp $ | 2 | # $NetBSD: Makefile,v 1.11 1995/12/12 01:54:15 cgd Exp $ |
3 | 3 | ||
4 | PROG= dbtest | 4 | PROG= dbtest |
@@ -6,12 +6,12 @@ PROG= dbtest | |||
6 | # add -DSTATISTICS to CFLAGS to get usage statistics. Note that | 6 | # add -DSTATISTICS to CFLAGS to get usage statistics. Note that |
7 | # for this to work, libc must be compiled with -DSTATISTICS as well | 7 | # for this to work, libc must be compiled with -DSTATISTICS as well |
8 | CFLAGS+= -g -D__DBINTERFACE_PRIVATE -DDEBUG | 8 | CFLAGS+= -g -D__DBINTERFACE_PRIVATE -DDEBUG |
9 | NOMAN= noman | ||
10 | CLEANFILES+= t1 t2 t3 | 9 | CLEANFILES+= t1 t2 t3 |
11 | 10 | ||
12 | install: | 11 | REGRESSTARGETS=do-db |
13 | 12 | ||
14 | regress: ${PROG} | 13 | # XXX - should be split into sub-tests here, not in the script. |
14 | do-db: ${PROG} | ||
15 | sh ${.CURDIR}/run.test | 15 | sh ${.CURDIR}/run.test |
16 | 16 | ||
17 | .include <bsd.prog.mk> | 17 | .include <bsd.regress.mk> |