summaryrefslogtreecommitdiffstats
path: root/usr.bin/mandoc/Makefile
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2014-12-02 23:24:57 +0000
committerbapt <bapt@FreeBSD.org>2014-12-02 23:24:57 +0000
commit919f2a28755126f55b458d6553ac5e10b76203b3 (patch)
tree6b285eca5de51692bcaade66a629a2b84eadb8c7 /usr.bin/mandoc/Makefile
parentd24ff3fdf2f10c9b05c568b96812b7560b5c652a (diff)
parente00686f8f18c8c3eb3a800468a031699ed0bbc8f (diff)
downloadFreeBSD-src-919f2a28755126f55b458d6553ac5e10b76203b3.zip
FreeBSD-src-919f2a28755126f55b458d6553ac5e10b76203b3.tar.gz
Update to mandoc cvs version as of 20141201
- Compatiblity with existing manpages has been improved - Now support ".so" directive with compressed manpages (which fixes a regression we have since we have new man(1))
Diffstat (limited to 'usr.bin/mandoc/Makefile')
-rw-r--r--usr.bin/mandoc/Makefile15
1 files changed, 13 insertions, 2 deletions
diff --git a/usr.bin/mandoc/Makefile b/usr.bin/mandoc/Makefile
index ef3c05f..a5d871b 100644
--- a/usr.bin/mandoc/Makefile
+++ b/usr.bin/mandoc/Makefile
@@ -15,7 +15,9 @@ HTML_SRCS= eqn_html.c \
man_html.c \
mdoc_html.c \
tbl_html.c
+
MAN_SRCS= mdoc_man.c
+
TERM_SRCS= eqn_term.c \
man_term.c \
mdoc_term.c \
@@ -23,6 +25,7 @@ TERM_SRCS= eqn_term.c \
term_ascii.c \
term_ps.c \
tbl_term.c
+
SRCS= ${HTML_SRCS} \
${MAN_SRCS} \
${TERM_SRCS} \
@@ -30,8 +33,16 @@ SRCS= ${HTML_SRCS} \
out.c \
tree.c
+APROPOS_SRCS= mansearch.c \
+ mansearch_const.c \
+ manpath.c
+
+SRCS+= ${APROPOS_SRCS}
+
WARNS?= 3
-CFLAGS+= -DHAVE_CONFIG_H
-LIBADD= mandoc
+CFLAGS+= -DHAVE_CONFIG_H \
+ -I${.CURDIR}/../../lib/libohash/ \
+ -I${.CURDIR}/../../contrib/sqlite3
+LIBADD= mandoc ohash sqlite3
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud