]> git.proxmox.com Git - proxmox-backup.git/blobdiff - Makefile
bump proxmox-rrd to 0.2 and proxmox-time to 2.0
[proxmox-backup.git] / Makefile
index e55335615956a6f32f2b623f19be3bc54f212605..943d38e24e5c67e24bd24991c623e651e295cd86 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ include defines.mk
 PACKAGE := proxmox-backup
 ARCH := $(DEB_BUILD_ARCH)
 
-SUBDIRS := etc www docs
+SUBDIRS := etc www docs templates
 
 # Binaries usable by users
 USR_BIN := \
@@ -17,7 +17,8 @@ USR_BIN := \
 
 # Binaries usable by admins
 USR_SBIN := \
-       proxmox-backup-manager
+       proxmox-backup-manager \
+       proxmox-backup-debug
 
 # Binaries for services:
 SERVICE_BIN := \
@@ -30,11 +31,16 @@ SERVICE_BIN := \
 RESTORE_BIN := \
        proxmox-restore-daemon
 
+SUBCRATES != cargo metadata --no-deps --format-version=1 \
+       | jq -r .workspace_members'[]' \
+       | grep "$$PWD/" \
+       | sed -e "s!.*$$PWD/!!g" -e 's/\#.*$$//g' -e 's/)$$//g'
+
 ifeq ($(BUILD_MODE), release)
 CARGO_BUILD_ARGS += --release
-COMPILEDIR := target/release
+COMPILEDIR := target/$(DEB_HOST_RUST_TYPE)/release
 else
-COMPILEDIR := target/debug
+COMPILEDIR := target/$(DEB_HOST_RUST_TYPE)/debug
 endif
 
 ifeq ($(valgrind), yes)
@@ -48,22 +54,24 @@ COMPILED_BINS := \
 
 export DEB_VERSION DEB_VERSION_UPSTREAM
 
-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
+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
 
-DEBS=${SERVER_DEB} ${SERVER_DBG_DEB} ${CLIENT_DEB} ${CLIENT_DBG_DEB} \
-     ${RESTORE_DEB} ${RESTORE_DBG_DEB}
+DEBS=$(SERVER_DEB) $(SERVER_DBG_DEB) $(CLIENT_DEB) $(CLIENT_DBG_DEB) \
+     $(RESTORE_DEB) $(RESTORE_DBG_DEB)
 
-DSC = rust-${PACKAGE}_${DEB_VERSION}.dsc
+DSC = rust-$(PACKAGE)_$(DEB_VERSION).dsc
 
 DESTDIR=
 
-all: cargo-build $(SUBDIRS)
+tests ?= --workspace
+
+all: $(SUBDIRS)
 
 .PHONY: $(SUBDIRS)
 $(SUBDIRS):
@@ -75,19 +83,21 @@ test:
        $(CARGO) test $(tests) $(CARGO_BUILD_ARGS)
 
 doc:
-       $(CARGO) doc --no-deps $(CARGO_BUILD_ARGS)
+       $(CARGO) doc --workspace --no-deps $(CARGO_BUILD_ARGS)
 
 # always re-create this dir
 .PHONY: build
 build:
        rm -rf build
-       rm -f debian/control
-       debcargo package --config debian/debcargo.toml --changelog-ready --no-overlay-write-back --directory build proxmox-backup $(shell dpkg-parsechangelog -l debian/changelog -SVersion | sed -e 's/-.*//')
-       sed -e '1,/^$$/ ! d' build/debian/control > build/debian/control.src
-       cat build/debian/control.src build/debian/control.in > build/debian/control
-       rm build/debian/control.in build/debian/control.src
-       cp build/debian/control debian/control
-       rm build/Cargo.lock
+       mkdir build
+       git rev-parse HEAD > build/.repoid
+       cp -a debian \
+         Cargo.toml src \
+         $(SUBCRATES) \
+         docs etc examples tests www zsh-completions templates \
+         defines.mk Makefile \
+         ./build/
+       rm -f build/Cargo.lock
        find build/debian -name "*.hint" -delete
        $(foreach i,$(SUBDIRS), \
            $(MAKE) -C build/$(i) clean ;)
@@ -100,42 +110,82 @@ proxmox-backup-docs: build
        lintian $(DOC_DEB)
 
 # copy the local target/ dir as a build-cache
-.PHONY: deb
-$(DEBS): deb
-deb: build
+.PHONY: deb dsc deb-nodoc
+deb-nodoc: build
        cd build; dpkg-buildpackage -b -us -uc --no-pre-clean --build-profiles=nodoc
        lintian $(DEBS)
 
-.PHONY: deb-all
-deb-all: $(DOC_DEB) $(DEBS)
+$(DEBS): deb
+deb: build
+       cd build; dpkg-buildpackage -b -us -uc
+       lintian $(DEBS) $(DOC_DEB)
 
 .PHONY: dsc
