aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/Makefile
blob: bd5e50e9857e28e10cf51289538779ede4893a6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# $FreeBSD$

.include <src.opts.mk>

MANDOCDIR=	${SRCTOP}/contrib/mandoc
.PATH: ${MANDOCDIR}

PROG=	mandoc
MAN=	mandoc.1 eqn.7 mandoc_char.7 tbl.7 man.7 mdoc.7 roff.7
MLINKS=	mandoc.1 mdocml.1
.if ${MK_MAN_UTILS} != no
MAN+=	apropos.1 makewhatis.8
MLINKS+=	apropos.1 whatis.1
LINKS=	${BINDIR}/mandoc ${BINDIR}/whatis \
	${BINDIR}/mandoc ${BINDIR}/makewhatis \
	${BINDIR}/mandoc ${BINDIR}/apropos
.endif

LIBMAN_SRCS=	man.c \
		man_macro.c \
		man_validate.c

LIBMDOC_SRCS=	arch.c \
		att.c \
		lib.c \
		mdoc.c \
		mdoc_argv.c \
		mdoc_macro.c \
		mdoc_markdown.c \
		mdoc_state.c \
		mdoc_validate.c \
		st.c \

LIBROFF_SRCS=	eqn.c \
		roff.c \
		roff_html.c \
		roff_term.c \
		roff_validate.c \
		tbl.c \
		tbl_data.c \
		tbl_layout.c \
		tbl_opts.c \

LIB_SRCS=	${LIBMAN_SRCS} \
		${LIBMDOC_SRCS} \
		${LIBROFF_SRCS} \
		chars.c \
		mandoc.c \
		mandoc_aux.c \
		mandoc_msg.c \
		mandoc_ohash.c \
		mandoc_xr.c \
		msec.c \
		preconv.c \
		read.c \
		compat_recallocarray.c \

HTML_SRCS=	eqn_html.c \
		html.c \
		man_html.c \
		mdoc_html.c \
		tbl_html.c

MAN_SRCS=	mdoc_man.c

TERM_SRCS=	eqn_term.c \
		man_term.c \
		mdoc_term.c \
		term.c \
		term_ascii.c \
		term_ps.c \
		term_tab.c \
		tbl_term.c

DBM_SRCS=	dbm.c \
		dbm_map.c \
		mansearch.c

DBA_SRCS=	dba.c \
		dba_array.c \
		dba_read.c \
		dba_write.c \
		mandocdb.c

SRCS=		${LIB_SRCS} \
		${HTML_SRCS} \
		${MAN_SRCS} \
		${TERM_SRCS} \
		${DBM_SRCS} \
		${DBA_SRCS} \
		main.c \
		manpath.c \
		out.c \
		tag.c \
		tree.c

WARNS?=	3
CFLAGS+= -DHAVE_CONFIG_H \
	 -I${SRCTOP}/lib/libopenbsd/
LIBADD=	openbsd z

.include <bsd.prog.mk>