]> git.cameronkatri.com Git - mandoc.git/blob - Makefile
Significantly improve preconv. Allow it to recode UTF-8 characters into
[mandoc.git] / Makefile
1 .PHONY: clean install installwww
2 .SUFFIXES: .sgml .html .md5 .h .h.html
3 .SUFFIXES: .1 .3 .7
4 .SUFFIXES: .1.txt .3.txt .7.txt
5 .SUFFIXES: .1.pdf .3.pdf .7.pdf
6 .SUFFIXES: .1.ps .3.ps .7.ps
7 .SUFFIXES: .1.html .3.html .7.html
8 .SUFFIXES: .1.xhtml .3.xhtml .7.xhtml
9
10 # Specify this if you want to hard-code the operating system to appear
11 # in the lower-left hand corner of -mdoc manuals.
12 # CFLAGS += -DOSNAME="\"OpenBSD 4.5\""
13
14 VERSION = 1.11.2
15 VDATE = 12 May 2011
16 # IFF your system supports multi-byte functions (setlocale(), wcwidth(),
17 # putwchar()) AND has __STDC_ISO_10646__ (that is, wchar_t is simply a
18 # UCS-4 value) should you define USE_WCHAR. If you define it and your
19 # system DOESN'T support this, -Tlocale will produce garbage.
20 # If you don't define it, -Tlocale is a synonym for -Tacsii.
21 CFLAGS += -g -DUSE_WCHAR -DHAVE_CONFIG_H -DVERSION="\"$(VERSION)\""
22 CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings
23 PREFIX = /usr/local
24 BINDIR = $(PREFIX)/bin
25 INCLUDEDIR = $(PREFIX)/include/mandoc
26 LIBDIR = $(PREFIX)/lib/mandoc
27 MANDIR = $(PREFIX)/man
28 EXAMPLEDIR = $(PREFIX)/share/examples/mandoc
29 INSTALL = install
30 INSTALL_PROGRAM = $(INSTALL) -m 0755
31 INSTALL_DATA = $(INSTALL) -m 0444
32 INSTALL_LIB = $(INSTALL) -m 0644
33 INSTALL_MAN = $(INSTALL_DATA)
34
35 all: mandoc
36
37 SRCS = Makefile \
38 arch.c \
39 arch.in \
40 att.c \
41 att.in \
42 chars.c \
43 chars.in \
44 compat.c \
45 config.h.post \
46 config.h.pre \
47 eqn.7 \
48 eqn.c \
49 example.style.css \
50 external.png \
51 html.c \
52 html.h \
53 index.css \
54 index.sgml \
55 lib.c \
56 lib.in \
57 libman.h \
58 libmandoc.h \
59 libmdoc.h \
60 libroff.h \
61 main.c \
62 main.h \
63 man.h \
64 man.7 \
65 man.c \
66 man_hash.c \
67 man_html.c \
68 man_macro.c \
69 man_term.c \
70 man_validate.c \
71 mandoc.1 \
72 mandoc.3 \
73 mandoc.c \
74 mandoc.h \
75 makewhatis.1 \
76 makewhatis.c \
77 mandoc_char.7 \
78 mdoc.h \
79 mdoc.7 \
80 mdoc.c \
81 mdoc_argv.c \
82 mdoc_hash.c \
83 mdoc_html.c \
84 mdoc_macro.c \
85 mdoc_term.c \
86 mdoc_validate.c \
87 msec.c \
88 msec.in \
89 out.c \
90 out.h \
91 preconv.1 \
92 preconv.c \
93 predefs.in \
94 read.c \
95 roff.7 \
96 roff.c \
97 st.c \
98 st.in \
99 style.css \
100 tbl.7 \
101 tbl.c \
102 tbl_data.c \
103 tbl_html.c \
104 tbl_layout.c \
105 tbl_opts.c \
106 tbl_term.c \
107 term.c \
108 term.h \
109 term_ascii.c \
110 term_ps.c \
111 test-strlcat.c \
112 test-strlcpy.c \
113 tree.c \
114 vol.c \
115 vol.in
116
117 LIBMAN_OBJS = man.o \
118 man_hash.o \
119 man_macro.o \
120 man_validate.o
121 LIBMAN_LNS = man.ln \
122 man_hash.ln \
123 man_macro.ln \
124 man_validate.ln
125
126 LIBMDOC_OBJS = arch.o \
127 att.o \
128 lib.o \
129 mdoc.o \
130 mdoc_argv.o \
131 mdoc_hash.o \
132 mdoc_macro.o \
133 mdoc_validate.o \
134 msec.o \
135 st.o \
136 vol.o
137 LIBMDOC_LNS = arch.ln \
138 att.ln \
139 lib.ln \
140 mdoc.ln \
141 mdoc_argv.ln \
142 mdoc_hash.ln \
143 mdoc_macro.ln \
144 mdoc_validate.ln \
145 msec.ln \
146 st.ln \
147 vol.ln
148
149 LIBROFF_OBJS = eqn.o \
150 roff.o \
151 tbl.o \
152 tbl_data.o \
153 tbl_layout.o \
154 tbl_opts.o
155 LIBROFF_LNS = eqn.ln \
156 roff.ln \
157 tbl.ln \
158 tbl_data.ln \
159 tbl_layout.ln \
160 tbl_opts.ln
161
162 LIBMANDOC_OBJS = $(LIBMAN_OBJS) \
163 $(LIBMDOC_OBJS) \
164 $(LIBROFF_OBJS) \
165 chars.o \
166 mandoc.o \
167 read.o
168 LIBMANDOC_LNS = $(LIBMAN_LNS) \
169 $(LIBMDOC_LNS) \
170 $(LIBROFF_LNS) \
171 chars.ln \
172 mandoc.ln \
173 read.ln
174
175 arch.o arch.ln: arch.in
176 att.o att.ln: att.in
177 chars.o chars.ln: chars.in
178 lib.o lib.ln: lib.in
179 msec.o msec.ln: msec.in
180 roff.o roff.ln: predefs.in
181 st.o st.ln: st.in
182 vol.o vol.ln: vol.in
183
184 $(LIBMAN_OBJS) $(LIBMAN_LNS): libman.h
185 $(LIBMDOC_OBJS) $(LIBMDOC_LNS): libmdoc.h
186 $(LIBROFF_OBJS) $(LIBROFF_LNS): libroff.h
187 $(LIBMANDOC_OBJS) $(LIBMANDOC_LNS): mandoc.h mdoc.h man.h libmandoc.h config.h
188
189 MANDOC_HTML_OBJS = html.o \
190 man_html.o \
191 mdoc_html.o \
192 tbl_html.o
193 MANDOC_HTML_LNS = html.ln \
194 man_html.ln \
195 mdoc_html.ln \
196 tbl_html.ln
197
198 MANDOC_TERM_OBJS = man_term.o \
199 mdoc_term.o \
200 term.o \
201 term_ascii.o \
202 term_ps.o \
203 tbl_term.o
204 MANDOC_TERM_LNS = man_term.ln \
205 mdoc_term.ln \
206 term.ln \
207 term_ascii.ln \
208 term_ps.ln \
209 tbl_term.ln
210
211 MANDOC_OBJS = $(MANDOC_HTML_OBJS) \
212 $(MANDOC_TERM_OBJS) \
213 main.o \
214 out.o \
215 tree.o
216 MANDOC_LNS = $(MANDOC_HTML_LNS) \
217 $(MANDOC_TERM_LNS) \
218 main.ln \
219 out.ln \
220 tree.ln
221
222 $(MANDOC_HTML_OBJS) $(MANDOC_HTML_LNS): html.h
223 $(MANDOC_TERM_OBJS) $(MANDOC_TERM_LNS): term.h
224 $(MANDOC_OBJS) $(MANDOC_LNS): main.h mandoc.h mdoc.h man.h config.h out.h
225
226 compat.o compat.ln: config.h
227
228 MAKEWHATIS_OBJS = makewhatis.o
229 MAKEWHATIS_LNS = makewhatis.ln
230
231 $(MAKEWHATIS_OBJS) $(MAKEWHATIS_LNS): mandoc.h mdoc.h man.h config.h
232
233 PRECONV_OBJS = preconv.o
234 PRECONV_LNS = preconv.ln
235
236 $(PRECONV_OBJS) $(PRECONV_LNS): config.h
237
238 INDEX_MANS = makewhatis.1.html \
239 makewhatis.1.xhtml \
240 makewhatis.1.ps \
241 makewhatis.1.pdf \
242 makewhatis.1.txt \
243 mandoc.1.html \
244 mandoc.1.xhtml \
245 mandoc.1.ps \
246 mandoc.1.pdf \
247 mandoc.1.txt \
248 mandoc.3.html \
249 mandoc.3.xhtml \
250 mandoc.3.ps \
251 mandoc.3.pdf \
252 mandoc.3.txt \
253 eqn.7.html \
254 eqn.7.xhtml \
255 eqn.7.ps \
256 eqn.7.pdf \
257 eqn.7.txt \
258 man.7.html \
259 man.7.xhtml \
260 man.7.ps \
261 man.7.pdf \
262 man.7.txt \
263 mandoc_char.7.html \
264 mandoc_char.7.xhtml \
265 mandoc_char.7.ps \
266 mandoc_char.7.pdf \
267 mandoc_char.7.txt \
268 mdoc.7.html \
269 mdoc.7.xhtml \
270 mdoc.7.ps \
271 mdoc.7.pdf \
272 mdoc.7.txt \
273 preconv.1.html \
274 preconv.1.xhtml \
275 preconv.1.ps \
276 preconv.1.pdf \
277 preconv.1.txt \
278 roff.7.html \
279 roff.7.xhtml \
280 roff.7.ps \
281 roff.7.pdf \
282 roff.7.txt \
283 tbl.7.html \
284 tbl.7.xhtml \
285 tbl.7.ps \
286 tbl.7.pdf \
287 tbl.7.txt
288
289 $(INDEX_MANS): mandoc
290
291 INDEX_OBJS = $(INDEX_MANS) \
292 man.h.html \
293 mandoc.h.html \
294 mdoc.h.html \
295 mdocml.tar.gz \
296 mdocml.md5
297
298 www: index.html
299
300 lint: llib-llibmandoc.ln llib-lmandoc.ln
301
302 clean:
303 rm -f libmandoc.a $(LIBMANDOC_OBJS)
304 rm -f llib-llibmandoc.ln $(LIBMANDOC_LNS)
305 rm -f makewhatis $(MAKEWHATIS_OBJS)
306 rm -f llib-lmakewhatis.ln $(MAKEWHATIS_LNS)
307 rm -f preconv $(PRECONV_OBJS)
308 rm -f llib-lpreconv.ln $(PRECONV_LNS)
309 rm -f mandoc $(MANDOC_OBJS)
310 rm -f llib-lmandoc.ln $(MANDOC_LNS)
311 rm -f config.h config.log compat.o compat.ln
312 rm -f mdocml.tar.gz
313 rm -f index.html $(INDEX_OBJS)
314
315 install: all
316 mkdir -p $(DESTDIR)$(BINDIR)
317 mkdir -p $(DESTDIR)$(EXAMPLEDIR)
318 mkdir -p $(DESTDIR)$(LIBDIR)
319 mkdir -p $(DESTDIR)$(INCLUDEDIR)
320 mkdir -p $(DESTDIR)$(MANDIR)/man1
321 mkdir -p $(DESTDIR)$(MANDIR)/man3
322 mkdir -p $(DESTDIR)$(MANDIR)/man7
323 $(INSTALL_PROGRAM) mandoc $(DESTDIR)$(BINDIR)
324 $(INSTALL_LIB) libmandoc.a $(DESTDIR)$(LIBDIR)
325 $(INSTALL_LIB) mandoc.h $(DESTDIR)$(INCLUDEDIR)
326 $(INSTALL_MAN) mandoc.1 $(DESTDIR)$(MANDIR)/man1
327 $(INSTALL_MAN) mandoc.3 $(DESTDIR)$(MANDIR)/man3
328 $(INSTALL_MAN) man.7 mdoc.7 roff.7 eqn.7 tbl.7 mandoc_char.7 $(DESTDIR)$(MANDIR)/man7
329 $(INSTALL_DATA) example.style.css $(DESTDIR)$(EXAMPLEDIR)
330
331 installwww: www
332 mkdir -p $(PREFIX)/snapshots
333 $(INSTALL_DATA) index.html external.png index.css $(PREFIX)
334 $(INSTALL_DATA) $(INDEX_MANS) style.css $(PREFIX)
335 $(INSTALL_DATA) mandoc.h.html man.h.html mdoc.h.html $(PREFIX)
336 $(INSTALL_DATA) mdocml.tar.gz $(PREFIX)/snapshots
337 $(INSTALL_DATA) mdocml.md5 $(PREFIX)/snapshots
338 $(INSTALL_DATA) mdocml.tar.gz $(PREFIX)/snapshots/mdocml-$(VERSION).tar.gz
339 $(INSTALL_DATA) mdocml.md5 $(PREFIX)/snapshots/mdocml-$(VERSION).md5
340
341 libmandoc.a: compat.o $(LIBMANDOC_OBJS)
342 $(AR) rs $@ compat.o $(LIBMANDOC_OBJS)
343
344 llib-llibmandoc.ln: compat.ln $(LIBMANDOC_LNS)
345 $(LINT) $(LINTFLAGS) -Clibmandoc compat.ln $(LIBMANDOC_LNS)
346
347 mandoc: $(MANDOC_OBJS) libmandoc.a
348 $(CC) -o $@ $(MANDOC_OBJS) libmandoc.a
349
350 llib-lmandoc.ln: $(MANDOC_LNS)
351 $(LINT) $(LINTFLAGS) -Cmandoc $(MANDOC_LNS)
352
353 # You'll need -ldb for Linux.
354 makewhatis: $(MAKEWHATIS_OBJS) libmandoc.a
355 $(CC) -o $@ $(MAKEWHATIS_OBJS) libmandoc.a
356
357 llib-lmakewhatis.ln: $(MAKEWHATIS_LNS)
358 $(LINT) $(LINTFLAGS) -Cmakewhatis $(MAKEWHATIS_LNS)
359
360 preconv: $(PRECONV_OBJS)
361 $(CC) -o $@ $(PRECONV_OBJS)
362
363 llib-lpreconv.ln: $(PRECONV_LNS)
364 $(LINT) $(LINTFLAGS) -Cpreconv $(PRECONV_LNS)
365
366 mdocml.md5: mdocml.tar.gz
367 md5 mdocml.tar.gz >$@
368
369 mdocml.tar.gz: $(SRCS)
370 mkdir -p .dist/mdocml-$(VERSION)/
371 $(INSTALL) -m 0444 $(SRCS) .dist/mdocml-$(VERSION)
372 ( cd .dist/ && tar zcf ../$@ ./ )
373 rm -rf .dist/
374
375 index.html: $(INDEX_OBJS)
376
377 config.h: config.h.pre config.h.post
378 rm -f config.log
379 ( cat config.h.pre; \
380 echo; \
381 if $(CC) $(CFLAGS) -Werror -o test-strlcat test-strlcat.c >> config.log 2>&1; then \
382 echo '#define HAVE_STRLCAT'; \
383 rm test-strlcat; \
384 fi; \
385 if $(CC) $(CFLAGS) -Werror -o test-strlcpy test-strlcpy.c >> config.log 2>&1; then \
386 echo '#define HAVE_STRLCPY'; \
387 rm test-strlcpy; \
388 fi; \
389 echo; \
390 cat config.h.post \
391 ) > $@
392
393 .h.h.html:
394 highlight -I $< >$@
395
396 .1.1.txt .3.3.txt .7.7.txt:
397 ./mandoc -Tascii -Wall,stop $< | col -b >$@
398
399 .1.1.html .3.3.html .7.7.html:
400 ./mandoc -Thtml -Wall,stop -Ostyle=style.css,man=%N.%S.html,includes=%I.html $< >$@
401
402 .1.1.ps .3.3.ps .7.7.ps:
403 ./mandoc -Tps -Wall,stop $< >$@
404
405 .1.1.xhtml .3.3.xhtml .7.7.xhtml:
406 ./mandoc -Txhtml -Wall,stop -Ostyle=style.css,man=%N.%S.xhtml,includes=%I.html $< >$@
407
408 .1.1.pdf .3.3.pdf .7.7.pdf:
409 ./mandoc -Tpdf -Wall,stop $< >$@
410
411 .sgml.html:
412 validate --warn $<
413 sed -e "s!@VERSION@!$(VERSION)!" -e "s!@VDATE@!$(VDATE)!" $< >$@