]> git.proxmox.com Git - proxmox-backup.git/blame - Makefile
www: use TFA widgets from widget toolkit
[proxmox-backup.git] / Makefile
CommitLineData
da0e1e40 1include /usr/share/dpkg/default.mk
6285b251 2include defines.mk
de779814 3
e881b8a5 4PACKAGE := proxmox-backup
da0e1e40 5ARCH := $(DEB_BUILD_ARCH)
209bb433 6
bb5c7707 7SUBDIRS := etc www docs
13b77d10 8
6285b251
WB
9# Binaries usable by users
10USR_BIN := \
c9727044 11 proxmox-backup-client \
76425d84 12 proxmox-file-restore \
c9727044 13 pxar \
cc2c5c77 14 proxmox-tape \
4c209d6b
DM
15 pmtx \
16 pmt
6285b251
WB
17
18# Binaries usable by admins
b69b8af2 19USR_SBIN := \
7c72ae04
HL
20 proxmox-backup-manager \
21 proxmox-backup-debug \
6285b251
WB
22
23# Binaries for services:
24SERVICE_BIN := \
25 proxmox-backup-api \
b69b8af2 26 proxmox-backup-banner \
bc00289b 27 proxmox-backup-proxy \
b27c3282 28 proxmox-daily-update
6285b251 29
dd9cef56
SR
30# Single file restore daemon
31RESTORE_BIN := \
32 proxmox-restore-daemon
33
01fd2447 34SUBCRATES := \
86fb3877 35 pbs-api-types \
d420962f 36 pbs-buildcfg \
2b7f8dd5 37 pbs-client \
21211748 38 pbs-config \
f323e906 39 pbs-datastore \
eb5e0ae6 40 pbs-fuse-loop \
770a36e5 41 pbs-runtime \
037f6b6d 42 proxmox-rest-server \
09340f28 43 proxmox-rrd \
84af82e8 44 proxmox-systemd \
048b43af 45 pbs-tape \
b9c5cd82 46 pbs-tools \
58a3fae7 47 proxmox-backup-banner \
e351ac78 48 proxmox-backup-client \
6c76aa43 49 proxmox-file-restore \
6523588c 50 proxmox-restore-daemon \
58a3fae7 51 pxar-bin
01fd2447 52
13b77d10
WB
53ifeq ($(BUILD_MODE), release)
54CARGO_BUILD_ARGS += --release
6285b251 55COMPILEDIR := target/release
13b77d10
WB
56else
57COMPILEDIR := target/debug
58endif
59
6f0069ae
WB
60ifeq ($(valgrind), yes)
61CARGO_BUILD_ARGS += --features valgrind
62endif
63
da0e1e40
FG
64CARGO ?= cargo
65
6285b251 66COMPILED_BINS := \
dd9cef56 67 $(addprefix $(COMPILEDIR)/,$(USR_BIN) $(USR_SBIN) $(SERVICE_BIN) $(RESTORE_BIN))
6285b251 68
1f6a4f58
TL
69export DEB_VERSION DEB_VERSION_UPSTREAM
70
10426c17 71SERVER_DEB=${PACKAGE}-server_${DEB_VERSION}_${ARCH}.deb
3ec6e249 72SERVER_DBG_DEB=${PACKAGE}-server-dbgsym_${DEB_VERSION}_${ARCH}.deb
10426c17 73CLIENT_DEB=${PACKAGE}-client_${DEB_VERSION}_${ARCH}.deb
3ec6e249 74CLIENT_DBG_DEB=${PACKAGE}-client-dbgsym_${DEB_VERSION}_${ARCH}.deb
a5322f3c
TL
75RESTORE_DEB=proxmox-backup-file-restore_${DEB_VERSION}_${ARCH}.deb
76RESTORE_DBG_DEB=proxmox-backup-file-restore-dbgsym_${DEB_VERSION}_${ARCH}.deb
da0e1e40 77DOC_DEB=${PACKAGE}-docs_${DEB_VERSION}_all.deb
36d74cd6 78
76425d84 79DEBS=${SERVER_DEB} ${SERVER_DBG_DEB} ${CLIENT_DEB} ${CLIENT_DBG_DEB} \
df12c9ec 80 ${RESTORE_DEB} ${RESTORE_DBG_DEB} ${DEBUG_DEB} ${DEBUG_DBG_DEB}
10426c17 81
e881b8a5 82DSC = rust-${PACKAGE}_${DEB_VERSION}.dsc
209bb433
DM
83
84DESTDIR=
de779814 85
314d360f
WB
86tests ?= --workspace
87
424d2d68 88all: $(SUBDIRS)
13b77d10
WB
89
90.PHONY: $(SUBDIRS)
91$(SUBDIRS):
92 $(MAKE) -C $@
de779814 93
cd3b9a06 94test:
cc119edb 95 #cargo test test_broadcast_future
3dceb9b3 96 #cargo test $(CARGO_BUILD_ARGS)
c47a900c 97 $(CARGO) test $(tests) $(CARGO_BUILD_ARGS)
f7dd683b 98
cd3b9a06 99doc:
314d360f 100 $(CARGO) doc --workspace --no-deps $(CARGO_BUILD_ARGS)
d78345bc 101
13b77d10
WB
102# always re-create this dir
103.PHONY: build
104build:
f9c0a941
WB
105 @echo "Setting pkg-buildcfg version to: $(DEB_VERSION_UPSTREAM)"
106 sed -i -e 's/^version =.*$$/version = "$(DEB_VERSION_UPSTREAM)"/' \
107 pbs-buildcfg/Cargo.toml
de779814 108 rm -rf build
01fd2447
WB
109 mkdir build
110 cp -a debian \
a6eac535 111 Cargo.toml src \
01fd2447
WB
112 $(SUBCRATES) \
113 docs etc examples tests www zsh-completions \
114 defines.mk Makefile \
115 ./build/
116 rm -f build/Cargo.lock
e881b8a5 117 find build/debian -name "*.hint" -delete
b369f720
WB
118 $(foreach i,$(SUBDIRS), \
119 $(MAKE) -C build/$(i) clean ;)
de779814 120
e881b8a5 121
720776b8 122.PHONY: proxmox-backup-docs
37e53b4c
TL
123$(DOC_DEB) $(DEBS): proxmox-backup-docs
124proxmox-backup-docs: build
720776b8
DM
125 cd build; dpkg-buildpackage -b -us -uc --no-pre-clean
126 lintian $(DOC_DEB)
127
da0e1e40 128# copy the local target/ dir as a build-cache
13b77d10 129.PHONY: deb
37e53b4c
TL
130$(DEBS): deb
131deb: build
720776b8 132 cd build; dpkg-buildpackage -b -us -uc --no-pre-clean --build-profiles=nodoc
36d74cd6 133 lintian $(DEBS)
18fad344 134
37e53b4c 135.PHONY: deb-all
a2c73c78
TL
136deb-all: build
137 cd build; dpkg-buildpackage -b -us -uc --no-pre-clean
138 lintian $(DEBS) $(DOC_DEB)
37e53b4c 139
18fad344
WB
140.PHONY: dsc
141dsc: $(DSC)
142$(DSC): build
143 cd build; dpkg-buildpackage -S -us -uc -d -nc
144 lintian $(DSC)
de779814 145
1900d781 146.PHONY: clean distclean deb clean
209bb433 147distclean: clean
6b85671d 148clean: clean-deb
b369f720
WB
149 $(foreach i,$(SUBDIRS), \
150 $(MAKE) -C $(i) clean ;)
da0e1e40 151 $(CARGO) clean
424d2d68 152 rm -f .do-cargo-build
d3cb69c4
DM
153 find . -name '*~' -exec rm {} ';'
154
1900d781
TL
155# allows one to avoid running cargo clean when one just wants to tidy up after a packgae build
156clean-deb:
157 rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build/
158
209bb433 159.PHONY: dinstall
df12c9ec
WB
160dinstall: ${SERVER_DEB} ${SERVER_DBG_DEB} ${CLIENT_DEB} ${CLIENT_DBG_DEB} \
161 ${DEBUG_DEB} ${DEBUG_DBG_DEB}
c287b287 162 dpkg -i $^
6285b251 163
bb5c7707 164# make sure we build binaries before docs
424d2d68 165docs: $(COMPILEDIR)/dump-catalog-shell-cli $(COMPILEDIR)/docgen
bb5c7707 166
13b77d10 167.PHONY: cargo-build
cd3b9a06 168cargo-build:
424d2d68
TL
169 rm -f .do-cargo-build
170 $(MAKE) $(COMPILED_BINS)
171
172$(COMPILED_BINS) $(COMPILEDIR)/dump-catalog-shell-cli $(COMPILEDIR)/docgen: .do-cargo-build
173.do-cargo-build:
e678a50e 174 $(CARGO) build $(CARGO_BUILD_ARGS) \
b9c5cd82
WB
175 --package proxmox-backup-banner \
176 --bin proxmox-backup-banner \
e351ac78
WB
177 --package proxmox-backup-client \
178 --bin proxmox-backup-client \
a844fa0b 179 --bin dump-catalog-shell-cli \
e5f9b7f7 180 --bin proxmox-backup-debug \
6c76aa43
WB
181 --package proxmox-file-restore \
182 --bin proxmox-file-restore \
58a3fae7
WB
183 --package pxar-bin \
184 --bin pxar \
048b43af
DM
185 --package pbs-tape \
186 --bin pmt \
187 --bin pmtx \
6523588c
DM
188 --package proxmox-restore-daemon \
189 --bin proxmox-restore-daemon \
b9c5cd82 190 --package proxmox-backup \
4d4f94de
TL
191 --bin docgen \
192 --bin proxmox-backup-api \
193 --bin proxmox-backup-manager \
194 --bin proxmox-backup-proxy \
991be99c
TL
195 --bin proxmox-daily-update \
196 --bin proxmox-file-restore \
991be99c 197 --bin proxmox-tape \
991be99c 198 --bin sg-tape-cmd
424d2d68 199 touch "$@"
6285b251 200
6285b251 201
d1596102
WB
202.PHONY: lint
203lint:
204 cargo clippy -- -A clippy::all -D clippy::correctness
205
6285b251
WB
206install: $(COMPILED_BINS)
207 install -dm755 $(DESTDIR)$(BINDIR)
6dea60aa 208 install -dm755 $(DESTDIR)$(ZSH_COMPL_DEST)
6285b251 209 $(foreach i,$(USR_BIN), \
6dea60aa
CE
210 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(BINDIR)/ ; \
211 install -m644 zsh-completions/_$(i) $(DESTDIR)$(ZSH_COMPL_DEST)/ ;)
6285b251
WB
212 install -dm755 $(DESTDIR)$(SBINDIR)
213 $(foreach i,$(USR_SBIN), \
6dea60aa
CE
214 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(SBINDIR)/ ; \
215 install -m644 zsh-completions/_$(i) $(DESTDIR)$(ZSH_COMPL_DEST)/ ;)
304db5da 216 install -dm755 $(DESTDIR)$(LIBEXECDIR)/proxmox-backup
dd9cef56
SR
217 install -dm755 $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/file-restore
218 $(foreach i,$(RESTORE_BIN), \
219 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/file-restore/ ;)
b27c3282 220 # install sg-tape-cmd as setuid binary
df3a74d7 221 install -m4755 -o root -g root $(COMPILEDIR)/sg-tape-cmd $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/sg-tape-cmd
6285b251 222 $(foreach i,$(SERVICE_BIN), \
304db5da 223 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/ ;)
6285b251 224 $(MAKE) -C www install
bb5c7707 225 $(MAKE) -C docs install
b29292a8 226ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
7190cbf2 227 $(MAKE) test # HACK, only test now to avoid clobbering build files with wrong config
b29292a8 228endif
729e38f4
DM
229
230.PHONY: upload
df12c9ec 231upload: ${SERVER_DEB} ${CLIENT_DEB} ${RESTORE_DEB} ${DOC_DEB} ${DEBUG_DEB}
729e38f4
DM
232 # check if working directory is clean
233 git diff --exit-code --stat && git diff --exit-code --stat --staged
df12c9ec
WB
234 tar cf - ${SERVER_DEB} ${SERVER_DBG_DEB} ${DOC_DEB} ${CLIENT_DEB} \
235 ${CLIENT_DBG_DEB} ${DEBUG_DEB} ${DEBUG_DBG_DEB} \
236 | ssh -X repoman@repo.proxmox.com upload --product pbs --dist bullseye
d9d81741
TL
237 tar cf - ${CLIENT_DEB} ${CLIENT_DBG_DEB} | ssh -X repoman@repo.proxmox.com upload --product "pve,pmg,pbs-client" --dist bullseye
238 tar cf - ${RESTORE_DEB} ${RESTORE_DBG_DEB} | ssh -X repoman@repo.proxmox.com upload --product "pve" --dist bullseye