]> git.proxmox.com Git - pve-installer.git/blob - Makefile
buildsys: depend on full known-to-git file list for installer sources
[pve-installer.git] / Makefile
1 include /usr/share/dpkg/pkg-info.mk
2
3 DEB=proxmox-installer_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
4
5 INSTALLER_SOURCES=$(shell git ls-files) country.dat
6
7 all:
8
9 country.dat: country.pl
10 ./country.pl > country.dat.tmp
11 mv country.dat.tmp country.dat
12
13 deb: ${DEB}
14 ${DEB}: ${INSTALLER_SOURCES}
15 rsync --exclude='test*.img' -a * build
16 cd build; dpkg-buildpackage -b -us -uc
17 lintian ${DEB}
18
19 DESTDIR=
20 VARLIBDIR=$(DESTDIR)/var/lib/proxmox-installer
21 HTMLDIR=$(VARLIBDIR)/html/common
22
23 .PHONY: install
24 install: ${INSTALLER_SOURCES}
25 $(MAKE) -C banner install
26 $(MAKE) -C Proxmox install
27 install -D -m 644 interfaces ${DESTDIR}/etc/network/interfaces
28 install -D -m 755 fake-start-stop-daemon ${VARLIBDIR}/fake-start-stop-daemon
29 install -D -m 755 policy-disable-rc.d $(VARLIBDIR)/policy-disable-rc.d
30 install -D -m 644 country.dat $(VARLIBDIR)/country.dat
31 install -D -m 755 unconfigured.sh ${DESTDIR}/sbin/unconfigured.sh
32 install -D -m 755 proxinstall ${DESTDIR}/usr/bin/proxinstall
33 install -D -m 755 checktime ${DESTDIR}/usr/bin/checktime
34 install -D -m 644 xinitrc ${DESTDIR}/.xinitrc
35 install -D -m 755 spice-vdagent.sh ${DESTDIR}/.spice-vdagent.sh
36 install -D -m 644 Xdefaults ${DESTDIR}/.Xdefaults
37
38 %-banner.png: %-banner.svg
39 rsvg-convert -o $@ $<
40
41 .PHONY: upload
42 upload: ${DEB}
43 tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg,pbs --dist bullseye
44
45 %.img:
46 truncate -s 2G $@
47
48 %.big.img:
49 truncate -s 8G $@
50
51 .PHONY: prepare-check-env
52 prepare-check-env: $(DEB)
53 umount -Rd testdir || true
54 rm -rf testdir
55 dpkg -X $(DEB) testdir
56
57 check-pve: prepare-check-env test.img
58 printf '%s\n' "PRODUCT='pve'" >cd-info.test
59 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
60
61 check-pve-multidisks: prepare-check-env test.img test2.img test3.img test4.img test5.big.img
62 printf '%s\n' "PRODUCT='pve'" >cd-info.test
63 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
64
65 check-pmg: prepare-check-env test.img
66 printf '%s\n' "PRODUCT='pmg'" >cd-info.test
67 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
68
69 check-pbs: prepare-check-env test.img
70 printf '%s\n' "PRODUCT='pbs'" >cd-info.test
71 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
72
73
74 .phony: clean
75 clean:
76 umount -Rd testdir || true
77 rm -rf *~ *.deb target build packages packages.tmp testdir test*.img pve-final.pkglist \
78 *.buildinfo *.changes country.dat final.pkglist cd-info.test
79 find . -name '*~' -exec rm {} ';'