xref: /illumos-gate/usr/src/cmd/mandoc/Makefile.common (revision 48bbca816818409505a6e214d0911fda44e622e3)
1#
2# This file and its contents are supplied under the terms of the
3# Common Development and Distribution License ("CDDL"), version 1.0.
4# You may only use this file in accordance with the terms of version
5# 1.0 of the CDDL.
6#
7# A full copy of the text of the CDDL should have accompanied this
8# source.  A copy of the CDDL is also available via the Internet at
9# http://www.illumos.org/license/CDDL.
10#
11
12#
13# Copyright 2014 Garrett D'Amore <garrett@damore.org>
14# Copyright 2016 Nexenta Systems, Inc.
15#
16
17PROG=		mandoc
18
19OBJS=		att.o		\
20		chars.o		\
21		eqn.o		\
22		eqn_html.o	\
23		eqn_term.o	\
24		html.o		\
25		lib.o		\
26		main.o		\
27		man.o		\
28		manpath.o	\
29		man_hash.o	\
30		man_html.o	\
31		man_macro.o	\
32		man_term.o	\
33		man_validate.o	\
34		mandoc.o	\
35		mandoc_aux.o	\
36		mandoc_ohash.o	\
37		mdoc.o		\
38		mdoc_argv.o	\
39		mdoc_hash.o	\
40		mdoc_html.o	\
41		mdoc_macro.o	\
42		mdoc_man.o	\
43		mdoc_state.o	\
44		mdoc_term.o	\
45		mdoc_validate.o	\
46		msec.o		\
47		out.o		\
48		read.o		\
49		roff.o		\
50		preconv.o	\
51		st.o		\
52		tag.o		\
53		tbl.o		\
54		tbl_data.o	\
55		tbl_html.o	\
56		tbl_layout.o	\
57		tbl_opts.o	\
58		tbl_term.o	\
59		term.o		\
60		term_ascii.o	\
61		term_ps.o	\
62		tree.o
63
64OBJS +=		compat_ohash.o		\
65		compat_reallocarray.o	\
66		compat_strtonum.o
67
68CFLAGS +=	$(CC_VERBOSE)
69C99MODE =	$(C99_ENABLE)
70
71CPPFLAGS +=	-DOSNAME="\"illumos\""
72
73LDLIBS +=	-lz
74