xref: /illumos-gate/usr/src/cmd/mandoc/Makefile.common (revision f8cbe0e7fd4f172d5ed456a8f7425890e1ea20cd)
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 2017 Nexenta Systems, Inc.
15#
16
17PROG=		mandoc
18
19OBJS=		att.o		\
20		chars.o		\
21		dba.o		\
22		dba_array.o	\
23		dba_read.o	\
24		dba_write.o	\
25		dbm.o		\
26		dbm_map.o	\
27		eqn.o		\
28		eqn_html.o	\
29		eqn_term.o	\
30		html.o		\
31		lib.o		\
32		main.o		\
33		man.o		\
34		manpath.o	\
35		man_hash.o	\
36		man_html.o	\
37		man_macro.o	\
38		man_term.o	\
39		man_validate.o	\
40		mandoc.o	\
41		mandoc_aux.o	\
42		mandoc_ohash.o	\
43		mandocdb.o	\
44		mansearch.o	\
45		mdoc.o		\
46		mdoc_argv.o	\
47		mdoc_hash.o	\
48		mdoc_html.o	\
49		mdoc_macro.o	\
50		mdoc_man.o	\
51		mdoc_state.o	\
52		mdoc_term.o	\
53		mdoc_validate.o	\
54		msec.o		\
55		out.o		\
56		read.o		\
57		roff.o		\
58		preconv.o	\
59		st.o		\
60		tag.o		\
61		tbl.o		\
62		tbl_data.o	\
63		tbl_html.o	\
64		tbl_layout.o	\
65		tbl_opts.o	\
66		tbl_term.o	\
67		term.o		\
68		term_ascii.o	\
69		term_ps.o	\
70		tree.o
71
72OBJS +=		compat_ohash.o
73
74CFLAGS +=	$(CC_VERBOSE)
75C99MODE =	$(C99_ENABLE)
76
77CPPFLAGS +=	-DOSNAME="\"illumos\""
78
79LDLIBS +=	-lz
80