]> git.proxmox.com Git - proxmox-backup.git/blame - Makefile
make: use --no-deps for cargo doc
[proxmox-backup.git] / Makefile
CommitLineData
6285b251 1include defines.mk
de779814 2
209bb433
DM
3ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
4GITVERSION:=$(shell git rev-parse HEAD)
5
13b77d10
WB
6SUBDIRS := etc www
7
6285b251
WB
8# Binaries usable by users
9USR_BIN := \
10 proxmox-backup-client \
11 catar
12
13# Binaries usable by admins
14USR_SBIN := proxmox-backup-manager
15
16# Binaries for services:
17SERVICE_BIN := \
18 proxmox-backup-api \
19 proxmox-backup-proxy
20
13b77d10
WB
21ifeq ($(BUILD_MODE), release)
22CARGO_BUILD_ARGS += --release
6285b251 23COMPILEDIR := target/release
13b77d10
WB
24else
25COMPILEDIR := target/debug
26endif
27
6285b251
WB
28COMPILED_BINS := \
29 $(addprefix $(COMPILEDIR)/,$(USR_BIN) $(USR_SBIN) $(SERVICE_BIN))
30
4b26195c
DM
31export PROXMOX_PKG_VERSION=${PKGVER}
32export PROXMOX_PKG_RELEASE=${PKGREL}
33export PROXMOX_PKG_REPOID=${GITVERSION}
209bb433 34
6285b251 35export PROXMOX_JSDIR := $(JSDIR)
9f4962d3 36export PROXMOX_CONFIGDIR := $(SYSCONFDIR)/proxmox-backup
6285b251 37
209bb433 38DEB=${PACKAGE}_${PKGVER}-${PKGREL}_${ARCH}.deb
18fad344 39DSC=${PACKAGE}_${PKGVER}-${PKGREL}.dsc
209bb433
DM
40
41DESTDIR=
de779814 42
13b77d10
WB
43all: cargo-build $(SUBDIRS)
44
45.PHONY: $(SUBDIRS)
46$(SUBDIRS):
47 $(MAKE) -C $@
de779814 48
f7dd683b 49test:
069f2d16 50 cargo test $(CARGO_BUILD_ARGS)
f7dd683b 51
d78345bc 52doc:
18a1aa48 53 cargo doc --no-deps $(CARGO_BUILD_ARGS)
d78345bc 54
13b77d10 55# always re-create this dir
7ba5fb4a 56# but also copy the local target/ dir as a build-cache
13b77d10
WB
57.PHONY: build
58build:
de779814 59 rm -rf build
13b77d10 60 rsync -a debian Makefile defines.mk Cargo.toml src $(SUBDIRS) build/
7ba5fb4a 61 test -d target && rsync -a target build/ || true
b369f720
WB
62 $(foreach i,$(SUBDIRS), \
63 $(MAKE) -C build/$(i) clean ;)
de779814 64
13b77d10
WB
65.PHONY: deb
66deb: $(DEB)
67$(DEB): build
0ae7ac15 68 cd build; dpkg-buildpackage -b -us -uc --no-pre-clean
18fad344
WB
69 lintian $(DEB)
70
71.PHONY: dsc
72dsc: $(DSC)
73$(DSC): build
74 cd build; dpkg-buildpackage -S -us -uc -d -nc
75 lintian $(DSC)
de779814 76
209bb433 77distclean: clean
de779814
DM
78
79clean:
b369f720
WB
80 $(foreach i,$(SUBDIRS), \
81 $(MAKE) -C $(i) clean ;)
de779814 82 cargo clean
1a9cb80c 83 rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build
d3cb69c4
DM
84 find . -name '*~' -exec rm {} ';'
85
209bb433
DM
86.PHONY: dinstall
87dinstall: ${DEB}
88 dpkg -i ${DEB}
6285b251 89
13b77d10
WB
90.PHONY: cargo-build
91cargo-build:
92 cargo build $(CARGO_BUILD_ARGS)
6285b251 93
13b77d10 94$(COMPILED_BINS): cargo-build
6285b251
WB
95
96install: $(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)/ ;)
304db5da 103 install -dm755 $(DESTDIR)$(LIBEXECDIR)/proxmox-backup
6285b251 104 $(foreach i,$(SERVICE_BIN), \
304db5da 105 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/ ;)
6285b251 106 $(MAKE) -C www install