e7d178251c
- Merge h_regex_att (att.c) and t_regex_att.sh into a single C test program. The former was really a test program, and the latter just a very strange driver for it. - Stop using awk to generate the shell test programs. This is unnecessary and confusing. Instead, change t_regex.sh to generate the test case functions on the fly with eval (as done in many other places).
17 lines
428 B
Makefile
17 lines
428 B
Makefile
# $NetBSD: Makefile,v 1.4 2012/08/24 20:24:40 jmmv Exp $
|
|
|
|
LDADD+=-ltre
|
|
DPADD+=${LIBTRE}
|
|
TESTSDIR= ${TESTSBASE}/lib/libtre
|
|
# XXX: tre eats copious amounts of memory even 9 does not work
|
|
IMPLEMENTATION=-DREGEX_TRE -DREGEX_MAXSIZE=2 -DSKIP_RIGHTASSOC
|
|
|
|
# Remove the following 2 lines once the standard tests have been fixed.
|
|
PROGS=
|
|
TESTS_SH=
|
|
|
|
LCREGEX=${.CURDIR}/../libc/regex
|
|
.PATH: ${LCREGEX}
|
|
.include "${LCREGEX}/Makefile"
|
|
|