]> git.proxmox.com Git - pve-docs.git/blob - Makefile
more pveam examples
[pve-docs.git] / Makefile
1 RELEASE=4.1
2
3 PVESM_SOURCES=attributes.txt pvesm.adoc pvesm.1-synopsis.adoc $(shell ls pve-storage-*.adoc)
4 PVEUM_SOURCES=attributes.txt pveum.adoc pveum.1-synopsis.adoc
5 VZDUMP_SOURCES=attributes.txt vzdump.adoc vzdump.1-synopsis.adoc
6 PVEFW_SOURCES=attributes.txt pve-firewall.adoc pve-firewall.8-synopsis.adoc
7 QM_SOURCES=attributes.txt qm.adoc qm.1-synopsis.adoc
8 PCT_SOURCES=attributes.txt pct.adoc pct.1-synopsis.adoc
9 PVEAM_SOURCES=attributes.txt pveam.adoc pveam.1-synopsis.adoc
10 HA_SOURCES=attributes.txt ha-manager.1-synopsis.adoc ha-manager.adoc
11
12 SYSADMIN_SOURCES= \
13 getting-help.adoc \
14 pve-package-repos.adoc \
15 pve-installation.adoc \
16 system-software-updates.adoc \
17 sysadmin.adoc
18
19 PVE_ADMIN_GUIDE_SOURCES= \
20 ${SYSADMIN_SOURCES} \
21 pve-admin-guide.adoc \
22 pve-intro.adoc \
23 pmxcfs.adoc \
24 pve-faq.adoc \
25 ${QM_SOURCES} \
26 ${PCT_SOURCES} \
27 ${PVEAM_SOURCES} \
28 ${PVEFW_SOURCES} \
29 ${PVEUM_SOURCES} \
30 ${PVESM_SOURCES} \
31 ${VZDUMP_SOURCES} \
32 ${HA_SOURCES} \
33 images/cluster-nwdiag.svg \
34 images/node-nwdiag.svg \
35 pve-bibliography.adoc \
36 GFDL.adoc \
37 attributes.txt
38
39 ADOC_STDARG= -a icons -a data-uri -a "date=$(shell date)"
40 ADOC_MAN1_HTML_ARGS=-a "manvolnum=1" ${ADOC_STDARG} -a "revnumber=${RELEASE}"
41 ADOC_MAN8_HTML_ARGS=-a "manvolnum=8" ${ADOC_STDARG} -a "revnumber=${RELEASE}"
42
43 BROWSER?=xdg-open
44
45 %-nwdiag.svg: %.nwdiag
46 nwdiag -T svg $*.nwdiag -o $@;
47
48 %.1-synopsis.adoc:
49 perl -e "use PVE::CLI::$(subst -,_,$*);print PVE::CLI::$(subst -,_,$*)->generate_asciidoc_synopsys();" > $@.tmp
50 mv $@.tmp $@
51
52 %.1: %.adoc %.1-synopsis.adoc docinfo.xml
53 a2x -a docinfo1 -a "manvolnum=1" -a "manversion=Release ${RELEASE}" -f manpage $*.adoc
54 test -z "$${NOVIEW}" && man -l $@
55
56 %.1.html: %.adoc %.1-synopsis.adoc docinfo.xml
57 asciidoc ${ADOC_MAN1_HTML_ARGS} -o $@ $*.adoc
58 test -z "$${NOVIEW}" && $(BROWSER) $@ &
59
60
61 %.8-synopsis.adoc:
62 perl -e "use PVE::Service::$(subst -,_,$*);print PVE::Service::$(subst -,_,$*)->generate_asciidoc_synopsys();" > $@.tmp
63 mv $@.tmp $@
64
65 %.8: %.adoc %.8-synopsis.adoc docinfo.xml
66 a2x -a docinfo1 -a "manvolnum=8" -a "manversion=Release ${RELEASE}" -f manpage $*.adoc
67 test -z "$${NOVIEW}" && man -l $@
68
69 %.8.html: %.adoc %.8-synopsis.adoc docinfo.xml
70 asciidoc ${ADOC_MAN8_HTML_ARGS} -o $@ $*.adoc
71 test -z "$${NOVIEW}" && $(BROWSER) $@ &
72
73
74 all: pve-admin-guide.html
75
76 index.html: index.adoc ${PVE_ADMIN_GUIDE_SOURCES}
77 $(MAKE) NOVIEW=1 pve-admin-guide.pdf pve-admin-guide.html pve-admin-guide.epub
78 $(MAKE) NOVIEW=1 qm.1.html pct.1.html pveam.1.html pvesm.1.html pveum.1.html vzdump.1.html pve-firewall.8.html ha-manager.1.html
79 asciidoc -a "date=$(shell date)" -a "revnumber=${RELEASE}" index.adoc
80 $(BROWSER) index.html &
81
82 pve-admin-guide.html: ${PVE_ADMIN_GUIDE_SOURCES}
83 asciidoc -a "revnumber=${RELEASE}" -a "date=$(shell date)" pve-admin-guide.adoc
84 test -z "$${NOVIEW}" && $(BROWSER) $@ &
85
86 pve-admin-guide.pdf: ${PVE_ADMIN_GUIDE_SOURCES} docinfo.xml pve-admin-guide-docinfo.xml
87 grep ">Release ${RELEASE}<" pve-admin-guide-docinfo.xml || (echo "wrong release in pve-admin-guide-docinfo.xml" && false);
88 a2x -a docinfo -a docinfo1 -f pdf -L --dblatex-opts "-P latex.output.revhistory=0" --dblatex-opts "-P latex.class.options=12pt" pve-admin-guide.adoc
89 test -z "$${NOVIEW}" && $(BROWSER) $@ &
90
91 pve-admin-guide.epub: ${PVE_ADMIN_GUIDE_SOURCES}
92 a2x -f epub pve-admin-guide.adoc
93 test -z "$${NOVIEW}" && $(BROWSER) $@ &
94
95
96 clean:
97 rm -rf *~ *.html *.pdf *.epub *.1 *.8