9c2c634ee9
preparation for 8.0-RELEASE. Add the previous version of those libraries to ObsoleteFiles.inc and bump __FreeBSD_Version. Reviewed by: kib Approved by: re (rwatson)
29 lines
537 B
Makefile
29 lines
537 B
Makefile
# $FreeBSD$
|
|
|
|
SUBDIR= doc
|
|
|
|
LIB= gnuregex
|
|
SHLIB_MAJOR= 5
|
|
|
|
SRCS= gnuregex.c
|
|
INCSGROUPS= INCS WRINCS PXINCS
|
|
INCS= regex.h.patched
|
|
INCSNAME= regex.h
|
|
INCSDIR= ${INCLUDEDIR}/gnu
|
|
WRINCS= gnuregex.h
|
|
PXINCS= posix/regex.h
|
|
PXINCSDIR= ${INCSDIR}/posix
|
|
|
|
CFLAGS+=-DHAVE_CONFIG_H -I${.CURDIR}
|
|
|
|
CLEANFILES= regex.h.patched gnuregex.c
|
|
regex.h.patched: regex.h
|
|
sed 's=<posix/regex\.h>=<gnu/posix/regex.h>=g' \
|
|
< ${.ALLSRC} > ${.TARGET}
|
|
|
|
gnuregex.c: regex.c
|
|
sed 's=<regex\.h>=<gnu/regex.h>=g' \
|
|
< ${.ALLSRC} > ${.TARGET}
|
|
|
|
.include <bsd.lib.mk>
|