diff options
-rw-r--r-- | src/regress/lib/libc/db/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/regress/lib/libc/db/Makefile b/src/regress/lib/libc/db/Makefile index e73ebbd2d5..826b7bf869 100644 --- a/src/regress/lib/libc/db/Makefile +++ b/src/regress/lib/libc/db/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.5 2002/01/02 17:40:56 art Exp $ | 1 | # $OpenBSD: Makefile,v 1.6 2002/01/02 17:53:01 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 |
@@ -8,10 +8,13 @@ PROG= dbtest | |||
8 | CFLAGS+= -g -D__DBINTERFACE_PRIVATE -DDEBUG | 8 | CFLAGS+= -g -D__DBINTERFACE_PRIVATE -DDEBUG |
9 | CLEANFILES+= t1 t2 t3 | 9 | CLEANFILES+= t1 t2 t3 |
10 | 10 | ||
11 | REGRESSTARGETS=do-db | 11 | DBTARGETS=1 2 3 4 5 6 7 8 9 10 11 12 13 20 |
12 | 12 | ||
13 | # XXX - should be split into sub-tests here, not in the script. | 13 | .for DT in ${DBTARGETS} |
14 | do-db: ${PROG} | 14 | db-${DT}: |
15 | sh ${.CURDIR}/run.test | 15 | sh ${.CURDIR}/run.test ${DT} |
16 | REGRESSTARGETS+=db-${DT} | ||
17 | .PHONY: db-${DT} | ||
18 | .endfor | ||
16 | 19 | ||
17 | .include <bsd.regress.mk> | 20 | .include <bsd.regress.mk> |