]> git.proxmox.com Git - proxmox-backup.git/blob - Makefile
datastore: allow browsing signed pxar files
[proxmox-backup.git] / Makefile
1 include /usr/share/dpkg/default.mk
2 include defines.mk
3
4 PACKAGE := proxmox-backup
5 ARCH := $(DEB_BUILD_ARCH)
6
7 SUBDIRS := etc www docs
8
9 # Binaries usable by users
10 USR_BIN := \
11 proxmox-backup-client \
12 pxar
13
14 # Binaries usable by admins
15 USR_SBIN := \
16 proxmox-backup-manager
17
18 # Binaries for services:
19 SERVICE_BIN := \
20 proxmox-backup-api \
21 proxmox-backup-banner \
22 proxmox-backup-proxy
23
24 ifeq ($(BUILD_MODE), release)
25 CARGO_BUILD_ARGS += --release
26 COMPILEDIR := target/release
27 else
28 COMPILEDIR := target/debug
29 endif
30
31 ifeq ($(valgrind), yes)
32 CARGO_BUILD_ARGS += --features valgrind
33 endif
34
35 CARGO ?= cargo
36
37 COMPILED_BINS := \
38 $(addprefix $(COMPILEDIR)/,$(USR_BIN) $(USR_SBIN) $(SERVICE_BIN))
39
40 export DEB_VERSION DEB_VERSION_UPSTREAM
41
42 SERVER_DEB=${PACKAGE}-server_${DEB_VERSION}_${ARCH}.deb
43 SERVER_DBG_DEB=${PACKAGE}-server-dbgsym_${DEB_VERSION}_${ARCH}.deb
44 CLIENT_DEB=${PACKAGE}-client_${DEB_VERSION}_${ARCH}.deb
45 CLIENT_DBG_DEB=${PACKAGE}-client-dbgsym_${DEB_VERSION}_${ARCH}.deb
46 DOC_DEB=${PACKAGE}-docs_${DEB_VERSION}_all.deb
47
48 DEBS=${SERVER_DEB} ${SERVER_DBG_DEB} ${CLIENT_DEB} ${CLIENT_DBG_DEB}
49
50 DSC = rust-${PACKAGE}_${DEB_VERSION}.dsc
51
52 DESTDIR=
53
54 all: cargo-build $(SUBDIRS)
55
56 .PHONY: $(SUBDIRS)
57 $(SUBDIRS):
58 $(MAKE) -C $@
59
60 test:
61 #cargo test test_broadcast_future
62 #cargo test $(CARGO_BUILD_ARGS)
63 $(CARGO) test $(tests) $(CARGO_BUILD_ARGS)
64
65 doc:
66 $(CARGO) doc --no-deps $(CARGO_BUILD_ARGS)
67
68 # always re-create this dir
69 .PHONY: build
70 build:
71 rm -rf build
72 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/-.*//')
73 sed -e '1,/^$$/ ! d' build/debian/control > build/debian/control.src
74 cat build/debian/control.src build/debian/control.in > build/debian/control
75 rm build/debian/control.in build/debian/control.src
76 cp build/debian/control debian/control
77 rm build/Cargo.lock
78 find build/debian -name "*.hint" -delete
79 $(foreach i,$(SUBDIRS), \
80 $(MAKE) -C build/$(i) clean ;)
81
82
83 .PHONY: proxmox-backup-docs
84 $(DOC_DEB) $(DEBS): proxmox-backup-docs
85 proxmox-backup-docs: build
86 cd build; dpkg-buildpackage -b -us -uc --no-pre-clean
87 lintian $(DOC_DEB)
88
89 # copy the local target/ dir as a build-cache
90 .PHONY: deb
91 $(DEBS): deb
92 deb: build
93 cd build; dpkg-buildpackage -b -us -uc --no-pre-clean --build-profiles=nodoc
94 lintian $(DEBS)
95
96 .PHONY: deb-all
97 deb-all: $(DOC_DEB) $(DEBS)
98
99 .PHONY: dsc
100 dsc: $(DSC)
101 $(DSC): build
102 cd build; dpkg-buildpackage -S -us -uc -d -nc
103 lintian $(DSC)
104
105 distclean: clean
106
107 clean:
108 $(foreach i,$(SUBDIRS), \
109 $(MAKE) -C $(i) clean ;)
110 $(CARGO) clean
111 rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build
112 find . -name '*~' -exec rm {} ';'
113
114 .PHONY: dinstall
115 dinstall: ${DEBS}
116 dpkg -i ${DEBS}
117
118 # make sure we build binaries before docs
119 docs: cargo-build
120
121 .PHONY: cargo-build
122 cargo-build:
123 $(CARGO) build $(CARGO_BUILD_ARGS)
124
125 $(COMPILED_BINS): cargo-build
126
127 .PHONY: lint
128 lint:
129 cargo clippy -- -A clippy::all -D clippy::correctness
130
131 install: $(COMPILED_BINS)
132 install -dm755 $(DESTDIR)$(BINDIR)
133 install -dm755 $(DESTDIR)$(ZSH_COMPL_DEST)
134 $(foreach i,$(USR_BIN), \
135 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(BINDIR)/ ; \
136 install -m644 zsh-completions/_$(i) $(DESTDIR)$(ZSH_COMPL_DEST)/ ;)
137 install -dm755 $(DESTDIR)$(SBINDIR)
138 $(foreach i,$(USR_SBIN), \
139 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(SBINDIR)/ ; \
140 install -m644 zsh-completions/_$(i) $(DESTDIR)$(ZSH_COMPL_DEST)/ ;)
141 install -dm755 $(DESTDIR)$(LIBEXECDIR)/proxmox-backup
142 $(foreach i,$(SERVICE_BIN), \
143 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/ ;)
144 $(MAKE) -C www install
145 $(MAKE) -C docs install
146
147 .PHONY: upload
148 upload: ${SERVER_DEB} ${CLIENT_DEB} ${DOC_DEB}
149 # check if working directory is clean
150 git diff --exit-code --stat && git diff --exit-code --stat --staged
151 tar cf - ${SERVER_DEB} ${SERVER_DBG_DEB} ${DOC_DEB} | ssh -X repoman@repo.proxmox.com upload --product pbs --dist buster
152 tar cf - ${CLIENT_DEB} ${CLIENT_DBG_DEB} | ssh -X repoman@repo.proxmox.com upload --product "pbs,pve" --dist buster