04a3ba363d
The tests are generally expected to pass, uncomment the annotation that lets `make check` work. Note that `make check` currently requires kyua from ports or an appropriate symlink into /usr/local/bin.
23 lines
365 B
Makefile
23 lines
365 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=lib${LIB}
|
|
LIB= regex
|
|
SHLIB_MAJOR= 1
|
|
SHLIB_MINOR= 0
|
|
|
|
CFLAGS+= -DLIBREGEX
|
|
LIBC_SRCTOP= ${.CURDIR:H}/libc
|
|
WARNS?= 2
|
|
|
|
VERSION_DEF= ${.CURDIR}/Versions.def
|
|
SYMBOL_MAPS= ${.CURDIR}/Symbol.map
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include "../Makefile.inc"
|
|
.include "${LIBC_SRCTOP}/regex/Makefile.inc"
|
|
.include <bsd.lib.mk>
|