]> git.proxmox.com Git - proxmox-backup.git/blob - Makefile
make clean: cleanup source package files
[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
37 DEB=${PACKAGE}_${PKGVER}-${PKGREL}_${ARCH}.deb
38 DSC=${PACKAGE}_${PKGVER}-${PKGREL}.dsc
39
40 DESTDIR=
41
42 all: cargo-build $(SUBDIRS)
43
44 .PHONY: $(SUBDIRS)
45 $(SUBDIRS):
46 $(MAKE) -C $@
47
48 test:
49 cargo test $(CARGO_BUILD_ARGS)
50
51 # always re-create this dir
52 # but also copy the local target/ dir as a build-cache
53 .PHONY: build
54 build:
55 rm -rf build
56 rsync -a debian Makefile defines.mk Cargo.toml src $(SUBDIRS) build/
57 test -d target && rsync -a target build/ || true
58
59 .PHONY: deb
60 deb: $(DEB)
61 $(DEB): build
62 cd build; dpkg-buildpackage -b -us -uc
63 lintian $(DEB)
64
65 .PHONY: dsc
66 dsc: $(DSC)
67 $(DSC): build
68 cd build; dpkg-buildpackage -S -us -uc -d -nc
69 lintian $(DSC)
70
71 distclean: clean
72
73 clean:
74 $(MAKE) -C www clean
75 cargo clean
76 rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build
77 find . -name '*~' -exec rm {} ';'
78
79 .PHONY: dinstall
80 dinstall: ${DEB}
81 dpkg -i ${DEB}
82
83 .PHONY: cargo-build
84 cargo-build:
85 cargo build $(CARGO_BUILD_ARGS)
86
87 $(COMPILED_BINS): cargo-build
88
89 install: $(COMPILED_BINS)
90 install -dm755 $(DESTDIR)$(BINDIR)
91 $(foreach i,$(USR_BIN), \
92 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(BINDIR)/ ;)
93 install -dm755 $(DESTDIR)$(SBINDIR)
94 $(foreach i,$(USR_SBIN), \
95 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(SBINDIR)/ ;)
96 install -dm755 $(DESTDIR)$(LIBEXECDIR)/proxmox-backup
97 $(foreach i,$(SERVICE_BIN), \
98 install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/ ;)
99 $(MAKE) -C www install