2019-12-20 09:34:14 +01:00
i n c l u d e / u s r / s h a r e / d p k g / d e f a u l t . m k
2019-01-31 13:43:09 +01:00
i n c l u d e d e f i n e s . m k
2018-11-30 13:39:40 +01:00
2020-01-15 10:29:57 +01:00
PACKAGE := proxmox-backup
2019-12-20 09:34:14 +01:00
ARCH := $( DEB_BUILD_ARCH)
2018-12-01 13:44:13 +01:00
2024-04-23 13:51:56 +02:00
SUBDIRS := etc www docs templates
2019-01-31 15:42:47 +01:00
2019-01-31 13:43:09 +01:00
# Binaries usable by users
USR_BIN := \
2021-01-27 11:31:26 +01:00
proxmox-backup-client \
2021-03-31 12:21:48 +02:00
proxmox-file-restore \
2021-01-27 11:31:26 +01:00
pxar \
2021-03-03 08:30:22 +01:00
proxmox-tape \
2021-02-05 11:12:52 +01:00
pmtx \
pmt
2019-01-31 13:43:09 +01:00
# Binaries usable by admins
2020-02-10 14:43:26 +01:00
USR_SBIN := \
2021-08-30 10:53:37 +02:00
proxmox-backup-manager \
2023-07-14 12:10:24 +02:00
proxmox-backup-debug
2019-01-31 13:43:09 +01:00
# Binaries for services:
SERVICE_BIN := \
proxmox-backup-api \
2020-02-10 14:43:26 +01:00
proxmox-backup-banner \
2020-10-31 21:27:06 +01:00
proxmox-backup-proxy \
2020-12-28 11:10:25 +01:00
proxmox-daily-update
2019-01-31 13:43:09 +01:00
2021-03-31 12:21:52 +02:00
# Single file restore daemon
RESTORE_BIN := \
proxmox-restore-daemon
2023-05-21 13:32:43 +02:00
SUBCRATES != cargo metadata --no-deps --format-version= 1 \
| jq -r .workspace_members'[]' \
2024-06-19 17:47:37 +02:00
| grep " $$ PWD/ " \
| sed -e " s!.* $$ PWD/!!g " -e 's/\#.*$$//g' -e 's/)$$//g'
2021-07-06 14:45:55 +02:00
2019-01-31 15:42:47 +01:00
i f e q ( $( BUILD_MODE ) , r e l e a s e )
CARGO_BUILD_ARGS += --release
2024-06-19 16:38:05 +02:00
COMPILEDIR := target/$( DEB_HOST_RUST_TYPE) /release
2019-01-31 15:42:47 +01:00
e l s e
2024-06-19 16:38:05 +02:00
COMPILEDIR := target/$( DEB_HOST_RUST_TYPE) /debug
2019-01-31 15:42:47 +01:00
e n d i f
2019-05-22 15:41:20 +02:00
i f e q ( $( valgrind ) , y e s )
CARGO_BUILD_ARGS += --features valgrind
e n d i f
2019-12-20 09:34:14 +01:00
CARGO ?= cargo
2019-01-31 13:43:09 +01:00
COMPILED_BINS := \
2021-03-31 12:21:52 +02:00
$( addprefix $( COMPILEDIR) /,$( USR_BIN) $( USR_SBIN) $( SERVICE_BIN) $( RESTORE_BIN) )
2019-01-31 13:43:09 +01:00
2020-07-04 17:51:56 +02:00
export DEB_VERSION DEB_VERSION_UPSTREAM
2023-05-21 13:57:47 +02:00
SERVER_DEB = $( PACKAGE) -server_$( DEB_VERSION) _$( ARCH) .deb
SERVER_DBG_DEB = $( PACKAGE) -server-dbgsym_$( DEB_VERSION) _$( ARCH) .deb
CLIENT_DEB = $( PACKAGE) -client_$( DEB_VERSION) _$( ARCH) .deb
CLIENT_DBG_DEB = $( PACKAGE) -client-dbgsym_$( DEB_VERSION) _$( ARCH) .deb
RESTORE_DEB = proxmox-backup-file-restore_$( DEB_VERSION) _$( ARCH) .deb
RESTORE_DBG_DEB = proxmox-backup-file-restore-dbgsym_$( DEB_VERSION) _$( ARCH) .deb
DOC_DEB = $( PACKAGE) -docs_$( DEB_VERSION) _all.deb
2019-11-11 08:35:33 +01:00
2023-05-21 13:57:47 +02:00
DEBS = $( SERVER_DEB) $( SERVER_DBG_DEB) $( CLIENT_DEB) $( CLIENT_DBG_DEB) \
2023-10-03 11:18:25 +02:00
$( RESTORE_DEB) $( RESTORE_DBG_DEB)
2020-03-03 10:56:07 +01:00
2023-05-21 13:57:47 +02:00
DSC = rust-$( PACKAGE) _$( DEB_VERSION) .dsc
2018-12-01 13:44:13 +01:00
DESTDIR =
2018-11-30 13:39:40 +01:00
2021-07-07 12:15:21 +02:00
tests ?= --workspace
2021-07-12 13:15:17 +02:00
all : $( SUBDIRS )
2019-01-31 15:42:47 +01:00
.PHONY : $( SUBDIRS )
$(SUBDIRS) :
$( MAKE) -C $@
2018-11-30 13:39:40 +01:00
2019-03-07 11:44:48 +01:00
test :
2019-05-21 17:54:49 +02:00
#cargo test test_broadcast_future
2019-04-27 10:56:49 +02:00
#cargo test $(CARGO_BUILD_ARGS)
2020-07-20 10:22:13 +02:00
$( CARGO) test $( tests) $( CARGO_BUILD_ARGS)
2018-12-19 13:54:22 +01:00
2019-03-07 11:44:48 +01:00
doc :
2021-07-07 12:15:21 +02:00
$( CARGO) doc --workspace --no-deps $( CARGO_BUILD_ARGS)
2019-02-12 13:27:11 +01:00
2019-01-31 15:42:47 +01:00
# always re-create this dir
.PHONY : build
build :
2018-11-30 13:39:40 +01:00
rm -rf build
2021-07-06 14:45:55 +02:00
mkdir build
2023-01-04 15:13:09 +01:00
git rev-parse HEAD > build/.repoid
2021-07-06 14:45:55 +02:00
cp -a debian \
2021-07-19 15:54:53 +02:00
Cargo.toml src \
2021-07-06 14:45:55 +02:00
$( SUBCRATES) \
2024-04-23 13:51:56 +02:00
docs etc examples tests www zsh-completions templates \
2021-07-06 14:45:55 +02:00
defines.mk Makefile \
./build/
rm -f build/Cargo.lock
2020-01-15 10:29:57 +01:00
find build/debian -name "*.hint" -delete
2019-02-01 10:08:36 +00:00
$( foreach i,$( SUBDIRS) , \
$( MAKE) -C build/$( i) clean ; )
2018-11-30 13:39:40 +01:00
2020-01-15 10:29:57 +01:00
2019-12-13 14:14:28 +01:00
.PHONY : proxmox -backup -docs
2020-07-14 12:31:17 +02:00
$(DOC_DEB) $(DEBS) : proxmox -backup -docs
proxmox-backup-docs : build
2019-12-13 14:14:28 +01:00
cd build; dpkg-buildpackage -b -us -uc --no-pre-clean
lintian $( DOC_DEB)
2019-12-20 09:34:14 +01:00
# copy the local target/ dir as a build-cache
2023-05-21 13:35:55 +02:00
.PHONY : deb dsc deb -nodoc
deb-nodoc : build
2019-12-13 14:14:28 +01:00
cd build; dpkg-buildpackage -b -us -uc --no-pre-clean --build-profiles= nodoc
2019-11-11 08:35:33 +01:00
lintian $( DEBS)
2019-02-01 10:07:22 +01:00
2023-05-21 13:35:55 +02:00
$(DEBS) : deb
deb : build
2023-05-21 13:42:19 +02:00
cd build; dpkg-buildpackage -b -us -uc
2021-06-28 19:07:10 +02:00
lintian $( DEBS) $( DOC_DEB)
2020-07-14 12:31:17 +02:00
2019-02-01 10:07:22 +01:00
.PHONY : dsc
2023-05-27 17:03:32 +02:00
dsc :
rm -rf $( DSC) build/
$( MAKE) $( DSC)
lintian $( DSC)
2019-02-01 10:07:22 +01:00
$(DSC) : build
2023-05-21 13:42:19 +02:00
cd build; dpkg-buildpackage -S -us -uc -d
2023-05-27 17:03:32 +02:00
sbuild : $( DSC )
sbuild $<
2018-11-30 13:39:40 +01:00
2021-07-11 13:25:39 +02:00
.PHONY : clean distclean deb clean
2018-12-01 13:44:13 +01:00
distclean : clean
2021-07-12 08:08:25 +02:00
clean : clean -deb
2019-02-01 10:08:36 +00:00
$( foreach i,$( SUBDIRS) , \
$( MAKE) -C $( i) clean ; )
2019-12-20 09:34:14 +01:00
$( CARGO) clean
2021-07-12 13:15:17 +02:00
rm -f .do-cargo-build
2018-11-30 17:09:50 +01:00
2023-05-21 13:56:43 +02:00
# allows one to avoid running cargo clean when one just wants to tidy up after a package build
2021-07-11 13:25:39 +02:00
clean-deb :
2023-05-21 13:56:43 +02:00
rm -rf build/
rm -f *.deb *.dsc *.tar.* *.buildinfo *.build *.changes
2021-07-11 13:25:39 +02:00
2018-12-01 13:44:13 +01:00
.PHONY : dinstall
2023-10-03 11:18:25 +02:00
dinstall : $( SERVER_DEB ) $( SERVER_DBG_DEB ) $( CLIENT_DEB ) $( CLIENT_DBG_DEB )
2021-04-09 10:08:55 +02:00
dpkg -i $^
2019-01-31 13:43:09 +01:00
2019-02-24 09:51:10 +01:00
# make sure we build binaries before docs
2021-07-12 13:15:17 +02:00
docs : $( COMPILEDIR ) /dump -catalog -shell -cli $( COMPILEDIR ) /docgen
2019-02-24 09:51:10 +01:00
2019-01-31 15:42:47 +01:00
.PHONY : cargo -build
2019-03-07 11:44:48 +01:00
cargo-build :
2021-07-12 13:15:17 +02:00
rm -f .do-cargo-build
$( MAKE) $( COMPILED_BINS)
$(COMPILED_BINS) $(COMPILEDIR)/dump-catalog-shell-cli $(COMPILEDIR)/docgen : .do -cargo -build
.do-cargo-build :
2021-09-21 07:58:53 +02:00
$( CARGO) build $( CARGO_BUILD_ARGS) \
2021-07-12 10:45:09 +02:00
--package proxmox-backup-banner \
--bin proxmox-backup-banner \
2021-08-26 11:00:37 +02:00
--package proxmox-backup-client \
--bin proxmox-backup-client \
2021-09-22 16:25:07 +02:00
--bin dump-catalog-shell-cli \
2021-08-31 14:45:48 +02:00
--bin proxmox-backup-debug \
2021-09-01 12:21:51 +02:00
--package proxmox-file-restore \
--bin proxmox-file-restore \
2021-07-19 15:53:43 +02:00
--package pxar-bin \
--bin pxar \
2021-09-13 11:54:24 +02:00
--package pbs-tape \
--bin pmt \
--bin pmtx \
2021-09-21 07:58:52 +02:00
--package proxmox-restore-daemon \
--bin proxmox-restore-daemon \
2021-07-12 10:45:09 +02:00
--package proxmox-backup \
2021-09-22 16:27:37 +02:00
--bin docgen \
--bin proxmox-backup-api \
--bin proxmox-backup-manager \
--bin proxmox-backup-proxy \
2021-07-12 06:16:28 +02:00
--bin proxmox-daily-update \
--bin proxmox-file-restore \
--bin proxmox-tape \
--bin sg-tape-cmd
2021-07-12 13:15:17 +02:00
touch " $@ "
2019-01-31 13:43:09 +01:00
2019-09-11 13:59:56 +02:00
.PHONY : lint
lint :
cargo clippy -- -A clippy::all -D clippy::correctness
2019-01-31 13:43:09 +01:00
install : $( COMPILED_BINS )
install -dm755 $( DESTDIR) $( BINDIR)
2020-02-25 13:56:39 +01:00
install -dm755 $( DESTDIR) $( ZSH_COMPL_DEST)
2019-01-31 13:43:09 +01:00
$( foreach i,$( USR_BIN) , \
2020-02-25 13:56:39 +01:00
install -m755 $( COMPILEDIR) /$( i) $( DESTDIR) $( BINDIR) / ; \
install -m644 zsh-completions/_$( i) $( DESTDIR) $( ZSH_COMPL_DEST) / ; )
2019-01-31 13:43:09 +01:00
install -dm755 $( DESTDIR) $( SBINDIR)
$( foreach i,$( USR_SBIN) , \
2020-02-25 13:56:39 +01:00
install -m755 $( COMPILEDIR) /$( i) $( DESTDIR) $( SBINDIR) / ; \
install -m644 zsh-completions/_$( i) $( DESTDIR) $( ZSH_COMPL_DEST) / ; )
2023-07-14 12:10:24 +02:00
install -m755 $( COMPILEDIR) /pbs2to3 $( DESTDIR) $( SBINDIR) /
2019-02-01 10:05:14 +01:00
install -dm755 $( DESTDIR) $( LIBEXECDIR) /proxmox-backup
2021-03-31 12:21:52 +02:00
install -dm755 $( DESTDIR) $( LIBEXECDIR) /proxmox-backup/file-restore
$( foreach i,$( RESTORE_BIN) , \
install -m755 $( COMPILEDIR) /$( i) $( DESTDIR) $( LIBEXECDIR) /proxmox-backup/file-restore/ ; )
2020-12-28 11:10:25 +01:00
# install sg-tape-cmd as setuid binary
2020-12-28 13:22:17 +01:00
install -m4755 -o root -g root $( COMPILEDIR) /sg-tape-cmd $( DESTDIR) $( LIBEXECDIR) /proxmox-backup/sg-tape-cmd
2019-01-31 13:43:09 +01:00
$( foreach i,$( SERVICE_BIN) , \
2019-02-01 10:05:14 +01:00
install -m755 $( COMPILEDIR) /$( i) $( DESTDIR) $( LIBEXECDIR) /proxmox-backup/ ; )
2019-01-31 13:43:09 +01:00
$( MAKE) -C www install
2019-02-24 09:51:10 +01:00
$( MAKE) -C docs install
2024-04-23 13:51:56 +02:00
$( MAKE) -C templates install
2019-12-13 10:35:43 +01:00
.PHONY : upload
2023-05-21 15:27:55 +02:00
upload : UPLOAD_DIST ?= $( DEB_DISTRIBUTION )
2023-10-03 11:18:25 +02:00
upload : $( SERVER_DEB ) $( CLIENT_DEB ) $( RESTORE_DEB ) $( DOC_DEB )
2019-12-13 10:35:43 +01:00
# check if working directory is clean
git diff --exit-code --stat && git diff --exit-code --stat --staged
2023-10-03 11:18:25 +02:00
tar cf - $( SERVER_DEB) $( SERVER_DBG_DEB) $( DOC_DEB) $( CLIENT_DEB) $( CLIENT_DBG_DEB) \
2023-05-21 15:27:55 +02:00
| ssh -X repoman@repo.proxmox.com upload --product pbs --dist $( UPLOAD_DIST)
tar cf - $( CLIENT_DEB) $( CLIENT_DBG_DEB) | ssh -X repoman@repo.proxmox.com upload --product "pve,pmg,pbs-client" --dist $( UPLOAD_DIST)
tar cf - $( RESTORE_DEB) $( RESTORE_DBG_DEB) | ssh -X repoman@repo.proxmox.com upload --product "pve" --dist $( UPLOAD_DIST)