-dsc: $(DSC)
-$(DSC): build
-       cd build; dpkg-buildpackage -S -us -uc -d -nc
+dsc:
+       rm -rf $(DSC) build/
+       $(MAKE) $(DSC)
        lintian $(DSC)
 
-distclean: clean
+$(DSC): build
+       cd build; dpkg-buildpackage -S -us -uc -d
 
-clean:
+sbuild: $(DSC)
+       sbuild $<
+
+.PHONY: clean distclean deb clean
+distclean: clean
+clean: clean-deb
        $(foreach i,$(SUBDIRS), \
            $(MAKE) -C $(i) clean ;)
        $(CARGO) clean
-       rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build
-       find . -name '*~' -exec rm {} ';'
+       rm -f .do-cargo-build
+
+# allows one to avoid running cargo clean when one just wants to tidy up after a package build
+clean-deb:
+       rm -rf build/
+       rm -f *.deb *.dsc *.tar.* *.buildinfo *.build *.changes
 
 .PHONY: dinstall
-dinstall: ${SERVER_DEB} ${SERVER_DBG_DEB} ${CLIENT_DEB} ${CLIENT_DBG_DEB}
+dinstall: $(SERVER_DEB) $(SERVER_DBG_DEB) $(CLIENT_DEB) $(CLIENT_DBG_DEB)
        dpkg -i $^
 
 # make sure we build binaries before docs
-docs: cargo-build
+docs: $(COMPILEDIR)/dump-catalog-shell-cli $(COMPILEDIR)/docgen
 
 .PHONY: cargo-build
 cargo-build:
-       $(CARGO) build $(CARGO_BUILD_ARGS)
+       rm -f .do-cargo-build
+       $(MAKE) $(COMPILED_BINS)
+
+$(COMPILED_BINS) $(COMPILEDIR)/dump-catalog-shell-cli $(COMPILEDIR)/docgen: .do-cargo-build
+.do-cargo-build:
+       $(CARGO) build $(CARGO_BUILD_ARGS) \
+           --package proxmox-backup-banner \
+           --bin proxmox-backup-banner \
+           --package proxmox-backup-client \
+           --bin proxmox-backup-client \
+           --bin dump-catalog-shell-cli \
+           --bin proxmox-backup-debug \
+           --package proxmox-file-restore \
+           --bin proxmox-file-restore \
+           --package pxar-bin \
+           --bin pxar \
+           --package pbs-tape \
+           --bin pmt \
+           --bin pmtx \
+           --package proxmox-restore-daemon \
+           --bin proxmox-restore-daemon \
+           --package proxmox-backup \
+           --bin docgen \
+           --bin proxmox-backup-api \
+           --bin proxmox-backup-manager \
+           --bin proxmox-backup-proxy \
+           --bin proxmox-daily-update \
+           --bin proxmox-file-restore \
+           --bin proxmox-tape \
+           --bin sg-tape-cmd
+       touch "$@"
 
-$(COMPILED_BINS): cargo-build
 
 .PHONY: lint
 lint:
@@ -151,6 +201,7 @@ install: $(COMPILED_BINS)
        $(foreach i,$(USR_SBIN), \
            install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(SBINDIR)/ ; \
            install -m644 zsh-completions/_$(i) $(DESTDIR)$(ZSH_COMPL_DEST)/ ;)
+       install -m755 $(COMPILEDIR)/pbs2to3 $(DESTDIR)$(SBINDIR)/
        install -dm755 $(DESTDIR)$(LIBEXECDIR)/proxmox-backup
        install -dm755 $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/file-restore
        $(foreach i,$(RESTORE_BIN), \
@@ -161,12 +212,14 @@ install: $(COMPILED_BINS)
            install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/ ;)
        $(MAKE) -C www install
        $(MAKE) -C docs install
+       $(MAKE) -C templates install
 
 .PHONY: upload
-upload: ${SERVER_DEB} ${CLIENT_DEB} ${RESTORE_DEB} ${DOC_DEB}
+upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
+upload: $(SERVER_DEB) $(CLIENT_DEB) $(RESTORE_DEB) $(DOC_DEB)
        # check if working directory is clean
        git diff --exit-code --stat && git diff --exit-code --stat --staged
-       tar cf - ${SERVER_DEB} ${SERVER_DBG_DEB} ${DOC_DEB} ${CLIENT_DEB} ${CLIENT_DBG_DEB} | \
-           ssh -X repoman@repo.proxmox.com upload --product pbs --dist buster
-       tar cf - ${CLIENT_DEB} ${CLIENT_DBG_DEB} | ssh -X repoman@repo.proxmox.com upload --product "pve,pmg,pbs-client" --dist buster
-       tar cf - ${RESTORE_DEB} ${RESTORE_DBG_DEB} | ssh -X repoman@repo.proxmox.com upload --product "pve" --dist buster
+       tar cf - $(SERVER_DEB) $(SERVER_DBG_DEB) $(DOC_DEB) $(CLIENT_DEB) $(CLIENT_DBG_DEB) \
+         | 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)