]> Sergey Matveev's repositories - public-inbox.git/blob - Documentation/include.mk
doc: generate manpage and HTML from -convert POD
[public-inbox.git] / Documentation / include.mk
1 # Copyright (C) 2013-2019 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3 all::
4
5 # Note: some GNU-isms present and required to build docs
6 # (including manpages), but at least this should not trigger
7 # warnings with BSD make(1) when running "make check"
8 # Maybe it's not worth it to support non-GNU make, though...
9 RSYNC = rsync
10 RSYNC_DEST = public-inbox.org:/srv/public-inbox/
11 MAN = man
12
13 # same as pod2text
14 COLUMNS = 76
15
16 txt := INSTALL README COPYING TODO HACKING
17 dtxt := design_notes.txt design_www.txt dc-dlvr-spam-flow.txt hosted.txt
18 dtxt += marketing.txt
19 dtxt += standards.txt
20 dtxt := $(addprefix Documentation/, $(dtxt))
21 docs := $(txt) $(dtxt)
22
23 INSTALL = install
24 PODMAN = pod2man
25 PODMAN_OPTS = -v --stderr -d 1993-10-02 -c 'public-inbox user manual'
26 PODMAN_OPTS += -r public-inbox.git
27 podman = $(PODMAN) $(PODMAN_OPTS)
28 PODTEXT = pod2text
29 PODTEXT_OPTS = --stderr
30 podtext = $(PODTEXT) $(PODTEXT_OPTS)
31
32 # MakeMaker only seems to support manpage sections 1 and 3...
33 m1 =
34 m1 += public-inbox-compact
35 m1 += public-inbox-convert
36 m1 += public-inbox-httpd
37 m1 += public-inbox-index
38 m1 += public-inbox-mda
39 m1 += public-inbox-nntpd
40 m1 += public-inbox-watch
41 m1 += public-inbox-xcpdb
42 m5 =
43 m5 += public-inbox-config
44 m5 += public-inbox-v1-format
45 m5 += public-inbox-v2-format
46 m7 =
47 m7 += public-inbox-overview
48 m8 =
49 m8 += public-inbox-daemon
50
51 man1 := $(addsuffix .1, $(m1))
52 man5 := $(addsuffix .5, $(m5))
53 man7 := $(addsuffix .7, $(m7))
54 man8 := $(addsuffix .8, $(m8))
55
56 all:: man html
57
58 man: $(man1) $(man5) $(man7) $(man8)
59
60 prefix ?= $(PREFIX)
61 prefix ?= $(HOME)
62 mandir ?= $(prefix)/share/man
63 man1dir = $(mandir)/man1
64 man5dir = $(mandir)/man5
65 man7dir = $(mandir)/man7
66 man8dir = $(mandir)/man8
67
68 install-man: man
69         $(INSTALL) -d -m 755 $(DESTDIR)$(man1dir)
70         $(INSTALL) -d -m 755 $(DESTDIR)$(man5dir)
71         $(INSTALL) -d -m 755 $(DESTDIR)$(man7dir)
72         $(INSTALL) -d -m 755 $(DESTDIR)$(man8dir)
73         $(INSTALL) -m 644 $(man1) $(DESTDIR)$(man1dir)
74         $(INSTALL) -m 644 $(man5) $(DESTDIR)$(man5dir)
75         $(INSTALL) -m 644 $(man7) $(DESTDIR)$(man7dir)
76         $(INSTALL) -m 644 $(man8) $(DESTDIR)$(man8dir)
77
78 doc_install :: install-man
79
80 %.1 %.5 %.7 %.8 : Documentation/%.pod
81         $(podman) -s $(subst .,,$(suffix $@)) $< $@+ && mv $@+ $@
82
83 manuals :=
84 manuals += $(m1)
85 manuals += $(m5)
86 manuals += $(m7)
87 manuals += $(m8)
88
89 mantxt = $(addprefix Documentation/, $(addsuffix .txt, $(manuals)))
90 docs += $(mantxt)
91 dtxt += $(mantxt)
92
93 all :: $(mantxt)
94
95 Documentation/%.txt : Documentation/%.pod
96         $(podtext) $< $@+ && touch -r $< $@+ && mv $@+ $@
97
98 txt2pre = $(PERL) -I lib ./Documentation/txt2pre <$< >$@+ && \
99         touch -r $< $@+ && mv $@+ $@
100
101 Documentation/standards.txt : Documentation/standards.perl
102         $(PERL) $< >$@+ && touch -r $< $@+ && mv $@+ $@
103
104 Documentation/%.html: Documentation/%.txt
105         $(txt2pre)
106
107 %.html: %
108         $(txt2pre)
109
110 docs_html := $(addsuffix .html, $(subst .txt,,$(dtxt)) $(txt))
111 html: $(docs_html)
112 gz_docs := $(addsuffix .gz, $(docs) $(docs_html))
113 rsync_docs := $(gz_docs) $(docs) $(docs_html)
114
115 # external manpages which we host ourselves, since some packages
116 # (currently just Xapian) doesn't host manpages themselves.
117 xtxt :=
118 xtxt += .copydatabase.1
119 xtxt += .xapian-compact.1
120 xtxt := $(addprefix Documentation/.x/, $(addsuffix .txt, $(xtxt)))
121 xdocs := $(xtxt)
122 xdocs_html := $(addsuffix .html, $(subst .txt,,$(xtxt)))
123 gz_xdocs := $(addsuffix .gz, $(xdocs) $(xdocs_html))
124 rsync_xdocs := $(gz_xdocs) $(xdocs_html) $(xdocs)
125 xdoc: $(xdocs) $(xdocs_html)
126
127 Documentation/.x/%.txt::
128         @-mkdir -p $(@D)
129         $(PERL) -w Documentation/extman.perl $@ >$@+
130         mv $@+ $@
131
132 Documentation/.x/%.html: Documentation/.x/%.txt
133         $(txt2pre)
134
135 doc: $(docs)
136
137 %.gz: %
138         gzip -9 --rsyncable <$< >$@+
139         touch -r $< $@+
140         mv $@+ $@
141
142 gz-doc: $(gz_docs)
143
144 gz-xdoc: $(gz_xdocs)
145
146 rsync-doc:
147         # /usr/share/doc/rsync/scripts/git-set-file-times{.gz} on Debian systems
148         # It is also at: https://yhbt.net/git-set-file-times
149         -git set-file-times $(docs) $(txt)
150         $(MAKE) gz-doc gz-xdoc
151         $(RSYNC) --chmod=Fugo=r -av $(rsync_docs) $(rsync_xdocs) $(RSYNC_DEST)
152
153 clean-doc:
154         $(RM) $(man1) $(man5) $(man7) $(man8) $(gz_docs) $(docs_html) $(mantxt)
155         $(RM) $(gz_xdocs) $(xdocs_html) $(xdocs)
156
157 clean :: clean-doc
158
159 pure_all ::
160         @if test x"$(addprefix g, make)" != xgmake; then \
161         echo W: gmake is currently required to build manpages; fi