]> git.proxmox.com Git - pve-installer.git/blame - Makefile
fix product names according to branding guideline
[pve-installer.git] / Makefile
CommitLineData
dad62fce 1include /usr/share/dpkg/pkg-info.mk
6db9b06a 2
dad62fce
TL
3PVE_DEB=pve-installer_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
4PMG_DEB=pmg-installer_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
53748662 5PBS_DEB=pbs-installer_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
a8213c0e 6
53748662 7DEBS = ${PVE_DEB} ${PMG_DEB} ${PBS_DEB}
89a12446
DM
8
9INSTALLER_SOURCES= \
10 unconfigured.sh \
89a12446 11 fake-start-stop-daemon \
89a12446 12 interfaces \
782b4acd
DM
13 pmg-banner.png \
14 pve-banner.png \
53748662 15 pbs-banner.png \
89a12446 16 checktime \
f6ba5aa4
DM
17 xinitrc \
18 Xdefaults \
f0583fd4 19 country.dat \
89a12446
DM
20 proxinstall
21
44610685
DM
22HTML_SOURCES=$(wildcard html/*.htm)
23HTML_COMMON_SOURCES=$(wildcard html-common/*.htm) $(wildcard html-common/*.css) $(wildcard html-common/*.png)
89a12446 24
f0583fd4
DM
25all: ${INSTALLER_SOURCES} ${HTML_COMMON_SOURCES} ${HTML_SOURCES}
26
27country.dat: country.pl
28 ./country.pl > country.dat
780479c5 29
53748662 30deb: ${DEBS}
a8213c0e 31${DEBS}: ${INSTALLER_SOURCES} ${HTML_COMMON_SOURCES} ${HTML_SOURCES}
bf1de878 32 rsync --exclude='test*.img' -a * build
c5582ca4 33 cd build; dpkg-buildpackage -b -us -uc
6db9b06a 34 lintian -X man ${PVE_DEB}
a8213c0e 35 lintian -X man ${PMG_DEB}
53748662 36 lintian -X man ${PBS_DEB}
89a12446
DM
37
38.phony: install
44610685
DM
39install: ${INSTALLER_SOURCES} ${HTML_COMMON_SOURCES} ${HTML_SOURCES}
40 make -C html-common install
89a12446 41 install -D -m 644 interfaces ${DESTDIR}/etc/network/interfaces
89a12446 42 install -D -m 755 fake-start-stop-daemon ${DESTDIR}/var/lib/pve-installer/fake-start-stop-daemon
790a4be9 43 install -D -m 644 country.dat ${DESTDIR}/var/lib/pve-installer/country.dat
89a12446
DM
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
89a12446 49
782b4acd 50pmg-banner.png: pmg-banner.svg
9b9ddfce 51 rsvg-convert -o $@ $<
782b4acd
DM
52
53pve-banner.png: pve-banner.svg
9b9ddfce 54 rsvg-convert -o $@ $<
782b4acd 55
53748662
OB
56pbs-banner.png: pbs-banner.svg
57 rsvg-convert -o $@ $<
58
27533adb
DM
59.phony: upload-pmg
60upload-pmg: ${PMG_DEB}
61 tar cf - ${PMG_DEB} | ssh -X repoman@repo.proxmox.com -- upload --product pmg --dist stretch
62
63.phony: upload-pve
64upload-pve: ${PVE_DEB}
292dd984 65 tar cf - ${PVE_DEB} | ssh -X repoman@repo.proxmox.com -- upload --product pve --dist buster
89a12446 66
76960140
TL
67%.img:
68 truncate -s 2G $@
89a12446 69
6db9b06a 70check-pve: ${PVE_DEB} test.img
56510a19 71 umount -Rd testdir || true
92cbd446 72 rm -rf testdir
6db9b06a 73 dpkg -X ${PVE_DEB} testdir
92cbd446 74 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
89a12446 75
76960140 76check-pve-multidisks: ${PVE_DEB} test.img test2.img test3.img test4.img
56510a19 77 umount -Rd testdir || true
76960140
TL
78 rm -rf testdir
79 dpkg -X ${PVE_DEB} testdir
80 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img,test2.img,test3.img,test4.img
81
a8213c0e 82check-pmg: ${PMG_DEB} test.img
56510a19 83 umount -Rd testdir || true
a8213c0e
DM
84 rm -rf testdir
85 dpkg -X ${PMG_DEB} testdir
86 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
87
53748662
OB
88check-pbs: ${PBS_DEB} test.img
89 umount -Rd testdir || true
90 rm -rf testdir
91 dpkg -X ${PBS_DEB} testdir
92 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
93
94
89a12446
DM
95.phony: clean
96clean:
56510a19 97 umount -Rd testdir || true
44610685 98 make -C html-common clean
76960140 99 rm -rf *~ *.deb target build packages packages.tmp testdir test*.img pve-final.pkglist *.buildinfo *.changes country.dat final.pkglist
b1e23923 100 find . -name '*~' -exec rm {} ';'