]> git.proxmox.com Git - proxmox-backup.git/blob - Makefile
drop our zstd-sys replacement
[proxmox-backup.git] / Makefile
1 include defines.mk
2
3 ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
4 GITVERSION:=$(shell git rev-parse HEAD)
5
6 SUBDIRS := etc www docs
7
8 # Binaries usable by users
9 USR_BIN := \
10 proxmox-backup-client \
11 pxar
12
13 # Binaries usable by admins
14 USR_SBIN := proxmox-backup-manager
15
16 # Binaries for services:
17 SERVICE_BIN := \
18 proxmox-backup-api \
19 proxmox-backup-proxy
20
21 ifeq ($(BUILD_MODE), release)
22 CARGO_BUILD_ARGS += --release
23 COMPILEDIR := target/release
24 else
25 COMPILEDIR := target/debug
26 endif
27
28 ifeq ($(valgrind), yes)
29 CARGO_BUILD_ARGS += --features valgrind
30 endif
31
32 COMPILED_BINS := \
33 $(addprefix $(COMPILEDIR)/,$(USR_BIN) $(USR_SBIN) $(SERVICE_BIN))
34
35 DEBS= ${PACKAGE}-server_${PKGVER}-${PKGREL}_${ARCH}.deb ${PACKAGE}-client_${PKGVER}-${PKGREL}_${ARCH}.deb
36
37 DOC_DEB=${PACKAGE}-docs_${PKGVER}-${PKGREL}_all.deb
38
39 DESTDIR=
40
41 all: cargo-build $(SUBDIRS)
42
43 .PHONY: $(SUBDIRS)
44 $(SUBDIRS):
45 $(MAKE) -C $@
46
47 test:
48 #cargo test test_broadcast_future
49 #cargo test $(CARGO_BUILD_ARGS)
50 cargo test $(tests) $(CARGO_BUILD_ARGS)
51
52 doc:
53 cargo doc --no-deps $(CARGO_BUILD_ARGS)
54
55 # always re-create this dir
56 # but also copy the local target/ dir as a build-cache
57 .PHONY: build
58 build:
59 rm -rf build
60 cargo build --release --lib
61 rsync -a debian Makefile defines.mk Cargo.toml Cargo.lock \
62 src zstd-sys $(SUBDIRS) \
63 target tests build/
64 $(foreach i,$(SUBDIRS), \
65 $(MAKE) -C build/$(i) clean ;)
66
67 .PHONY: proxmox-backup-docs
68 proxmox-backup-docs: $(DOC_DEB)
69 $(DOC_DEB): build
70 cd build; dpkg-buildpackage -b -us -uc --no-pre-clean
71 lintian $(DOC_DEB)
72
73 .PHONY: deb
74 deb: $(DEBS)
75 $(DEBS): build
76 cd build; dpkg-buildpackage -b -us -uc --no-pre-clean --build-profiles=nodoc
77 lintian $(DEBS)
78
79 .PHONY: dsc
80 dsc: $(DSC)
81 $(DSC): build
82 cd build; dpkg-buildpackage -S -us -uc -d -nc
83 lintian $(DSC)
84
85 distclean: clean
86
87 clean:
88 $(foreach i,$(SUBDIRS), \
89 $(MAKE) -C $(i) clean ;)
90 cargo clean
91 rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build
92 find . -name '*~' -exec rm {} ';'
93
94 .PHONY: dinstall
95 dinstall: ${DEBS}
96 dpkg -i ${DEBS}
97
98 # make sure we build binaries before docs
99 docs: cargo-build
100
101 .PHONY: cargo-build
102 cargo-build:
103 cargo build $(CARGO_BUILD_ARGS)
104
105 $(COMPILED_BINS): cargo-build
106
107 .PHONY: lint
108 lint:
109 cargo clippy -- -A clippy::all -D clippy::correctness
110
111 install: $(COMPILED_BINS)
112 install -dm755 $(DESTDIR)$(BINDIR)
113 $(foreach i,$(USR_BIN), \
114 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(BINDIR)/ ;)
115 install -dm755 $(DESTDIR)$(SBINDIR)
116 $(foreach i,$(USR_SBIN), \
117 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(SBINDIR)/ ;)
118 install -dm755 $(DESTDIR)$(LIBEXECDIR)/proxmox-backup
119 $(foreach i,$(SERVICE_BIN), \
120 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/ ;)
121 $(MAKE) -C www install
122 $(MAKE) -C docs install
123
124 .PHONY: upload
125 upload: ${DEBS}
126 # check if working directory is clean
127 git diff --exit-code --stat && git diff --exit-code --stat --staged
128 tar cf - ${DEBS} | ssh -X repoman@repo.proxmox.com upload --product pbs --dist buster