
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
24 lines
527 B
Makefile
24 lines
527 B
Makefile
# $NetBSD: Makefile,v 1.7 2014/03/13 09:13:32 wiz Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= mandoc
|
|
|
|
SRCS= chars.c main.c out.c tree.c \
|
|
eqn_html.c eqn_term.c \
|
|
html.c man_html.c mdoc_html.c tbl_html.c \
|
|
man_term.c mdoc_term.c term.c term_ascii.c \
|
|
term_ps.c tbl_term.c
|
|
|
|
.ifndef HOSTPROG
|
|
DPADD+= ${MDOCMLLIB.mandoc}
|
|
LDADD+= -L${MDOCMLOBJDIR.mandoc} -lmandoc
|
|
CPPFLAGS+= -DUSE_WCHAR
|
|
.else
|
|
SRCS.libmandoc!=cd ${.PARSEDIR}/../../lib/libmandoc && ${MAKE} -V '$${SRCS}'
|
|
|
|
SRCS+= ${SRCS.libmandoc}
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|