]> git.proxmox.com Git - proxmox-backup.git/blobdiff - Makefile
src/client/http_client.rs: implement download_chunk_list
[proxmox-backup.git] / Makefile
index 627f84b639e3c2bb57f79fedfe0cb7670b72b27f..405e9ce9aca194d0061cf2653988e77525b7d111 100644 (file)
--- a/Makefile
+++ b/Makefile
-PACKAGE=api-test-server
-PKGVER=0.1
-PKGREL=1
+include defines.mk
 
 ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
 GITVERSION:=$(shell git rev-parse HEAD)
 
+SUBDIRS := etc www docs
+
+# Binaries usable by users
+USR_BIN := \
+       proxmox-backup-client \
+       pxar
+
+# Binaries usable by admins
+USR_SBIN := proxmox-backup-manager
+
+# Binaries for services:
+SERVICE_BIN := \
+       proxmox-backup-api \
+       proxmox-backup-proxy
+
+ifeq ($(BUILD_MODE), release)
+CARGO_BUILD_ARGS += --release
+COMPILEDIR := target/release
+else
+COMPILEDIR := target/debug
+endif
+
+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}
 
+export PROXMOX_JSDIR := $(JSDIR)
+export PROXMOX_CONFIGDIR := $(SYSCONFDIR)/proxmox-backup
+
 DEB=${PACKAGE}_${PKGVER}-${PKGREL}_${ARCH}.deb
+DSC=${PACKAGE}_${PKGVER}-${PKGREL}.dsc
 
 DESTDIR=
 
-all:
-       cargo build
+all: cargo-build $(SUBDIRS)
+
+.PHONY: $(SUBDIRS)
+$(SUBDIRS):
+       $(MAKE) -C $@
 
 test:
-       cargo test
+       cargo test test_broadcast_future
+       #cargo test $(CARGO_BUILD_ARGS)
 
-.PHONY: deb
-deb ${DEB}:
+doc:
+       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
-       # build here to cache results
        cargo build --release
-       make -C www
-       rsync -a debian Cargo.lock Cargo.toml src www target build
-       cd build; dpkg-buildpackage -b -us -uc
+       rsync -a debian Makefile defines.mk Cargo.toml Cargo.lock \
+           src proxmox-protocol zstd-sys $(SUBDIRS) \
+           target build/
+       $(foreach i,$(SUBDIRS), \
+           $(MAKE) -C build/$(i) clean ;)
+
+.PHONY: deb
+deb: $(DEB)
+$(DEB): build
+       cd build; dpkg-buildpackage -b -us -uc --no-pre-clean
+       lintian $(DEB)
 
+.PHONY: dsc
+dsc: $(DSC)
+$(DSC): build
+       cd build; dpkg-buildpackage -S -us -uc -d -nc
+       lintian $(DSC)
 
 distclean: clean
 
 clean:
-       make -C www clean
+       $(foreach i,$(SUBDIRS), \
+           $(MAKE) -C $(i) clean ;)
        cargo clean
-       rm -rf *.deb *.buildinfo *.changes build
+       rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build
        find . -name '*~' -exec rm {} ';'
 
 .PHONY: dinstall
 dinstall: ${DEB}
        dpkg -i ${DEB}
+
+# make sure we build binaries before docs
+docs: cargo-build
+
+.PHONY: cargo-build
+cargo-build:
+       cargo build $(CARGO_BUILD_ARGS)
+
+$(COMPILED_BINS): cargo-build
+
+install: $(COMPILED_BINS)
+       install -dm755 $(DESTDIR)$(BINDIR)
+       $(foreach i,$(USR_BIN), \
+           install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(BINDIR)/ ;)
+       install -dm755 $(DESTDIR)$(SBINDIR)
+       $(foreach i,$(USR_SBIN), \
+           install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(SBINDIR)/ ;)
+       install -dm755 $(DESTDIR)$(LIBEXECDIR)/proxmox-backup
+       $(foreach i,$(SERVICE_BIN), \
+           install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/ ;)
+       $(MAKE) -C www install
+       $(MAKE) -C docs install