summaryrefslogtreecommitdiff
path: root/src/regress/lib/libc/regex
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libc/regex')
-rw-r--r--src/regress/lib/libc/regex/Makefile11
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
4PROG= re 4PROG= re
5SRCS= main.c split.c debug.c 5SRCS= main.c split.c debug.c
6NOMAN=
7 6
8CFLAGS+= -I${.CURDIR}/../../../../lib/libc/regex 7CFLAGS+= -I${.CURDIR}/../../../../lib/libc/regex
9 8
10TESTS= ${.CURDIR}/tests 9TESTS= ${.CURDIR}/tests
11 10
12regress: ${PROG} 11REGRESSTARGETS=do-reg do-reg-long do-reg-backref
12
13do-reg: ${PROG}
13 ./re < ${TESTS} 14 ./re < ${TESTS}
15do-reg-long: ${PROG}
14 ./re -el < ${TESTS} 16 ./re -el < ${TESTS}
17do-reg-backref: ${PROG}
15 ./re -er < ${TESTS} 18 ./re -er < ${TESTS}
16 19
17.include <bsd.prog.mk> 20.include <bsd.regress.mk>