summaryrefslogtreecommitdiff
path: root/src/regress/lib/libc/regex/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libc/regex/Makefile')
-rw-r--r--src/regress/lib/libc/regex/Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/regress/lib/libc/regex/Makefile b/src/regress/lib/libc/regex/Makefile
deleted file mode 100644
index 271debb5d3..0000000000
--- a/src/regress/lib/libc/regex/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
1# $OpenBSD: Makefile,v 1.6 2004/08/13 14:54:12 millert Exp $
2# $NetBSD: Makefile,v 1.2 1995/02/16 19:38:45 cgd Exp $
3
4PROG= re
5SRCS= main.c split.c debug.c regcomp.c regerror.c regexec.c regfree.c
6.PATH: ${.CURDIR}/../../../../lib/libc/regex
7
8CFLAGS+= -I${.CURDIR}/../../../../lib/libc/regex -DREDEBUG -DPOSIX_MISTAKE
9
10TESTS= ${.CURDIR}/tests
11
12REGRESS_TARGETS=do-reg do-reg-long do-reg-backref
13
14do-reg: ${PROG}
15 ./re < ${TESTS}
16do-reg-long: ${PROG}
17 ./re -el < ${TESTS}
18do-reg-backref: ${PROG}
19 ./re -er < ${TESTS}
20
21.include <bsd.regress.mk>