]> git.proxmox.com Git - pve-installer.git/blob - Makefile
tell udev to ignore being in a chroot
[pve-installer.git] / Makefile
1 PKGVER=5.0
2 PKGREL=26
3
4 PVE_DEB=pve-installer_${PKGVER}-${PKGREL}_all.deb
5 PMG_DEB=pmg-installer_${PKGVER}-${PKGREL}_all.deb
6
7 DEBS = ${PVE_DEB} ${PMG_DEB}
8
9 INSTALLER_SOURCES= \
10 unconfigured.sh \
11 fake-start-stop-daemon \
12 policy-disable-rc.d \
13 interfaces \
14 pmg-banner.png \
15 pve-banner.png \
16 checktime \
17 xinitrc \
18 Xdefaults \
19 country.dat \
20 proxinstall
21
22 HTML_SOURCES=$(wildcard html/*.htm)
23 HTML_COMMON_SOURCES=$(wildcard html-common/*.htm) $(wildcard html-common/*.css) $(wildcard html-common/*.png)
24
25 all: ${INSTALLER_SOURCES} ${HTML_COMMON_SOURCES} ${HTML_SOURCES}
26
27 country.dat: country.pl
28 ./country.pl > country.dat
29
30 deb: ${DEBS}
31 ${DEBS}: ${INSTALLER_SOURCES} ${HTML_COMMON_SOURCES} ${HTML_SOURCES}
32 rsync --exclude='test*.img' -a * build
33 cd build; dpkg-buildpackage -b -us -uc
34 lintian -X man ${PVE_DEB}
35 lintian -X man ${PMG_DEB}
36
37 .phony: install
38 install: ${INSTALLER_SOURCES} ${HTML_COMMON_SOURCES} ${HTML_SOURCES}
39 make -C html-common install
40 install -D -m 644 interfaces ${DESTDIR}/etc/network/interfaces
41 install -D -m 755 fake-start-stop-daemon ${DESTDIR}/var/lib/pve-installer/fake-start-stop-daemon
42 install -D -m 755 policy-disable-rc.d ${DESTDIR}/var/lib/pve-installer/policy-disable-rc.d
43 install -D -m 644 country.dat ${DESTDIR}/var/lib/pve-installer/country.dat
44 install -D -m 755 unconfigured.sh ${DESTDIR}/sbin/unconfigured.sh
45 install -D -m 755 proxinstall ${DESTDIR}/usr/bin/proxinstall
46 install -D -m 755 checktime ${DESTDIR}/usr/bin/checktime
47 install -D -m 644 xinitrc ${DESTDIR}/.xinitrc
48 install -D -m 644 Xdefaults ${DESTDIR}/.Xdefaults
49
50 pmg-banner.png: pmg-banner.svg
51 rsvg-convert -o $@ $<
52
53 pve-banner.png: pve-banner.svg
54 rsvg-convert -o $@ $<
55
56 .phony: upload-pmg
57 upload-pmg: ${PMG_DEB}
58 tar cf - ${PMG_DEB} | ssh -X repoman@repo.proxmox.com -- upload --product pmg --dist stretch
59
60 .phony: upload-pve
61 upload-pve: ${PVE_DEB}
62 tar cf - ${PVE_DEB} | ssh -X repoman@repo.proxmox.com -- upload --product pve --dist stretch
63
64 %.img:
65 truncate -s 2G $@
66
67 check-pve: ${PVE_DEB} test.img
68 rm -rf testdir
69 dpkg -X ${PVE_DEB} testdir
70 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
71
72 check-pve-multidisks: ${PVE_DEB} test.img test2.img test3.img test4.img
73 rm -rf testdir
74 dpkg -X ${PVE_DEB} testdir
75 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img,test2.img,test3.img,test4.img
76
77 check-pmg: ${PMG_DEB} test.img
78 rm -rf testdir
79 dpkg -X ${PMG_DEB} testdir
80 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
81
82 .phony: clean
83 clean:
84 make -C html-common clean
85 rm -rf *~ *.deb target build packages packages.tmp testdir test*.img pve-final.pkglist *.buildinfo *.changes country.dat final.pkglist
86 find . -name '*~' -exec rm {} ';'