]> git.proxmox.com Git - proxmox-backup.git/blob - Makefile
buildsys: fix targets to not run dpkg-buildpackage 4 times
[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 rm build/Cargo.lock
77 find build/debian -name "*.hint" -delete
78 $(foreach i,$(SUBDIRS), \
79 $(MAKE) -C build/$(i) clean ;)
80
81
82 .PHONY: proxmox-backup-docs
83 $(DOC_DEB) $(DEBS): proxmox-backup-docs
84 proxmox-backup-docs: build
85 cd build; dpkg-buildpackage -b -us -uc --no-pre-clean
86 lintian $(DOC_DEB)
87
88 # copy the local target/ dir as a build-cache
89 .PHONY: deb
90 $(DEBS): deb
91 deb: build
92 cd build; dpkg-buildpackage -b -us -uc --no-pre-clean --build-profiles=nodoc
93 lintian $(DEBS)
94
95 .PHONY: deb-all
96 deb-all: $(DOC_DEB) $(DEBS)
97
98 .PHONY: dsc
99 dsc: $(DSC)
100 $(DSC): build
101 cd build; dpkg-buildpackage -S -us -uc -d -nc
102 lintian $(DSC)
103
104 distclean: clean
105
106 clean:
107 $(foreach i,$(SUBDIRS), \
108 $(MAKE) -C $(i) clean ;)
109 $(CARGO) clean
110 rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build
111 find . -name '*~' -exec rm {} ';'
112
113 .PHONY: dinstall
114 dinstall: ${DEBS}
115 dpkg -i ${DEBS}
116
117 # make sure we build binaries before docs
118 docs: cargo-build
119
120 .PHONY: cargo-build
121 cargo-build:
122 $(CARGO) build $(CARGO_BUILD_ARGS)
123
124 $(COMPILED_BINS): cargo-build
125
126 .PHONY: lint
127 lint:
128 cargo clippy -- -A clippy::all -D clippy::correctness
129
130 install: $(COMPILED_BINS)
131 install -dm755 $(DESTDIR)$(BINDIR)
132 install -dm755 $(DESTDIR)$(ZSH_COMPL_DEST)
133 $(foreach i,$(USR_BIN), \
134 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(BINDIR)/ ; \
135 install -m644 zsh-completions/_$(i) $(DESTDIR)$(ZSH_COMPL_DEST)/ ;)
136 install -dm755 $(DESTDIR)$(SBINDIR)
137 $(foreach i,$(USR_SBIN), \
138 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(SBINDIR)/ ; \
139 install -m644 zsh-completions/_$(i) $(DESTDIR)$(ZSH_COMPL_DEST)/ ;)
140 install -dm755 $(DESTDIR)$(LIBEXECDIR)/proxmox-backup
141 $(foreach i,$(SERVICE_BIN), \
142 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/ ;)
143 $(MAKE) -C www install
144 $(MAKE) -C docs install
145
146 .PHONY: upload
147 upload: ${SERVER_DEB} ${CLIENT_DEB} ${DOC_DEB}
148 # check if working directory is clean
149 git diff --exit-code --stat && git diff --exit-code --stat --staged
150 tar cf - ${SERVER_DEB} ${SERVER_DBG_DEB} ${DOC_DEB} | ssh -X repoman@repo.proxmox.com upload --product pbs --dist buster
151 tar cf - ${CLIENT_DEB} ${CLIENT_DBG_DEB} | ssh -X repoman@repo.proxmox.com upload --product "pbs,pve" --dist buster