proxmox-backup/Makefile

129 lines
2.9 KiB
Makefile
Raw Normal View History

include defines.mk
2018-11-30 12:39:40 +00:00
2018-12-01 12:44:13 +00:00
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
ifeq ($(valgrind), yes)
CARGO_BUILD_ARGS += --features valgrind
endif
COMPILED_BINS := \
$(addprefix $(COMPILEDIR)/,$(USR_BIN) $(USR_SBIN) $(SERVICE_BIN))
DEBS= ${PACKAGE}-server_${PKGVER}-${PKGREL}_${ARCH}.deb ${PACKAGE}-client_${PKGVER}-${PKGREL}_${ARCH}.deb
DOC_DEB=${PACKAGE}-docs_${PKGVER}-${PKGREL}_all.deb
2018-12-01 12:44:13 +00:00
DESTDIR=
2018-11-30 12:39:40 +00:00
all: cargo-build $(SUBDIRS)
.PHONY: $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@
2018-11-30 12:39:40 +00:00
test:
#cargo test test_broadcast_future
#cargo test $(CARGO_BUILD_ARGS)
cargo test $(tests) $(CARGO_BUILD_ARGS)
2018-12-19 12:54:22 +00:00
doc:
cargo doc --no-deps $(CARGO_BUILD_ARGS)
2019-02-12 12:27:11 +00:00
# always re-create this dir
# but also copy the local target/ dir as a build-cache
.PHONY: build
build:
2018-11-30 12:39:40 +00:00
rm -rf build
cargo build --release --lib
rsync -a debian Makefile defines.mk Cargo.toml Cargo.lock \
src zstd-sys $(SUBDIRS) \
target tests build/
$(foreach i,$(SUBDIRS), \
$(MAKE) -C build/$(i) clean ;)
2018-11-30 12:39:40 +00:00
.PHONY: proxmox-backup-docs
proxmox-backup-docs: $(DOC_DEB)
$(DOC_DEB): build
cd build; dpkg-buildpackage -b -us -uc --no-pre-clean
lintian $(DOC_DEB)
.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)
$(DSC): build
cd build; dpkg-buildpackage -S -us -uc -d -nc
lintian $(DSC)
2018-11-30 12:39:40 +00:00
2018-12-01 12:44:13 +00:00
distclean: clean
2018-11-30 12:39:40 +00:00
clean:
$(foreach i,$(SUBDIRS), \
$(MAKE) -C $(i) clean ;)
2018-11-30 12:39:40 +00:00
cargo clean
rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build
find . -name '*~' -exec rm {} ';'
2018-12-01 12:44:13 +00:00
.PHONY: dinstall
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)
$(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), \
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
2019-12-13 09:35:43 +00:00
.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