mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
Submitted by: David Wolfskill <david@catwhisker.org>
(did I mention he should be a committer? :-) )
14 lines
344 B
Makefile
14 lines
344 B
Makefile
# $FreeBSD$
|
|
|
|
INFO = regex
|
|
INFOSECTION= "Programming & development tools."
|
|
INFOENTRY_regex= "* Regex: (regex). Regular expression library."
|
|
|
|
CLEANFILES += regex.texi
|
|
|
|
regex.texi: xregex.texi ../regex.h
|
|
awk -f ${.CURDIR}/include.awk -v source=${.CURDIR}/../regex.h \
|
|
< ${.CURDIR}/xregex.texi \
|
|
| expand >$@
|
|
|
|
.include <bsd.info.mk>
|