]> git.proxmox.com Git - qemu-server.git/blob - Makefile
buildsys: job-safe deb target
[qemu-server.git] / Makefile
1 VERSION=4.0
2 PACKAGE=qemu-server
3 PKGREL=107
4
5 CFLAGS= -O2 -Werror -Wall -Wtype-limits -Wl,-z,relro
6
7 DESTDIR=
8 PREFIX=/usr
9 BINDIR=${PREFIX}/bin
10 SBINDIR=${PREFIX}/sbin
11 BINDIR=${PREFIX}/bin
12 LIBDIR=${PREFIX}/lib/${PACKAGE}
13 VARLIBDIR=/var/lib/${PACKAGE}
14 MANDIR=${PREFIX}/share/man
15 DOCDIR=${PREFIX}/share/doc
16 MAN1DIR=${MANDIR}/man1/
17 MAN5DIR=${MANDIR}/man5/
18 BASHCOMPLDIR=${PREFIX}/share/bash-completion/completions/
19 export PERLDIR=${PREFIX}/share/perl5
20 PERLINCDIR=${PERLDIR}/asm-x86_64
21
22 ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
23 GITVERSION:=$(shell cat .git/refs/heads/master)
24
25 DEB=${PACKAGE}_${VERSION}-${PKGREL}_${ARCH}.deb
26
27 # this requires package pve-doc-generator
28 export NOVIEW=1
29 include /usr/share/pve-doc-generator/pve-doc-generator.mk
30
31 all: ${DEB}
32
33 .PHONY: dinstall
34 dinstall: deb
35 dpkg -i ${DEB}
36
37 control: control.in
38 sed -e s/@@VERSION@@/${VERSION}/ -e s/@@PKGRELEASE@@/${PKGREL}/ -e s/@@ARCH@@/${ARCH}/<$< >$@
39
40 vzsyscalls.ph: vzsyscalls.h
41 h2ph -d . vzsyscalls.h
42
43 vmtar: vmtar.c utils.c
44 gcc ${CFLAGS} -o vmtar vmtar.c
45
46 sparsecp: sparsecp.c utils.c
47 gcc ${CFLAGS} -o sparsecp sparsecp.c
48
49 qm.bash-completion:
50 perl -I. -T -e "use PVE::CLI::qm; PVE::CLI::qm->generate_bash_completions();" >$@.tmp
51 mv $@.tmp $@
52
53 qmrestore.bash-completion:
54 perl -I. -T -e "use PVE::CLI::qmrestore; PVE::CLI::qmrestore->generate_bash_completions();" >$@.tmp
55 mv $@.tmp $@
56
57 PKGSOURCES=qm qm.1 qmrestore qmrestore.1 qmextract sparsecp vmtar control qm.conf.5 qm.bash-completion qmrestore.bash-completion
58
59 .PHONY: install
60 install: ${PKGSOURCES}
61 install -d ${DESTDIR}/${SBINDIR}
62 install -d ${DESTDIR}${LIBDIR}
63 install -d ${DESTDIR}${VARLIBDIR}
64 install -d ${DESTDIR}/${MAN1DIR}
65 install -d ${DESTDIR}/${MAN5DIR}
66 install -d ${DESTDIR}/usr/share/man/man5
67 install -d ${DESTDIR}/usr/share/${PACKAGE}
68 install -m 0644 pve-usb.cfg ${DESTDIR}/usr/share/${PACKAGE}
69 install -m 0644 pve-q35.cfg ${DESTDIR}/usr/share/${PACKAGE}
70 install -m 0644 -D qm.bash-completion ${DESTDIR}/${BASHCOMPLDIR}/qm
71 install -m 0644 -D qmrestore.bash-completion ${DESTDIR}/${BASHCOMPLDIR}/qmrestore
72 install -m 0644 -D bootsplash.jpg ${DESTDIR}/usr/share/${PACKAGE}
73 make -C PVE install
74 install -m 0755 qm ${DESTDIR}${SBINDIR}
75 install -m 0755 qmrestore ${DESTDIR}${SBINDIR}
76 install -m 0755 pve-bridge ${DESTDIR}${VARLIBDIR}/pve-bridge
77 install -m 0755 pve-bridge-hotplug ${DESTDIR}${VARLIBDIR}/pve-bridge-hotplug
78 install -m 0755 pve-bridgedown ${DESTDIR}${VARLIBDIR}/pve-bridgedown
79 install -s -m 0755 vmtar ${DESTDIR}${LIBDIR}
80 install -s -m 0755 sparsecp ${DESTDIR}${LIBDIR}
81 install -D -m 0644 modules-load.conf ${DESTDIR}/etc/modules-load.d/qemu-server.conf
82 install -m 0755 qmextract ${DESTDIR}${LIBDIR}
83 install -m 0644 qm.1 ${DESTDIR}/${MAN1DIR}
84 gzip -9 ${DESTDIR}/${MAN1DIR}/qm.1
85 install -m 0644 qmrestore.1 ${DESTDIR}/${MAN1DIR}
86 gzip -9 ${DESTDIR}/${MAN1DIR}/qmrestore.1
87 install -m 0644 qm.conf.5 ${DESTDIR}/${MAN5DIR}
88 gzip -9 ${DESTDIR}/${MAN5DIR}/qm.conf.5
89 cd ${DESTDIR}/${MAN5DIR}; ln -s qm.conf.5.gz vm.conf.5.gz
90
91 .PHONY: deb
92 deb: ${DEB}
93 ${DEB}: ${PKGSOURCES}
94 rm -f *.deb
95 rm -rf build
96 mkdir build
97 make DESTDIR=${CURDIR}/build install
98 perl -I. ./qm verifyapi
99 install -d -m 0755 build/DEBIAN
100 install -m 0644 control build/DEBIAN
101 install -m 0644 triggers build/DEBIAN
102 echo "/etc/modules-load.d/qemu-server.conf" >>build/DEBIAN/conffiles
103 install -D -m 0644 copyright build/${DOCDIR}/${PACKAGE}/copyright
104 install -m 0644 changelog.Debian build/${DOCDIR}/${PACKAGE}/
105 gzip -9 build/${DOCDIR}/${PACKAGE}/changelog.Debian
106 echo "git clone git://git.proxmox.com/git/qemu-server.git\\ngit checkout ${GITVERSION}" > build/${DOCDIR}/${PACKAGE}/SOURCE
107 dpkg-deb --build build
108 mv build.deb ${DEB}
109 lintian ${DEB}
110
111 .PHONY: upload
112 upload: ${DEB}
113 tar cf - ${DEB} | ssh repoman@repo.proxmox.com upload
114
115 .PHONY: clean
116 clean:
117 make cleanup-docgen
118 rm -rf build *.deb control vzsyscalls.ph _h2ph_pre.ph ${PACKAGE}-*.tar.gz dist *.1 *.5 *.pod vmtar sparsecp *.tmp *.bash-completion
119 find . -name '*~' -exec rm {} ';'
120
121
122 .PHONY: distclean
123 distclean: clean