]> git.proxmox.com Git - pve-docs.git/blame - Makefile
pvesm: fixup use CephFS
[pve-docs.git] / Makefile
CommitLineData
bef0c1b4 1DGDIR=.
c38115e9 2ASCIIDOC_PVE=./asciidoc-pve
bef0c1b4 3
9015f48f
DM
4GEN_PACKAGE=pve-doc-generator
5DOC_PACKAGE=pve-docs
cfabc2e9 6MEDIAWIKI_PACKAGE=pve-docs-mediawiki
9344ee0d
DM
7
8# also update debian/changelog
a791a096 9PKGREL=1
9344ee0d 10
60955877 11GITVERSION:=$(shell git rev-parse HEAD)
b4f3c18a 12
0a3c58e0
TL
13ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
14
15GEN_DEB=${GEN_PACKAGE}_${DOCRELEASE}-${PKGREL}_${ARCH}.deb
ceb4ea5b 16DOC_DEB=${DOC_PACKAGE}_${DOCRELEASE}-${PKGREL}_all.deb
cfabc2e9 17MEDIAWIKI_DEB=${MEDIAWIKI_PACKAGE}_${DOCRELEASE}-${PKGREL}_all.deb
9344ee0d 18
b965ad63
FG
19export SOURCE_DATE_EPOCH ?= $(shell dpkg-parsechangelog -STimestamp)
20SOURCE_DATE_HUMAN := $(shell date -d "@${SOURCE_DATE_EPOCH}")
516d1f2f 21
63a01806
DM
22all: index.html
23
7515acaf
DM
24.PHONY: verify-images
25verify-images:
26 for i in ./images/screenshot/*.png; do ./png-verify.pl $$i; done
516d1f2f
DM
27
28ADOC_SOURCES_GUESS=$(filter-out %-synopsis.adoc %-opts.adoc %-table.adoc, $(wildcard *.adoc))
29.pve-doc-depends link-refs.json: ${ADOC_SOURCES_GUESS} scan-adoc-refs
e6fc3b0c
DM
30 ./scan-adoc-refs *.adoc --depends .pve-doc-depends.tmp > link-refs.json.tmp
31 @cmp --quiet .pve-doc-depends .pve-doc-depends.tmp || mv .pve-doc-depends.tmp .pve-doc-depends
32 @cmp --quiet link-refs.json link-refs.json.tmp || mv link-refs.json.tmp link-refs.json
63a01806 33
1ed794c8
DM
34pve-doc-generator.mk: .pve-doc-depends pve-doc-generator.mk.in
35 cat pve-doc-generator.mk.in .pve-doc-depends > $@.tmp
36 mv $@.tmp $@
37
fd880d44 38-include ./pve-doc-generator.mk
672abac1 39
9015f48f 40GEN_DEB_SOURCES= \
672abac1 41 pve-doc-generator.mk \
63a01806 42 ${MANUAL_SOURCES} \
54079101 43 pmxcfs.8-synopsis.adoc \
b08ec024 44 qmeventd.8-synopsis.adoc \
9344ee0d
DM
45 docinfo.xml
46
47GEN_SCRIPTS= \
8942fab2
DM
48 gen-ha-groups-opts.pl \
49 gen-ha-resources-opts.pl \
f6b81378
DM
50 gen-datacenter.cfg.5-opts.pl \
51 gen-pct.conf.5-opts.pl \
bac8c385 52 gen-pct-network-opts.pl \
fe154a4f 53 gen-pct-mountpoint-opts.pl \
9b4799ab 54 gen-qm.conf.5-opts.pl \
8eb81ff6 55 gen-qm-cloud-init-opts.pl \
500f1e1f 56 gen-vzdump.conf.5-opts.pl \
9344ee0d
DM
57 gen-pve-firewall-cluster-opts.pl \
58 gen-pve-firewall-host-opts.pl \
59 gen-pve-firewall-macros-adoc.pl \
60 gen-pve-firewall-rules-opts.pl \
441ae628
DM
61 gen-pve-firewall-vm-opts.pl \
62 gen-output-format-opts.pl
9344ee0d 63
356064f4
DM
64API_VIEWER_SOURCES= \
65 api-viewer/index.html \
66 api-viewer/apidoc.js
67
aa99b349
DM
68asciidoc-pve: asciidoc-pve.in link-refs.json
69 cat asciidoc-pve.in link-refs.json >asciidoc-pve.tmp
835dd63b 70 sed -e s/@RELEASE@/${DOCRELEASE}/ -i asciidoc-pve.tmp
aa99b349
DM
71 chmod +x asciidoc-pve.tmp
72 mv asciidoc-pve.tmp asciidoc-pve
73
b489b02c
DM
74pve-docs-mediawiki-import: pve-docs-mediawiki-import.in link-refs.json
75 cat pve-docs-mediawiki-import.in link-refs.json > pve-docs-mediawiki-import.tmp
76 chmod +x pve-docs-mediawiki-import.tmp
77 mv pve-docs-mediawiki-import.tmp pve-docs-mediawiki-import
78
f4defaeb
DM
79INDEX_INCLUDES= \
80 pve-admin-guide.pdf \
f4defaeb 81 pve-admin-guide.epub \
941ab9c7
DM
82 chapter-index-table.adoc \
83 man1-index-table.adoc \
84 man5-index-table.adoc \
85 man8-index-table.adoc \
63a01806 86 $(sort $(addsuffix .html, ${MANUAL_PAGES}) ${CHAPTER_LIST})
f4defaeb 87
b965ad63 88ADOC_STDARG=-b $(shell pwd)/asciidoc/pve-html -f asciidoc/asciidoc-pve.conf -a icons -a data-uri -a "date=${SOURCE_DATE_HUMAN}" -a "revnumber=${DOCRELEASE}" -a footer-style=revdate
deb7f2ea 89
fc1090ef 90BROWSER?=xdg-open
df41beec 91
9d17dbac 92README.html: README.adoc
6b70c786 93 asciidoc -a toc ${ADOC_STDARG} -o $@ $<
9d17dbac 94
8ace7110
DM
95.PHONY: index
96index: index.html
3f559975
DM
97 $(BROWSER) index.html &
98
fd02ab90
DM
99chapter-index-table.adoc: asciidoc-pve
100 ./asciidoc-pve chapter-table >$@.tmp
941ab9c7
DM
101 mv $@.tmp $@
102
fd02ab90
DM
103man1-index-table.adoc: asciidoc-pve
104 ./asciidoc-pve man1page-table >$@.tmp
941ab9c7
DM
105 mv $@.tmp $@
106
fd02ab90
DM
107man5-index-table.adoc: asciidoc-pve
108 ./asciidoc-pve man5page-table >$@.tmp
941ab9c7
DM
109 mv $@.tmp $@
110
fd02ab90
DM
111man8-index-table.adoc: asciidoc-pve
112 ./asciidoc-pve man8page-table >$@.tmp
941ab9c7
DM
113 mv $@.tmp $@
114
115index.html: index.adoc ${API_VIEWER_SOURCES} ${INDEX_INCLUDES}
c65b00e2 116 asciidoc ${ADOC_STDARG} -o $@ index.adoc
deb7f2ea 117
63a01806 118pve-admin-guide.html: ${PVE_ADMIN_GUIDE_ADOCDEPENDS}
ae0ad291 119 asciidoc -a pvelogo ${ADOC_STDARG} -o $@ pve-admin-guide.adoc
deb7f2ea 120
63a01806 121pve-admin-guide.chunked: ${PVE_ADMIN_GUIDE_ADOCDEPENDS}
959bc81c
FG
122 rm -rf $@.tmp $@
123 mkdir $@.tmp
124 a2x -D $@.tmp -a docinfo -a docinfo1 -a icons -f chunked pve-admin-guide.adoc
125 mv $@.tmp/$@ $@
59d89a51 126
2522a624 127PVE_DOCBOOK_CONF=-b $(shell pwd)/asciidoc/pve-docbook -f asciidoc/asciidoc-pve.conf
789c5c57 128PVE_DBLATEX_OPTS='-p ./asciidoc/pve-dblatex.xsl -s asciidoc/dblatex-custom.sty -c asciidoc/dblatex-export.conf'
2522a624 129
384871f2
DM
130pve-admin-guide-docinfo.xml: pve-admin-guide-docinfo.xml.in
131 sed -e 's/@RELEASE@/${DOCRELEASE}/' <$< >$@
132
63a01806 133pve-admin-guide.pdf: ${PVE_ADMIN_GUIDE_ADOCDEPENDS} docinfo.xml pve-admin-guide-docinfo.xml
789c5c57
TL
134 rsvg-convert -f pdf -o proxmox-logo.pdf images/proxmox-logo.svg
135 rsvg-convert -f pdf -o proxmox-ci-header.pdf images/proxmox-ci-header.svg
bef0c1b4 136 grep ">Release ${DOCRELEASE}<" pve-admin-guide-docinfo.xml || (echo "wrong release in pve-admin-guide-docinfo.xml" && false);
789c5c57 137 a2x -a docinfo -a docinfo1 -f pdf -L --asciidoc-opts="${PVE_DOCBOOK_CONF}" --dblatex-opts ${PVE_DBLATEX_OPTS} pve-admin-guide.adoc
34ef065a 138 rm proxmox-logo.pdf proxmox-ci-header.pdf
deb7f2ea 139
63a01806 140pve-admin-guide.epub: ${PVE_ADMIN_GUIDE_ADOCDEPENDS}
959bc81c
FG
141 rm -rf $@.tmp $@
142 mkdir $@.tmp
143 a2x -D $@.tmp -f epub --asciidoc-opts="${PVE_DOCBOOK_CONF}" pve-admin-guide.adoc
144 mv $@.tmp/$@ $@
9344ee0d 145
356064f4 146api-viewer/apidata.js: extractapi.pl
61568a65
DM
147 ./extractapi.pl >$@
148
356064f4
DM
149api-viewer/apidoc.js: api-viewer/apidata.js api-viewer/PVEAPI.js
150 cat api-viewer/apidata.js api-viewer/PVEAPI.js >$@
61568a65 151
9344ee0d 152.PHONY: dinstall
cfabc2e9
DM
153dinstall: ${GEN_DEB} ${DOC_DEB} ${MEDIAWIKI_DEB}
154 dpkg -i ${GEN_DEB} ${DOC_DEB} ${MEDIAWIKI_DEB}
9015f48f 155
9344ee0d 156.PHONY: deb
fa764571
FG
157deb: $(DOC_DEB)
158$(MEDIAWIKI_DEB) $(GEN_DEB): $(DOC_DEB)
159$(DOC_DEB):
c8bdafbd 160 rm -f ${GEN_DEB} ${DOC_DEB} ${MEDIAWIKI_DEB}
fa764571
FG
161 rm -rf build
162 rsync -a * build/
163 echo "git clone git://git.proxmox.com/git/pve-docs.git\\ngit checkout ${GITVERSION}" > build/debian/SOURCE
164 cd build; dpkg-buildpackage -b -us -uc
165 lintian $(DOC_DEB) $(GEN_DEB) $(MEDIAWIKI_DEB)
f0d25f0d 166
c8bdafbd
WB
167.PHONY: clean-build
168clean-build:
9015f48f 169 rm -rf build
c8bdafbd 170
fa764571
FG
171.PHONY: install
172install: gen-install doc-install mediawiki-install
173
174.PHONY: gen-install
175gen-install: $(GEN_DEB_SOURCES) asciidoc-pve asciidoc/mediawiki.conf
176 install -dm755 $(DESTDIR)/usr/share/$(GEN_PACKAGE)
177 install -dm755 $(DESTDIR)/usr/share/doc/$(GEN_PACKAGE)
178 install -dm755 $(DESTDIR)/usr/bin
c8bdafbd 179 # install files
fa764571
FG
180 install -m 0644 ${GEN_DEB_SOURCES} $(DESTDIR)/usr/share/${GEN_PACKAGE}
181 install -m 0755 ${GEN_SCRIPTS} $(DESTDIR)/usr/share/${GEN_PACKAGE}
de7022fb 182 # install asciidoc-pve
fa764571
FG
183 install -m 0755 asciidoc-pve $(DESTDIR)/usr/bin/
184 install -D -m 0644 asciidoc/mediawiki.conf $(DESTDIR)/usr/share/${GEN_PACKAGE}/asciidoc/mediawiki.conf
185 install -m 0644 asciidoc/asciidoc-pve.conf $(DESTDIR)/usr/share/${GEN_PACKAGE}/asciidoc/
186 install -m 0644 asciidoc/pve-html.conf $(DESTDIR)/usr/share/${GEN_PACKAGE}/asciidoc/
187
188.PHONY: doc-install
189doc-install: index.html $(WIKI_IMPORTS) $(API_VIEWER_SOURCES) verify-images
190 install -dm755 $(DESTDIR)/usr/share/$(DOC_PACKAGE)
191 install -dm755 $(DESTDIR)/usr/share/doc/$(DOC_PACKAGE)
ceb4ea5b 192 # install files for pvedocs package
fa764571
FG
193 install -dm755 $(DESTDIR)/usr/share/${DOC_PACKAGE}
194 install -dm755 $(DESTDIR)/usr/share/doc/${DOC_PACKAGE}
195 install -m 0644 index.html ${INDEX_INCLUDES} $(DESTDIR)/usr/share/${DOC_PACKAGE}
196 install -m 0644 ${WIKI_IMPORTS} $(DESTDIR)/usr/share/${DOC_PACKAGE}
50f88938 197 # install images
fa764571 198 make -C images install
8c8ae224 199 # install screenshot images
fa764571
FG
200 install -dm755 $(DESTDIR)/usr/share/${DOC_PACKAGE}/images/screenshot
201 install -m 0644 images/screenshot/*.png $(DESTDIR)/usr/share/${DOC_PACKAGE}/images/screenshot
61568a65 202 # install api doc viewer
fa764571
FG
203 install -dm755 $(DESTDIR)/usr/share/${DOC_PACKAGE}/api-viewer
204 install -m 0644 ${API_VIEWER_SOURCES} $(DESTDIR)/usr/share/${DOC_PACKAGE}/api-viewer
205
206.PHONY: mediawiki-install
207mediawiki-install: pve-docs-mediawiki-import
208 install -dm755 $(DESTDIR)/usr/share/$(MEDIAWIKI_PACKAGE)
209 install -dm755 $(DESTDIR)/usr/share/doc/$(MEDIAWIKI_PACKAGE)
210 install -dm755 $(DESTDIR)/usr/bin
211 install -dm755 $(DESTDIR)/usr/share/$(MEDIAWIKI_PACKAGE)
212 install -dm755 $(DESTDIR)/usr/share/doc/$(MEDIAWIKI_PACKAGE)
213 install -m 0755 pve-docs-mediawiki-import $(DESTDIR)/usr/bin/
9344ee0d 214
89e93b38 215.PHONY: upload
cfabc2e9 216upload: ${GEN_DEB} ${DOC_DEB} ${MEDIAWIKI_DEB}
821cf643 217 tar cf - ${GEN_DEB} ${DOC_DEB} ${MEDIAWIKI_DEB} | ssh -X repoman@repo.proxmox.com -- upload --product pve --dist stretch
deb7f2ea 218
56122987 219.PHONY: update
0fa28023
DM
220update:
221 make clean clean-static
222 make update-static
5cb4ef63
TL
223 make all
224
225.PHONY: update-static
0fa28023
DM
226update-static:
227 make clean-static
228 make $(filter %-synopsis.adoc %-opts.adoc, ${PVE_ADMIN_GUIDE_ADOCDEPENDS}) pve-firewall-macros.adoc api-viewer/apidata.js
5cb4ef63
TL
229
230.PHONY: clean-static
231clean-static:
51778acd 232 find . -regex '.*-\(opts\|synopsis\)\.adoc' -not -name pmxcfs.8-synopsis.adoc -not -name qmeventd.8-synopsis.adoc -exec rm -f \{\} \;
56122987 233 rm -f api-viewer/apidata.js
fe154a4f 234 rm -f pve-firewall-macros.adoc pct-network-opts.adoc pct-mountpoint-opts.adoc
deb7f2ea 235
5cb4ef63 236clean:
f00afaef
WB
237 rm -rf *.html *.pdf *.epub *.tmp *.1 *.5 *.8
238 rm -f *.deb *.changes *.buildinfo
5cb4ef63
TL
239 rm -f api-viewer/apidoc.js chapter-*.html *-plain.html chapter-*.html pve-admin-guide.chunked asciidoc-pve link-refs.json .asciidoc-pve-tmp_* pve-docs-mediawiki-import
240 rm -rf .pve-doc-depends
f00afaef 241 rm -f pve-doc-generator.mk chapter-index-table.adoc man1-index-table.adoc man5-index-table.adoc man8-index-table.adoc pve-admin-guide-docinfo.xml
c8bdafbd 242 rm -rf build-*