freebsd-dev/usr.bin/mandoc/Makefile
Baptiste Daroussin 1fb816da82 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))
2014-12-02 23:24:57 +00:00

49 lines
807 B
Makefile

# $FreeBSD$
MDOCMLDIR= ${.CURDIR}/../../contrib/mdocml
.PATH: ${MDOCMLDIR}
PROG= mandoc
FILES= example.style.css style.css
FILESDIR= ${SHAREDIR}/mdocml
LINKS= mdocml
MAN= mandoc.1 eqn.7 mandoc_char.7 tbl.7 man.7 mdoc.7 # roff.7
MLINKS= mandoc.1 mdocml.1
HTML_SRCS= eqn_html.c \
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 \
term.c \
term_ascii.c \
term_ps.c \
tbl_term.c
SRCS= ${HTML_SRCS} \
${MAN_SRCS} \
${TERM_SRCS} \
main.c \
out.c \
tree.c
APROPOS_SRCS= mansearch.c \
mansearch_const.c \
manpath.c
SRCS+= ${APROPOS_SRCS}
WARNS?= 3
CFLAGS+= -DHAVE_CONFIG_H \
-I${.CURDIR}/../../lib/libohash/ \
-I${.CURDIR}/../../contrib/sqlite3
LIBADD= mandoc ohash sqlite3
.include <bsd.prog.mk>