]> git.proxmox.com Git - qemu-server.git/blame - Makefile
build: make control static
[qemu-server.git] / Makefile
CommitLineData
36ca08b7 1VERSION=5.0
1e3baf05 2PACKAGE=qemu-server
77b4c607 3PKGREL=6
1e3baf05 4
4841125d
DM
5CFLAGS= -O2 -Werror -Wall -Wtype-limits -Wl,-z,relro
6
1e3baf05
DM
7DESTDIR=
8PREFIX=/usr
9BINDIR=${PREFIX}/bin
10SBINDIR=${PREFIX}/sbin
11BINDIR=${PREFIX}/bin
12LIBDIR=${PREFIX}/lib/${PACKAGE}
13VARLIBDIR=/var/lib/${PACKAGE}
14MANDIR=${PREFIX}/share/man
15DOCDIR=${PREFIX}/share/doc
1e3baf05 16MAN1DIR=${MANDIR}/man1/
358297e0 17MAN5DIR=${MANDIR}/man5/
f3e76e36 18BASHCOMPLDIR=${PREFIX}/share/bash-completion/completions/
1e3baf05
DM
19export PERLDIR=${PREFIX}/share/perl5
20PERLINCDIR=${PERLDIR}/asm-x86_64
21
22ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
2354a8bb
DM
23GITVERSION:=$(shell cat .git/refs/heads/master)
24
1e3baf05
DM
25DEB=${PACKAGE}_${VERSION}-${PKGREL}_${ARCH}.deb
26
f625f7f6
DM
27# this requires package pve-doc-generator
28export NOVIEW=1
29include /usr/share/pve-doc-generator/pve-doc-generator.mk
30
88c9e280
TL
31export SOURCE_DATE_EPOCH ?= $(shell dpkg-parsechangelog -STimestamp)
32
33all:
1e3baf05
DM
34
35.PHONY: dinstall
36dinstall: deb
37 dpkg -i ${DEB}
38
1e3baf05 39vmtar: vmtar.c utils.c
4841125d 40 gcc ${CFLAGS} -o vmtar vmtar.c
1e3baf05
DM
41
42sparsecp: sparsecp.c utils.c
4841125d 43 gcc ${CFLAGS} -o sparsecp sparsecp.c
1e3baf05 44
f3e76e36 45qm.bash-completion:
3227a101 46 PVE_GENERATING_DOCS=1 perl -I. -T -e "use PVE::CLI::qm; PVE::CLI::qm->generate_bash_completions();" >$@.tmp
f3e76e36 47 mv $@.tmp $@
1e3baf05 48
cc7b93ec 49qmrestore.bash-completion:
3227a101 50 PVE_GENERATING_DOCS=1 perl -I. -T -e "use PVE::CLI::qmrestore; PVE::CLI::qmrestore->generate_bash_completions();" >$@.tmp
cc7b93ec 51 mv $@.tmp $@
3e16d5fc 52
88c9e280 53PKGSOURCES=qm qm.1 qmrestore qmrestore.1 qmextract sparsecp vmtar qm.conf.5 qm.bash-completion qmrestore.bash-completion
1e3baf05
DM
54
55.PHONY: install
56install: ${PKGSOURCES}
57 install -d ${DESTDIR}/${SBINDIR}
1e3baf05
DM
58 install -d ${DESTDIR}${LIBDIR}
59 install -d ${DESTDIR}${VARLIBDIR}
358297e0
DM
60 install -d ${DESTDIR}/${MAN1DIR}
61 install -d ${DESTDIR}/${MAN5DIR}
1e3baf05
DM
62 install -d ${DESTDIR}/usr/share/man/man5
63 install -d ${DESTDIR}/usr/share/${PACKAGE}
64 install -m 0644 pve-usb.cfg ${DESTDIR}/usr/share/${PACKAGE}
f8e83f05 65 install -m 0644 pve-q35.cfg ${DESTDIR}/usr/share/${PACKAGE}
f3e76e36 66 install -m 0644 -D qm.bash-completion ${DESTDIR}/${BASHCOMPLDIR}/qm
cc7b93ec 67 install -m 0644 -D qmrestore.bash-completion ${DESTDIR}/${BASHCOMPLDIR}/qmrestore
dbea4415 68 install -m 0644 -D bootsplash.jpg ${DESTDIR}/usr/share/${PACKAGE}
1e3baf05
DM
69 make -C PVE install
70 install -m 0755 qm ${DESTDIR}${SBINDIR}
1e3baf05 71 install -m 0755 qmrestore ${DESTDIR}${SBINDIR}
1e3baf05 72 install -m 0755 pve-bridge ${DESTDIR}${VARLIBDIR}/pve-bridge
208ba94e 73 install -m 0755 pve-bridge-hotplug ${DESTDIR}${VARLIBDIR}/pve-bridge-hotplug
011c5817 74 install -m 0755 pve-bridgedown ${DESTDIR}${VARLIBDIR}/pve-bridgedown
1e3baf05
DM
75 install -s -m 0755 vmtar ${DESTDIR}${LIBDIR}
76 install -s -m 0755 sparsecp ${DESTDIR}${LIBDIR}
4841125d 77 install -D -m 0644 modules-load.conf ${DESTDIR}/etc/modules-load.d/qemu-server.conf
3e16d5fc 78 install -m 0755 qmextract ${DESTDIR}${LIBDIR}
358297e0 79 install -m 0644 qm.1 ${DESTDIR}/${MAN1DIR}
befb7c46 80 gzip -9 -n ${DESTDIR}/${MAN1DIR}/qm.1
358297e0 81 install -m 0644 qmrestore.1 ${DESTDIR}/${MAN1DIR}
befb7c46 82 gzip -9 -n ${DESTDIR}/${MAN1DIR}/qmrestore.1
358297e0 83 install -m 0644 qm.conf.5 ${DESTDIR}/${MAN5DIR}
befb7c46 84 gzip -9 -n ${DESTDIR}/${MAN5DIR}/qm.conf.5
c881ad2f 85 cd ${DESTDIR}/${MAN5DIR}; ln -s qm.conf.5.gz vm.conf.5.gz
1e3baf05 86
ffc0bacf 87.PHONY: deb
e448dcf3 88deb: ${DEB}
88c9e280 89${DEB}:
81425ee8 90 rm -rf build
88c9e280 91 rsync -a * build
88c9e280
TL
92 echo "git clone git://git.proxmox.com/git/qemu-server.git\\ngit checkout ${GITVERSION}" > build/debian/SOURCE
93 cd build; dpkg-buildpackage -rfakeroot -b -us -uc
485e8e1d 94 lintian ${DEB}
1e3baf05 95
88c9e280
TL
96.PHONY: test
97test:
98 PVE_GENERATING_DOCS=1 perl -I. ./qm verifyapi
35c78505
FG
99 make -C test
100
1e3baf05 101.PHONY: upload
dae9b620 102upload: ${DEB}
36ca08b7 103 tar cf - ${DEB} | ssh repoman@repo.proxmox.com upload --product pve --dist stretch
1e3baf05
DM
104
105.PHONY: clean
88c9e280 106clean:
f625f7f6 107 make cleanup-docgen
88c9e280 108 rm -rf build *.deb *.buildinfo *.changes
1e3baf05
DM
109 find . -name '*~' -exec rm {} ';'
110
111
112.PHONY: distclean
113distclean: clean