blob: 5b9a0802094ec6825420393389447ed1900ea9e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $OpenBSD: Makefile,v 1.11 2017/04/16 16:01:05 kettenis Exp $
# $NetBSD: Makefile,v 1.2 1995/02/16 19:38:45 cgd Exp $
PROG= re
SRCS= main.c split.c debug.c regcomp.c regerror.c regexec.c regfree.c
.PATH: ${.CURDIR}/../../../../lib/libc/regex
CLEANFILES += t_exhaust
CFLAGS+= -I${.CURDIR}/../../../../lib/libc/regex -DREDEBUG -DPOSIX_MISTAKE
CFLAGS+= -D'DEF_WEAK(x)=asm("")'
TESTS= ${.CURDIR}/tests
REGRESS_TARGETS = do-reg do-reg-long do-reg-backref
# cannot run with large limits
#REGRESS_TARGETS += do-t_exhaust
do-reg: ${PROG}
./re < ${TESTS}
do-reg-long: ${PROG}
./re -el < ${TESTS}
do-reg-backref: ${PROG}
./re -er < ${TESTS}
#do-t_exhaust: t_exhaust
# ./t_exhaust
.include <bsd.regress.mk>
|