diff options
Diffstat (limited to 'src/regress/lib/libc/regex')
-rw-r--r-- | src/regress/lib/libc/regex/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/regress/lib/libc/regex/Makefile b/src/regress/lib/libc/regex/Makefile index 4a223b34c4..76d68a56ae 100644 --- a/src/regress/lib/libc/regex/Makefile +++ b/src/regress/lib/libc/regex/Makefile | |||
@@ -1,17 +1,20 @@ | |||
1 | # $OpenBSD: Makefile,v 1.3 2001/02/04 14:44:00 ericj Exp $ | 1 | # $OpenBSD: Makefile,v 1.4 2002/01/01 23:00:51 art Exp $ |
2 | # $NetBSD: Makefile,v 1.2 1995/02/16 19:38:45 cgd Exp $ | 2 | # $NetBSD: Makefile,v 1.2 1995/02/16 19:38:45 cgd Exp $ |
3 | 3 | ||
4 | PROG= re | 4 | PROG= re |
5 | SRCS= main.c split.c debug.c | 5 | SRCS= main.c split.c debug.c |
6 | NOMAN= | ||
7 | 6 | ||
8 | CFLAGS+= -I${.CURDIR}/../../../../lib/libc/regex | 7 | CFLAGS+= -I${.CURDIR}/../../../../lib/libc/regex |
9 | 8 | ||
10 | TESTS= ${.CURDIR}/tests | 9 | TESTS= ${.CURDIR}/tests |
11 | 10 | ||
12 | regress: ${PROG} | 11 | REGRESSTARGETS=do-reg do-reg-long do-reg-backref |
12 | |||
13 | do-reg: ${PROG} | ||
13 | ./re < ${TESTS} | 14 | ./re < ${TESTS} |
15 | do-reg-long: ${PROG} | ||
14 | ./re -el < ${TESTS} | 16 | ./re -el < ${TESTS} |
17 | do-reg-backref: ${PROG} | ||
15 | ./re -er < ${TESTS} | 18 | ./re -er < ${TESTS} |
16 | 19 | ||
17 | .include <bsd.prog.mk> | 20 | .include <bsd.regress.mk> |