b7b5bdba96
We currently set MK_MAN=no in $BSARGS so MK_MAN_UTILS will also be false which means that the makewhatis symlink will not be created. This change fixes the build when using both -DBUILD_WITH_STRICT_TMPPATH and -DBOOTSTRAP_ALL_TOOLS. Tested by: andrew Differential Revision: https://reviews.freebsd.org/D16761
107 lines
1.7 KiB
Makefile
107 lines
1.7 KiB
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
MANDOCDIR= ${SRCTOP}/contrib/mandoc
|
|
.PATH: ${MANDOCDIR}
|
|
|
|
PROG= mandoc
|
|
MAN= mandoc.1 eqn.7 mandoc_char.7 tbl.7 man.7 mdoc.7 roff.7
|
|
MLINKS= mandoc.1 mdocml.1
|
|
.if ${MK_MAN_UTILS} != no
|
|
MAN+= apropos.1 makewhatis.8
|
|
MLINKS+= apropos.1 whatis.1
|
|
LINKS= ${BINDIR}/mandoc ${BINDIR}/whatis \
|
|
${BINDIR}/mandoc ${BINDIR}/makewhatis \
|
|
${BINDIR}/mandoc ${BINDIR}/apropos
|
|
.elif defined(BOOTSTRAPPING)
|
|
.error "MK_MAN_UTILS should be set to yes when bootstrapping"
|
|
.endif
|
|
|
|
LIBMAN_SRCS= man.c \
|
|
man_macro.c \
|
|
man_validate.c
|
|
|
|
LIBMDOC_SRCS= arch.c \
|
|
att.c \
|
|
lib.c \
|
|
mdoc.c \
|
|
mdoc_argv.c \
|
|
mdoc_macro.c \
|
|
mdoc_markdown.c \
|
|
mdoc_state.c \
|
|
mdoc_validate.c \
|
|
st.c \
|
|
|
|
LIBROFF_SRCS= eqn.c \
|
|
roff.c \
|
|
roff_html.c \
|
|
roff_term.c \
|
|
roff_validate.c \
|
|
tbl.c \
|
|
tbl_data.c \
|
|
tbl_layout.c \
|
|
tbl_opts.c \
|
|
|
|
LIB_SRCS= ${LIBMAN_SRCS} \
|
|
${LIBMDOC_SRCS} \
|
|
${LIBROFF_SRCS} \
|
|
chars.c \
|
|
mandoc.c \
|
|
mandoc_aux.c \
|
|
mandoc_msg.c \
|
|
mandoc_ohash.c \
|
|
mandoc_xr.c \
|
|
msec.c \
|
|
preconv.c \
|
|
read.c \
|
|
compat_recallocarray.c \
|
|
|
|
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 \
|
|
term_tab.c \
|
|
tbl_term.c
|
|
|
|
DBM_SRCS= dbm.c \
|
|
dbm_map.c \
|
|
mansearch.c
|
|
|
|
DBA_SRCS= dba.c \
|
|
dba_array.c \
|
|
dba_read.c \
|
|
dba_write.c \
|
|
mandocdb.c
|
|
|
|
SRCS= ${LIB_SRCS} \
|
|
${HTML_SRCS} \
|
|
${MAN_SRCS} \
|
|
${TERM_SRCS} \
|
|
${DBM_SRCS} \
|
|
${DBA_SRCS} \
|
|
main.c \
|
|
manpath.c \
|
|
out.c \
|
|
tag.c \
|
|
tree.c
|
|
|
|
WARNS?= 3
|
|
CFLAGS+= -DHAVE_CONFIG_H \
|
|
-I${SRCTOP}/lib/libopenbsd/
|
|
# This can be removed after swtiching to newer gcc
|
|
CFLAGS.gcc+= -Wno-format
|
|
LIBADD= openbsd z
|
|
|
|
.include <bsd.prog.mk>
|