]> git.proxmox.com Git - proxmox-backup.git/blobdiff - Makefile
add README.rst
[proxmox-backup.git] / Makefile
index 8218448b146738dcdd5a8d0742db80675db64894..93fb19ab92090b78b089117eff895fe807192650 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,15 @@
+include /usr/share/dpkg/default.mk
 include defines.mk
 
-ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
-GITVERSION:=$(shell git rev-parse HEAD)
+PACKAGE := $(DEB_SOURCE)
+ARCH := $(DEB_BUILD_ARCH)
 
-SUBDIRS := etc www
+SUBDIRS := etc www docs
 
 # Binaries usable by users
 USR_BIN := \
        proxmox-backup-client \
-       catar
+       pxar
 
 # Binaries usable by admins
 USR_SBIN := proxmox-backup-manager
@@ -25,18 +26,20 @@ else
 COMPILEDIR := target/debug
 endif
 
+ifeq ($(valgrind), yes)
+CARGO_BUILD_ARGS += --features valgrind
+endif
+
+CARGO ?= cargo
+
 COMPILED_BINS := \
        $(addprefix $(COMPILEDIR)/,$(USR_BIN) $(USR_SBIN) $(SERVICE_BIN))
 
-export PROXMOX_PKG_VERSION=${PKGVER}
-export PROXMOX_PKG_RELEASE=${PKGREL}
-export PROXMOX_PKG_REPOID=${GITVERSION}
+DEBS= ${PACKAGE}-server_${DEB_VERSION}_${ARCH}.deb ${PACKAGE}-client_${DEB_VERSION}_${ARCH}.deb
 
-export PROXMOX_JSDIR := $(JSDIR)
-export PROXMOX_CONFIGDIR := $(SYSCONFDIR)/proxmox-backup
+DOC_DEB=${PACKAGE}-docs_${DEB_VERSION}_all.deb
 
-DEB=${PACKAGE}_${PKGVER}-${PKGREL}_${ARCH}.deb
-DSC=${PACKAGE}_${PKGVER}-${PKGREL}.dsc
+DSC = ${PACKAGE}_${DEB_VERSION}.dsc
 
 DESTDIR=
 
@@ -47,26 +50,35 @@ $(SUBDIRS):
        $(MAKE) -C $@
 
 test:
-       cargo test $(CARGO_BUILD_ARGS)
+       #cargo test test_broadcast_future
+       #cargo test $(CARGO_BUILD_ARGS)
+       $(CARGO) test $(tests) $(CARGO_BUILD_ARGS)
 
 doc:
-       cargo doc $(CARGO_BUILD_ARGS)
+       $(CARGO) doc --no-deps $(CARGO_BUILD_ARGS)
 
 # always re-create this dir
-# but also copy the local target/ dir as a build-cache
 .PHONY: build
 build:
        rm -rf build
-       rsync -a debian Makefile defines.mk Cargo.toml src $(SUBDIRS) build/
-       test -d target && rsync -a target build/ || true
+       rsync -a debian Makefile defines.mk Cargo.toml \
+           src $(SUBDIRS) \
+           tests build/
        $(foreach i,$(SUBDIRS), \
            $(MAKE) -C build/$(i) clean ;)
 
-.PHONY: deb
-deb: $(DEB)
-$(DEB): build
+.PHONY: proxmox-backup-docs
+proxmox-backup-docs: $(DOC_DEB)
+$(DOC_DEB): build
        cd build; dpkg-buildpackage -b -us -uc --no-pre-clean
-       lintian $(DEB)
+       lintian $(DOC_DEB)
+
+# copy the local target/ dir as a build-cache
+.PHONY: deb
+deb: $(DEBS)
+$(DEBS): build
+       cd build; dpkg-buildpackage -b -us -uc --no-pre-clean --build-profiles=nodoc
+       lintian $(DEBS)
 
 .PHONY: dsc
 dsc: $(DSC)
@@ -79,20 +91,27 @@ distclean: clean
 clean:
        $(foreach i,$(SUBDIRS), \
            $(MAKE) -C $(i) clean ;)
-       cargo clean
+       $(CARGO) clean
        rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build
        find . -name '*~' -exec rm {} ';'
 
 .PHONY: dinstall
-dinstall: ${DEB}
-       dpkg -i ${DEB}
+dinstall: ${DEBS}
+       dpkg -i ${DEBS}
+
+# make sure we build binaries before docs
+docs: cargo-build
 
 .PHONY: cargo-build
 cargo-build:
-       cargo build $(CARGO_BUILD_ARGS)
+       $(CARGO) build $(CARGO_BUILD_ARGS)
 
 $(COMPILED_BINS): cargo-build
 
+.PHONY: lint
+lint:
+       cargo clippy -- -A clippy::all -D clippy::correctness
+
 install: $(COMPILED_BINS)
        install -dm755 $(DESTDIR)$(BINDIR)
        $(foreach i,$(USR_BIN), \
@@ -104,3 +123,10 @@ install: $(COMPILED_BINS)
        $(foreach i,$(SERVICE_BIN), \
            install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/ ;)
        $(MAKE) -C www install
+       $(MAKE) -C docs install
+
+.PHONY: upload
+upload: ${DEBS}
+       # check if working directory is clean
+       git diff --exit-code --stat && git diff --exit-code --stat --staged
+       tar cf - ${DEBS} | ssh -X repoman@repo.proxmox.com upload --product pbs --dist buster