]> git.proxmox.com Git - proxmox-backup.git/blob - Makefile
build: inject repoid into build environment
[proxmox-backup.git] / Makefile
1 include /usr/share/dpkg/default.mk
2 include defines.mk
3
4 PACKAGE := proxmox-backup
5 ARCH := $(DEB_BUILD_ARCH)
6
7 SUBDIRS := etc www docs
8
9 # Binaries usable by users
10 USR_BIN := \
11 proxmox-backup-client \
12 proxmox-file-restore \
13 pxar \
14 proxmox-tape \
15 pmtx \
16 pmt
17
18 # Binaries usable by admins
19 USR_SBIN := \
20 proxmox-backup-manager \
21 proxmox-backup-debug \
22
23 # Binaries for services:
24 SERVICE_BIN := \
25 proxmox-backup-api \
26 proxmox-backup-banner \
27 proxmox-backup-proxy \
28 proxmox-daily-update
29
30 # Single file restore daemon
31 RESTORE_BIN := \
32 proxmox-restore-daemon
33
34 SUBCRATES != cargo metadata --no-deps --format-version=1 \
35 | jq -r .workspace_members'[]' \
36 | awk '!/^proxmox-backup\s/ { printf "%s ", $$1 }'
37
38 ifeq ($(BUILD_MODE), release)
39 CARGO_BUILD_ARGS += --release
40 COMPILEDIR := target/release
41 else
42 COMPILEDIR := target/debug
43 endif
44
45 ifeq ($(valgrind), yes)
46 CARGO_BUILD_ARGS += --features valgrind
47 endif
48
49 CARGO ?= cargo
50
51 COMPILED_BINS := \
52 $(addprefix $(COMPILEDIR)/,$(USR_BIN) $(USR_SBIN) $(SERVICE_BIN) $(RESTORE_BIN))
53
54 export DEB_VERSION DEB_VERSION_UPSTREAM
55
56 SERVER_DEB=${PACKAGE}-server_${DEB_VERSION}_${ARCH}.deb
57 SERVER_DBG_DEB=${PACKAGE}-server-dbgsym_${DEB_VERSION}_${ARCH}.deb
58 CLIENT_DEB=${PACKAGE}-client_${DEB_VERSION}_${ARCH}.deb
59 CLIENT_DBG_DEB=${PACKAGE}-client-dbgsym_${DEB_VERSION}_${ARCH}.deb
60 RESTORE_DEB=proxmox-backup-file-restore_${DEB_VERSION}_${ARCH}.deb
61 RESTORE_DBG_DEB=proxmox-backup-file-restore-dbgsym_${DEB_VERSION}_${ARCH}.deb
62 DOC_DEB=${PACKAGE}-docs_${DEB_VERSION}_all.deb
63
64 DEBS=${SERVER_DEB} ${SERVER_DBG_DEB} ${CLIENT_DEB} ${CLIENT_DBG_DEB} \
65 ${RESTORE_DEB} ${RESTORE_DBG_DEB} ${DEBUG_DEB} ${DEBUG_DBG_DEB}
66
67 DSC = rust-${PACKAGE}_${DEB_VERSION}.dsc
68
69 DESTDIR=
70
71 tests ?= --workspace
72
73 all: $(SUBDIRS)
74
75 .PHONY: $(SUBDIRS)
76 $(SUBDIRS):
77 $(MAKE) -C $@
78
79 test:
80 #cargo test test_broadcast_future
81 #cargo test $(CARGO_BUILD_ARGS)
82 $(CARGO) test $(tests) $(CARGO_BUILD_ARGS)
83
84 doc:
85 $(CARGO) doc --workspace --no-deps $(CARGO_BUILD_ARGS)
86
87 # always re-create this dir
88 .PHONY: build
89 build:
90 rm -rf build
91 mkdir build
92 git rev-parse HEAD > build/.repoid
93 cp -a debian \
94 Cargo.toml src \
95 $(SUBCRATES) \
96 docs etc examples tests www zsh-completions \
97 defines.mk Makefile \
98 ./build/
99 rm -f build/Cargo.lock
100 find build/debian -name "*.hint" -delete
101 $(foreach i,$(SUBDIRS), \
102 $(MAKE) -C build/$(i) clean ;)
103
104
105 .PHONY: proxmox-backup-docs
106 $(DOC_DEB) $(DEBS): proxmox-backup-docs
107 proxmox-backup-docs: build
108 cd build; dpkg-buildpackage -b -us -uc --no-pre-clean
109 lintian $(DOC_DEB)
110
111 # copy the local target/ dir as a build-cache
112 .PHONY: deb dsc deb-nodoc
113 deb-nodoc: build
114 cd build; dpkg-buildpackage -b -us -uc --no-pre-clean --build-profiles=nodoc
115 lintian $(DEBS)
116
117 $(DEBS): deb
118 deb: build
119 cd build; dpkg-buildpackage -b -us -uc
120 lintian $(DEBS) $(DOC_DEB)
121
122 .PHONY: dsc
123 dsc: $(DSC)
124 $(DSC): build
125 cd build; dpkg-buildpackage -S -us -uc -d
126 lintian $(DSC)
127
128 .PHONY: clean distclean deb clean
129 distclean: clean
130 clean: clean-deb
131 $(foreach i,$(SUBDIRS), \
132 $(MAKE) -C $(i) clean ;)
133 $(CARGO) clean
134 rm -f .do-cargo-build
135 find . -name '*~' -exec rm {} ';'
136
137 # allows one to avoid running cargo clean when one just wants to tidy up after a packgae build
138 clean-deb:
139 rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build/
140
141 .PHONY: dinstall
142 dinstall: ${SERVER_DEB} ${SERVER_DBG_DEB} ${CLIENT_DEB} ${CLIENT_DBG_DEB} \
143 ${DEBUG_DEB} ${DEBUG_DBG_DEB}
144 dpkg -i $^
145
146 # make sure we build binaries before docs
147 docs: $(COMPILEDIR)/dump-catalog-shell-cli $(COMPILEDIR)/docgen
148
149 .PHONY: cargo-build
150 cargo-build:
151 rm -f .do-cargo-build
152 $(MAKE) $(COMPILED_BINS)
153
154 $(COMPILED_BINS) $(COMPILEDIR)/dump-catalog-shell-cli $(COMPILEDIR)/docgen: .do-cargo-build
155 .do-cargo-build:
156 $(CARGO) build $(CARGO_BUILD_ARGS) \
157 --package proxmox-backup-banner \
158 --bin proxmox-backup-banner \
159 --package proxmox-backup-client \
160 --bin proxmox-backup-client \
161 --bin dump-catalog-shell-cli \
162 --bin proxmox-backup-debug \
163 --package proxmox-file-restore \
164 --bin proxmox-file-restore \
165 --package pxar-bin \
166 --bin pxar \
167 --package pbs-tape \
168 --bin pmt \
169 --bin pmtx \
170 --package proxmox-restore-daemon \
171 --bin proxmox-restore-daemon \
172 --package proxmox-backup \
173 --bin docgen \
174 --bin proxmox-backup-api \
175 --bin proxmox-backup-manager \
176 --bin proxmox-backup-proxy \
177 --bin proxmox-daily-update \
178 --bin proxmox-file-restore \
179 --bin proxmox-tape \
180 --bin sg-tape-cmd
181 touch "$@"
182
183
184 .PHONY: lint
185 lint:
186 cargo clippy -- -A clippy::all -D clippy::correctness
187
188 install: $(COMPILED_BINS)
189 install -dm755 $(DESTDIR)$(BINDIR)
190 install -dm755 $(DESTDIR)$(ZSH_COMPL_DEST)
191 $(foreach i,$(USR_BIN), \
192 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(BINDIR)/ ; \
193 install -m644 zsh-completions/_$(i) $(DESTDIR)$(ZSH_COMPL_DEST)/ ;)
194 install -dm755 $(DESTDIR)$(SBINDIR)
195 $(foreach i,$(USR_SBIN), \
196 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(SBINDIR)/ ; \
197 install -m644 zsh-completions/_$(i) $(DESTDIR)$(ZSH_COMPL_DEST)/ ;)
198 install -dm755 $(DESTDIR)$(LIBEXECDIR)/proxmox-backup
199 install -dm755 $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/file-restore
200 $(foreach i,$(RESTORE_BIN), \
201 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/file-restore/ ;)
202 # install sg-tape-cmd as setuid binary
203 install -m4755 -o root -g root $(COMPILEDIR)/sg-tape-cmd $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/sg-tape-cmd
204 $(foreach i,$(SERVICE_BIN), \
205 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/ ;)
206 $(MAKE) -C www install
207 $(MAKE) -C docs install
208
209 .PHONY: upload
210 upload: ${SERVER_DEB} ${CLIENT_DEB} ${RESTORE_DEB} ${DOC_DEB} ${DEBUG_DEB}
211 # check if working directory is clean
212 git diff --exit-code --stat && git diff --exit-code --stat --staged
213 tar cf - ${SERVER_DEB} ${SERVER_DBG_DEB} ${DOC_DEB} ${CLIENT_DEB} \
214 ${CLIENT_DBG_DEB} ${DEBUG_DEB} ${DEBUG_DBG_DEB} \
215 | ssh -X repoman@repo.proxmox.com upload --product pbs --dist bullseye
216 tar cf - ${CLIENT_DEB} ${CLIENT_DBG_DEB} | ssh -X repoman@repo.proxmox.com upload --product "pve,pmg,pbs-client" --dist bullseye
217 tar cf - ${RESTORE_DEB} ${RESTORE_DBG_DEB} | ssh -X repoman@repo.proxmox.com upload --product "pve" --dist bullseye