]> git.proxmox.com Git - proxmox-backup.git/blob - Makefile
buildsys: copy proxmox-protocol to build/
[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 catar
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 COMPILED_BINS := \
29 $(addprefix $(COMPILEDIR)/,$(USR_BIN) $(USR_SBIN) $(SERVICE_BIN))
30
31 export PROXMOX_PKG_VERSION=${PKGVER}
32 export PROXMOX_PKG_RELEASE=${PKGREL}
33 export PROXMOX_PKG_REPOID=${GITVERSION}
34
35 export PROXMOX_JSDIR := $(JSDIR)
36 export PROXMOX_CONFIGDIR := $(SYSCONFDIR)/proxmox-backup
37
38 DEB=${PACKAGE}_${PKGVER}-${PKGREL}_${ARCH}.deb
39 DSC=${PACKAGE}_${PKGVER}-${PKGREL}.dsc
40
41 DESTDIR=
42
43 all: cargo-build $(SUBDIRS)
44
45 .PHONY: $(SUBDIRS)
46 $(SUBDIRS):
47 $(MAKE) -C $@
48
49 test:
50 cargo test $(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
61 rsync -a debian Makefile defines.mk Cargo.toml Cargo.lock \
62 src proxmox-protocol $(SUBDIRS) \
63 target build/
64 $(foreach i,$(SUBDIRS), \
65 $(MAKE) -C build/$(i) clean ;)
66
67 .PHONY: deb
68 deb: $(DEB)
69 $(DEB): build
70 cd build; dpkg-buildpackage -b -us -uc --no-pre-clean
71 lintian $(DEB)
72
73 .PHONY: dsc
74 dsc: $(DSC)
75 $(DSC): build
76 cd build; dpkg-buildpackage -S -us -uc -d -nc
77 lintian $(DSC)
78
79 distclean: clean
80
81 clean:
82 $(foreach i,$(SUBDIRS), \
83 $(MAKE) -C $(i) clean ;)
84 cargo clean
85 rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build
86 find . -name '*~' -exec rm {} ';'
87
88 .PHONY: dinstall
89 dinstall: ${DEB}
90 dpkg -i ${DEB}
91
92 # make sure we build binaries before docs
93 docs: cargo-build
94
95 .PHONY: cargo-build
96 cargo-build:
97 cargo build $(CARGO_BUILD_ARGS)
98
99 $(COMPILED_BINS): cargo-build
100
101 install: $(COMPILED_BINS)
102 install -dm755 $(DESTDIR)$(BINDIR)
103 $(foreach i,$(USR_BIN), \
104 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(BINDIR)/ ;)
105 install -dm755 $(DESTDIR)$(SBINDIR)
106 $(foreach i,$(USR_SBIN), \
107 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(SBINDIR)/ ;)
108 install -dm755 $(DESTDIR)$(LIBEXECDIR)/proxmox-backup
109 $(foreach i,$(SERVICE_BIN), \
110 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/ ;)
111 $(MAKE) -C www install
112 $(MAKE) -C docs install