xref: /titanic_51/usr/src/cmd/mandoc/Makefile.common (revision 95c635efb7c3b86efc493e0447eaec7aecca3f0f)
1*95c635efSGarrett D'Amore#
2*95c635efSGarrett D'Amore# This file and its contents are supplied under the terms of the
3*95c635efSGarrett D'Amore# Common Development and Distribution License ("CDDL"), version 1.0.
4*95c635efSGarrett D'Amore# You may only use this file in accordance with the terms of version
5*95c635efSGarrett D'Amore# 1.0 of the CDDL.
6*95c635efSGarrett D'Amore#
7*95c635efSGarrett D'Amore# A full copy of the text of the CDDL should have accompanied this
8*95c635efSGarrett D'Amore# source.  A copy of the CDDL is also available via the Internet at
9*95c635efSGarrett D'Amore# http://www.illumos.org/license/CDDL.
10*95c635efSGarrett D'Amore#
11*95c635efSGarrett D'Amore
12*95c635efSGarrett D'Amore#
13*95c635efSGarrett D'Amore# Copyright 2012 Nexenta Systems, Inc.  All rights reserved.
14*95c635efSGarrett D'Amore# Copyright 2014 Garrett D'Amore <garrett@damore.org>
15*95c635efSGarrett D'Amore#
16*95c635efSGarrett D'Amore
17*95c635efSGarrett D'AmorePROGS=		mandoc mandoc_preconv
18*95c635efSGarrett D'Amoremandoc_OBJS =	arch.o att.o chars.o eqn.o eqn_html.o eqn_term.o 	\
19*95c635efSGarrett D'Amore		html.o lib.o main.o man.o man_hash.o man_html.o		\
20*95c635efSGarrett D'Amore		man_macro.o man_term.o man_validate.o mandoc.o mdoc.o	\
21*95c635efSGarrett D'Amore		mdoc_argv.o mdoc_hash.o mdoc_html.o mdoc_macro.o	\
22*95c635efSGarrett D'Amore		mdoc_man.o mdoc_term.o mdoc_validate.o msec.o out.o	\
23*95c635efSGarrett D'Amore		read.o roff.o st.o tbl.o tbl_data.o tbl_html.o		\
24*95c635efSGarrett D'Amore		tbl_layout.o tbl_opts.o tbl_term.o term.o term_ascii.o	\
25*95c635efSGarrett D'Amore		term_ps.o tree.o vol.o
26*95c635efSGarrett D'Amore
27*95c635efSGarrett D'Amorepreconv_OBJS =	preconv.o
28*95c635efSGarrett D'Amore
29*95c635efSGarrett D'AmoreCFLAGS +=	$(CC_VERBOSE)
30*95c635efSGarrett D'Amore
31*95c635efSGarrett D'AmoreCPPFLAGS +=	-DHAVE_CONFIG_H -DUSE_WCHAR	\
32*95c635efSGarrett D'Amore		-DOSNAME="\"illumos\""	\
33*95c635efSGarrett D'Amore		-DVERSION="\"1.12.1\""
34