]> git.ipfire.org Git - thirdparty/pdns.git/blob - docs/Makefile.am
Merge pull request #7677 from rgacogne/dnsdist-logging-facility
[thirdparty/pdns.git] / docs / Makefile.am
1 MAIN_MANS = pdns_server.1 \
2 pdns_control.1 \
3 pdnsutil.1 \
4 zone2json.1 \
5 zone2sql.1
6
7 MANPAGES_INSTALL = $(MAIN_MANS)
8
9 MANPAGES_DIST = $(MAIN_MANS) zone2ldap.1
10
11 if LDAP
12 MANPAGES_INSTALL += zone2ldap.1
13 endif
14
15 MANPAGES_TARGET_TOOLS = calidns.1 \
16 dnspcap2calidns.1 \
17 dnsgram.1 \
18 dnsreplay.1 \
19 dnsscan.1 \
20 dnsscope.1 \
21 dnswasher.1 \
22 dumresp.1 \
23 ixplore.1 \
24 nproxy.1 \
25 nsec3dig.1 \
26 pdns_notify.1 \
27 saxfr.1 \
28 sdig.1
29
30 MANPAGES_TARGET_IXFRDIST = ixfrdist.1 \
31 ixfrdist.yml.5
32
33 MANPAGES_DIST += $(MANPAGES_TARGET_TOOLS) \
34 $(MANPAGES_TARGET_IXFRDIST) \
35 dnsbulktest.1 \
36 dnstcpbench.1 \
37 dnspcap2protobuf.1
38
39 if HAVE_BOOST_GE_148
40 MANPAGES_INSTALL += dnsbulktest.1 \
41 dnstcpbench.1
42 endif
43
44 if HAVE_PROTOBUF
45 if HAVE_PROTOC
46 MANPAGES_INSTALL += dnspcap2protobuf.1
47 endif
48 endif
49
50 if TOOLS
51 MANPAGES_INSTALL += $(MANPAGES_TARGET_TOOLS)
52 endif
53
54 if IXFRDIST
55 MANPAGES_INSTALL += $(MANPAGES_TARGET_IXFRDIST)
56 endif
57
58 man_MANS = $(MANPAGES_INSTALL)
59
60 EXTRA_DIST = $(MANPAGES_DIST)
61
62 if HAVE_VIRTUALENV
63 if !HAVE_MANPAGES
64 $(MANPAGES_DIST): %: manpages/%.rst .venv
65 .venv/bin/python -msphinx -b man . mans $<
66 mv mans/$@ $@
67 endif # if !HAVE_MANPAGES
68
69 .venv: requirements.txt
70 virtualenv .venv
71 .venv/bin/pip install -U pip setuptools setuptools-git
72 .venv/bin/pip install -r requirements.txt
73
74 .NOTPARALLEL: \
75 all-docs \
76 upload-docs \
77 html-docs \
78 $(MANPAGES_DIST) \
79 latex/PowerDNS-Authoritative.pdf \
80 PowerDNS-Authoritative.pdf \
81 html-docs.tar.bz2
82
83 clean-local:
84 rm -f latex/PowerDNS-Authoritative.pdf $(MANPAGES_DIST) html-docs.tar.bz2
85 rm -rf mans
86
87 html-docs: common/** manpages/** .venv *.rst
88 .venv/bin/python -msphinx -b html . html-docs
89
90 latex/PowerDNS-Authoritative.pdf: common/** manpages/** .venv *.rst
91 .venv/bin/python -msphinx -M latexpdf . .
92
93 PowerDNS-Authoritative.pdf: latex/PowerDNS-Authoritative.pdf
94 mv $< $@
95
96 html-docs.tar.bz2: html-docs
97 tar cjf $@ $<
98
99 all-docs: PowerDNS-Authoritative.pdf html-docs html-docs.tar.bz2
100
101 upload-docs: all-docs
102 rsync -crv --delete --no-p --chmod=g=rwX --exclude '*~' ./html-docs/ web1.powerdns.com:/srv/www/doc.powerdns.com/authoritative/
103 rsync -crv --no-p --chmod=g=rwX --exclude '*~' ./html-docs.tar.bz2 web1.powerdns.com:/srv/www/doc.powerdns.com/authoritative/
104 rsync -crv --no-p --chmod=g=rwX --exclude '*~' ./PowerDNS-Authoritative.pdf web1.powerdns.com:/srv/www/doc.powerdns.com/authoritative/
105
106 else # if HAVE_VIRTUALENV
107 $(MANPAGES_DIST):
108 echo "You need virtualenv to generate the manpages"
109 exit 1
110
111 PowerDNS-Authoritative.pdf:
112 echo "You need virtualenv to generate the PDF"
113 exit 1
114
115 html-docs:
116 echo "You need virtualenv to generate the HTML docs"
117 exit 1
118 endif
119
120