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