]> git.proxmox.com Git - pve-manager.git/blob - Makefile
remove now unused translations
[pve-manager.git] / Makefile
1 include defines.mk
2
3 export SOURCE_DATE_EPOCH ?= $(shell dpkg-parsechangelog -STimestamp)
4
5 DESTDIR=
6
7 SUBDIRS = aplinfo PVE bin www
8
9 ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
10 GITVERSION:=$(shell cat .git/refs/heads/master)
11
12 DEB=${PACKAGE}_${VERSION}-${PACKAGERELEASE}_${ARCH}.deb
13
14 all: ${SUBDIRS}
15
16 check:
17 ${MAKE} -C bin/test check
18
19 %:
20 set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i $@; done
21
22 .PHONY: dinstall
23 dinstall: ${DEB}
24 dpkg -i ${DEB}
25
26 country.dat: country.pl
27 ./country.pl > country.dat
28
29 .PHONY: deb
30 deb: $(DEB)
31 $(DEB):
32 rm -rf dest
33 mkdir dest
34 rsync -a * dest
35 echo "git clone git://git.proxmox.com/git/pve-manager.git\\ngit checkout ${GITVERSION}" > dest/debian/SOURCE
36 cd dest; dpkg-buildpackage -b -us -uc
37 # supress lintian error: statically-linked-binary usr/bin/pvemailforward
38 lintian -X binaries ${DEB}
39
40 .PHONY: upload
41 upload: ${DEB} check
42 ./repoid.pl .git check
43 tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com upload --product pve --dist stretch
44
45 .PHONY: install
46 install: country.dat vzdump.conf vzdump-hook-script.pl pve-apt.conf mtu bridgevlan bridgevlanport vlan vlan-down
47 install -d -m 0700 -o www-data -g www-data ${DESTDIR}/var/log/pveproxy
48 install -D -m 0644 debian/pve.logrotate ${DESTDIR}/etc/logrotate.d/pve
49 install -d ${DESTDIR}/usr/share/${PACKAGE}
50 install -d ${DESTDIR}/usr/share/man/man1
51 install -d ${DOCDIR}/examples
52 install -d ${DESTDIR}/var/lib/${PACKAGE}
53 install -d ${DESTDIR}/var/lib/vz/images
54 install -d ${DESTDIR}/var/lib/vz/template/cache
55 install -d ${DESTDIR}/var/lib/vz/template/iso
56 install -d ${DESTDIR}/var/lib/vz/template/qemu
57 install -D -m 0644 pve-apt.conf ${DESTDIR}/etc/apt/apt.conf.d/75pveconf
58 install -D -m 0644 pve-sources.list ${DESTDIR}/etc/apt/sources.list.d/pve-enterprise.list
59 install -D -m 0644 pve-blacklist.conf ${DESTDIR}/etc/modprobe.d/pve-blacklist.conf
60 install -D -m 0644 vzdump.conf ${DESTDIR}/etc/vzdump.conf
61 install -D -m 0755 mtu ${DESTDIR}/etc/network/if-up.d/mtu
62 install -D -m 0755 bridgevlan ${DESTDIR}/etc/network/if-up.d/bridgevlan
63 install -D -m 0755 bridgevlanport ${DESTDIR}/etc/network/if-up.d/bridgevlanport
64 install -D -m 0755 vlan ${DESTDIR}/etc/network/if-pre-up.d/vlan
65 install -D -m 0755 vlan-down ${DESTDIR}/etc/network/if-post-down.d/vlan
66
67 install -D -m 0644 pve-initramfs.conf ${DESTDIR}/etc/initramfs-tools/conf.d/pve-initramfs.conf
68
69 install -m 0644 vzdump-hook-script.pl ${DOCDIR}/examples/vzdump-hook-script.pl
70 install -m 0644 spice-example-sh ${DOCDIR}/examples/spice-example-sh
71 install -m 0644 country.dat ${DESTDIR}/usr/share/${PACKAGE}
72
73 set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i $@; done
74
75 .PHONY: distclean
76 distclean: clean
77
78 .PHONY: clean
79 clean:
80 set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i $@; done
81 find . -name '*~' -exec rm {} ';'
82 rm -rf dest country.dat *.deb *.buildinfo *.changes ca-tmp