Remove building with NOCRYPTO option
[minix.git] / external / bsd / mdocml / bin / mandoc / Makefile
blobf6494bdef14a109fb231a9fca20c4b886faf7ab1
1 # $NetBSD: Makefile,v 1.7 2014/03/13 09:13:32 wiz Exp $
3 .include <bsd.own.mk>
5 PROG= mandoc
7 SRCS= chars.c main.c out.c tree.c \
8 eqn_html.c eqn_term.c \
9 html.c man_html.c mdoc_html.c tbl_html.c \
10 man_term.c mdoc_term.c term.c term_ascii.c \
11 term_ps.c tbl_term.c
13 .ifndef HOSTPROG
14 DPADD+= ${MDOCMLLIB.mandoc}
15 LDADD+= -L${MDOCMLOBJDIR.mandoc} -lmandoc
16 CPPFLAGS+= -DUSE_WCHAR
17 .else
18 SRCS.libmandoc!=cd ${.PARSEDIR}/../../lib/libmandoc && ${MAKE} -V '$${SRCS}'
20 SRCS+= ${SRCS.libmandoc}
21 .endif
23 .include <bsd.prog.mk>