]> git.proxmox.com Git - pve-installer.git/blob - Makefile
buildsys: copy over .cargo config directory to build-dir
[pve-installer.git] / Makefile
1 include /usr/share/dpkg/default.mk
2
3 PACKAGE = proxmox-installer
4 BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION_UPSTREAM)
5
6 DEB=$(PACKAGE)_$(DEB_VERSION)_$(DEB_HOST_ARCH).deb
7 DSC=$(PACKAGE)_$(DEB_VERSION).dsc
8
9 CARGO ?= cargo
10 ifeq ($(BUILD_MODE), release)
11 CARGO_BUILD_ARGS += --release
12 CARGO_COMPILEDIR := target/release
13 else
14 CARGO_COMPILEDIR := target/debug
15 endif
16
17 INSTALLER_SOURCES=$(shell git ls-files) country.dat
18
19 PREFIX = /usr
20 BINDIR = $(PREFIX)/bin
21 USR_BIN := proxmox-tui-installer
22
23 COMPILED_BINS := \
24 $(addprefix $(CARGO_COMPILEDIR)/,$(USR_BIN))
25
26 all:
27
28 $(BUILDDIR):
29 rm -rf $@ $@.tmp; mkdir $@.tmp
30 cp -a \
31 .cargo \
32 Cargo.toml \
33 Makefile \
34 Proxmox/ \
35 Xdefaults \
36 banner/ \
37 checktime \
38 country.pl \
39 fake-start-stop-daemon \
40 html/ \
41 interfaces \
42 policy-disable-rc.d \
43 proxinstall \
44 proxmox-low-level-installer \
45 proxmox-tui-installer/ \
46 spice-vdagent.sh \
47 unconfigured.sh \
48 xinitrc \
49 $@.tmp
50 cp -a debian $@.tmp/
51 mv $@.tmp $@
52
53 country.dat: country.pl
54 ./country.pl > country.dat.tmp
55 mv country.dat.tmp country.dat
56
57 deb: $(DEB)
58 $(DEB): $(BUILDDIR)
59 cd $(BUILDDIR); dpkg-buildpackage -b -us -uc
60 lintian $(DEB)
61
62 test-$(DEB): $(INSTALLER_SOURCES)
63 rsync --exclude='test*.img' --exclude='*.deb' --exclude='build' -a * build
64 cd build; dpkg-buildpackage -b -us -uc -nc
65 mv $(DEB) test-$(DEB)
66
67 dsc: $(DSC)
68 $(MAKE) clean
69 $(MAKE) $(DSC)
70 lintian $(DSC)
71
72 $(DSC): $(BUILDDIR)
73 cd $(BUILDDIR); dpkg-buildpackage -S -us -uc -d
74
75 sbuild: $(DSC)
76 sbuild $(DSC)
77
78 DESTDIR=
79 VARLIBDIR=$(DESTDIR)/var/lib/proxmox-installer
80 HTMLDIR=$(VARLIBDIR)/html/common
81
82 .PHONY: install
83 install: $(INSTALLER_SOURCES) $(CARGO_COMPILEDIR)/proxmox-tui-installer
84 $(MAKE) -C banner install
85 $(MAKE) -C Proxmox install
86 install -D -m 644 interfaces $(DESTDIR)/etc/network/interfaces
87 install -D -m 755 fake-start-stop-daemon $(VARLIBDIR)/fake-start-stop-daemon
88 install -D -m 755 policy-disable-rc.d $(VARLIBDIR)/policy-disable-rc.d
89 install -D -m 644 country.dat $(VARLIBDIR)/country.dat
90 install -D -m 755 unconfigured.sh $(DESTDIR)/sbin/unconfigured.sh
91 install -D -m 755 proxinstall $(DESTDIR)/usr/bin/proxinstall
92 install -D -m 755 proxmox-low-level-installer $(DESTDIR)/$(BINDIR)/proxmox-low-level-installer
93 $(foreach i,$(USR_BIN), install -m755 $(CARGO_COMPILEDIR)/$(i) $(DESTDIR)$(BINDIR)/)
94 install -D -m 755 checktime $(DESTDIR)/usr/bin/checktime
95 install -D -m 644 xinitrc $(DESTDIR)/.xinitrc
96 install -D -m 755 spice-vdagent.sh $(DESTDIR)/.spice-vdagent.sh
97 install -D -m 644 Xdefaults $(DESTDIR)/.Xdefaults
98
99 $(COMPILED_BINS): cargo-build
100 .PHONY: cargo-build
101 cargo-build:
102 $(CARGO) build --package proxmox-tui-installer --bin proxmox-tui-installer $(CARGO_BUILD_ARGS)
103
104 %-banner.png: %-banner.svg
105 rsvg-convert -o $@ $<
106
107 .PHONY: upload
108 upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
109 upload: $(DEB)
110 tar cf - $(DEB) | ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg,pbs --dist $(UPLOAD_DIST)
111
112 %.img:
113 truncate -s 2G $@
114
115 %.big.img:
116 truncate -s 8G $@
117
118 .PHONY: prepare-check-env
119 prepare-check-env: test-$(DEB)
120 rm -rf testdir
121 dpkg -X test-$(DEB) testdir
122 mkdir -p testdir/run/proxmox-installer/
123
124 cd-info.test: PRODUCT ?= pve
125 cd-info.test:
126 printf '%s\n' "PRODUCT='$(or $(PRODUCT), pve)'" >$@.tmp
127 printf '%s\n' "PRODUCTLONG='$(or $(PRODUCTLONG), Proxmox VE)'" >>$@.tmp
128 printf '%s\n' "RELEASE='$(or $(RELEASE), 42.1)'" >>$@.tmp
129 printf '%s\n' "ISORELEASE='$(or $(ISORELEASE), 1)'" >>$@.tmp
130 printf '%s\n' "ISONAME='$(or $(ISONAME), proxmox-ve)'" >>$@.tmp
131 mv $@.tmp $@
132
133 check-pve: prepare-check-env test.img
134 rm -f cd-info.test; $(MAKE) cd-info.test
135 ./proxmox-low-level-installer dump-env -t
136 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
137
138 check-pve-multidisks: prepare-check-env test.img test2.img test3.img test4.img test5.big.img
139 rm -f cd-info.test; $(MAKE) cd-info.test
140 ./proxmox-low-level-installer dump-env -t
141 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img,test2.img,test3.img,test4.img,test5.big.img
142
143 check-pve-tui: prepare-check-env test.img
144 rm -f cd-info.test; $(MAKE) cd-info.test
145 ./proxmox-low-level-installer dump-env -t
146 testdir/usr/bin/proxmox-tui-installer -t test.img
147
148 prepare-check-pmg: prepare-check-env test.img
149 rm -f cd-info.test; $(MAKE) \
150 PRODUCT=pmg \
151 PRODUCTLONG="Proxmox Mail Gateway" \
152 ISONAME='proxmox-mail-gateway' \
153 cd-info.test
154 ./proxmox-low-level-installer dump-env -t
155
156 check-pmg: prepare-check-pmg
157 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
158
159 check-pmg-tui: prepare-check-pmg
160 testdir/usr/bin/proxmox-tui-installer -t test.img
161
162 prepare-check-pbs: prepare-check-env test.img
163 rm -f cd-info.test; $(MAKE) \
164 PRODUCT='pbs' \
165 PRODUCTLONG='Proxmox Backup Server' \
166 ISONAME='proxmox-backup-server' \
167 cd-info.test
168 ./proxmox-low-level-installer dump-env -t
169
170 check-pbs: prepare-check-pbs
171 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
172
173 check-pbs-tui: prepare-check-pbs
174 testdir/usr/bin/proxmox-tui-installer -t test.img
175
176 .phony: clean
177 clean:
178 rm -rf target build $(PACKAGE)-[0-9]* testdir
179 rm -f $(PACKAGE)*.tar* *.deb packages packages.tmp *.build *.dsc *.buildinfo *.changes
180 rm -f test*.img pve-final.pkglist country.dat final.pkglist cd-info.test
181 find . -name '*~' -exec rm {} ';'