]> git.proxmox.com Git - pve-manager.git/blob - bin/Makefile
ui: disable new notification UI for now, will be reworked
[pve-manager.git] / bin / Makefile
1 include ../defines.mk
2
3 PERL_DOC_INC_DIRS=..
4 -include /usr/share/pve-doc-generator/pve-doc-generator.mk
5
6 SERVICES = pvestatd pveproxy pvedaemon spiceproxy pvescheduler
7 CLITOOLS = \
8 vzdump \
9 pvesubscription \
10 pveceph \
11 pveam \
12 pvesr \
13 pvenode \
14 pvesh \
15 pve7to8 \
16
17
18 SCRIPTS = \
19 $(SERVICES) \
20 $(CLITOOLS) \
21 pvebanner \
22 pveversion \
23 pveupgrade \
24 pveupdate \
25 pveperf \
26 pvereport
27
28 SERVICE_MANS = $(addsuffix .8, $(SERVICES))
29
30 CLI_MANS = \
31 $(addsuffix .1, $(CLITOOLS)) \
32 pveversion.1 \
33 pveupgrade.1 \
34 pveperf.1 \
35 pvereport.1 \
36
37 BASH_COMPLETIONS = \
38 $(addsuffix .service-bash-completion, $(SERVICES)) \
39 $(addsuffix .bash-completion, $(CLITOOLS)) \
40
41 ZSH_COMPLETIONS = \
42 $(addsuffix .service-zsh-completion, $(SERVICES)) \
43 $(addsuffix .zsh-completion, $(CLITOOLS)) \
44
45 all: $(SERVICE_MANS) $(CLI_MANS)
46
47 %.1: %.1.pod
48 rm -f $@
49 cat $<|pod2man -n $* -s 1 -r $(VERSION) -c"Proxmox Documentation" - >$@.tmp
50 mv $@.tmp $@
51
52 %.1.pod:
53 podselect $* > $@.tmp
54 mv $@.tmp $@
55
56 pve6to7.1:
57 printf ".TH PVE6TO7 1\n.SH NAME\npve6to7 \- Proxmox VE upgrade checker script for 6.4 to 7.x\n" > $@.tmp
58 printf ".SH NOTE\npve6to7 is for the previous upgrade, from Proxmox VE 6 to 7, but there's a\
59 new Proxmox VE 8 available, see the 'pve7to8' tool.\n" >> $@.tmp
60 printf ".SH SYNOPSIS\npve6to7 [--full]\n" >> $@.tmp
61 mv $@.tmp $@
62
63 pve7to8.1:
64 printf ".TH PVE7TO8 1\n.SH NAME\npve7to8 \- Proxmox VE upgrade checker script for 7.4+ to current 8.x\n" > $@.tmp
65 printf ".SH DESCRIPTION\nThis tool will help you to detect common pitfalls and misconfguration\
66 before, and during the upgrade of a Proxmox VE system\n" >> $@.tmp
67 printf "Any failure must be addressed before the upgrade, and any waring must be addressed, \
68 or at least carefully evaluated, if a false-positive is suspected\n" >> $@.tmp
69 printf ".SH SYNOPSIS\npve7to8 [--full]\n" >> $@.tmp
70 mv $@.tmp $@
71
72 pveversion.1.pod: pveversion
73 pveupgrade.1.pod: pveupgrade
74 pvereport.1.pod: pvereport
75
76 .PHONY: check
77 check: $(addsuffix .service-api-verified, $(SERVICES)) $(addsuffix .api-verified, $(CLITOOLS))
78 rm -f *.service-api-verified *.api-verified
79
80 .PHONY: install
81 install: $(SCRIPTS) $(CLI_MANS) $(SERVICE_MANS) $(BASH_COMPLETIONS) $(ZSH_COMPLETIONS)
82 install -d $(BINDIR)
83 install -m 0755 $(SCRIPTS) $(BINDIR)
84 install -d $(USRSHARE)/helpers
85 install -m 0755 pve-startall-delay $(USRSHARE)/helpers
86 install -d $(MAN1DIR)
87 install -m 0644 $(CLI_MANS) $(MAN1DIR)
88 install -d $(MAN8DIR)
89 install -m 0644 $(SERVICE_MANS) $(MAN8DIR)
90 for i in $(CLITOOLS); do install -m 0644 -D $$i.bash-completion $(BASHCOMPLDIR)/$$i; done
91 for i in $(SERVICES); do install -m 0644 -D $$i.service-bash-completion $(BASHCOMPLDIR)/$$i; done
92 for i in $(CLITOOLS); do install -m 0644 -D $$i.zsh-completion $(ZSHCOMPLDIR)/_$$i; done
93 for i in $(SERVICES); do install -m 0644 -D $$i.service-zsh-completion $(ZSHCOMPLDIR)/_$$i; done
94
95 .PHONY: clean
96 clean:
97 rm -f *.xml.tmp *.1 *.5 *.8 *{synopsis,opts}.adoc docinfo.xml *.tmp
98 rm -f *~ *.tmp $(CLI_MANS) $(SERVICE_MANS) *.1.pod *.8.pod
99 rm -f *.bash-completion *.service-bash-completion *.zsh-completion *.service-zsh-completion
100 rm -f *.api-verified *.service-api-verified