]> git.proxmox.com Git - proxmox-backup.git/blob - Makefile
make: use --no-deps for cargo doc
[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
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 rsync -a debian Makefile defines.mk Cargo.toml src $(SUBDIRS) build/
61 test -d target && rsync -a target build/ || true
62 $(foreach i,$(SUBDIRS), \
63 $(MAKE) -C build/$(i) clean ;)
64
65 .PHONY: deb
66 deb: $(DEB)
67 $(DEB): build
68 cd build; dpkg-buildpackage -b -us -uc --no-pre-clean
69 lintian $(DEB)
70
71 .PHONY: dsc
72 dsc: $(DSC)
73 $(DSC): build
74 cd build; dpkg-buildpackage -S -us -uc -d -nc
75 lintian $(DSC)
76
77 distclean: clean
78
79 clean:
80 $(foreach i,$(SUBDIRS), \
81 $(MAKE) -C $(i) clean ;)
82 cargo clean
83 rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build
84 find . -name '*~' -exec rm {} ';'
85
86 .PHONY: dinstall
87 dinstall: ${DEB}
88 dpkg -i ${DEB}
89
90 .PHONY: cargo-build
91 cargo-build:
92 cargo build $(CARGO_BUILD_ARGS)
93
94 $(COMPILED_BINS): cargo-build
95
96 install: $(COMPILED_BINS)
97 install -dm755 $(DESTDIR)$(BINDIR)
98 $(foreach i,$(USR_BIN), \
99 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(BINDIR)/ ;)
100 install -dm755 $(DESTDIR)$(SBINDIR)
101 $(foreach i,$(USR_SBIN), \
102 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(SBINDIR)/ ;)
103 install -dm755 $(DESTDIR)$(LIBEXECDIR)/proxmox-backup
104 $(foreach i,$(SERVICE_BIN), \
105 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/ ;)
106 $(MAKE) -C www install