]> git.proxmox.com Git - qemu-server.git/blobdiff - Makefile
bump version to 5.0-50
[qemu-server.git] / Makefile
index 03c2e83f9080863f5685430c2cb76ddd3b22a677..3f37cbd84ddd5c5b837c5f4a20a3d1d4940078c1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
 VERSION=5.0
 PACKAGE=qemu-server
-PKGREL=40
+PKGREL=50
 
-CFLAGS=-O2 -Werror -Wall -Wextra -Wpedantic -Wtype-limits -Wl,-z,relro -std=gnu11
+CFLAGS+=-O2 -Werror -Wall -Wextra -Wpedantic -Wtype-limits -Wl,-z,relro -std=gnu11
 JSON_CFLAGS=$(shell pkg-config --cflags json-c)
 JSON_LIBS=$(shell pkg-config --libs json-c)
 
@@ -20,6 +20,7 @@ MAN1DIR=${MANDIR}/man1/
 MAN5DIR=${MANDIR}/man5/
 MAN8DIR=${MANDIR}/man8/
 BASHCOMPLDIR=${PREFIX}/share/bash-completion/completions/
+ZSHCOMPLDIR=${PREFIX}/share/zsh/vendor-completions/
 export PERLDIR=${PREFIX}/share/perl5
 PERLINCDIR=${PERLDIR}/asm-x86_64
 
@@ -27,6 +28,9 @@ ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
 GITVERSION:=$(shell git rev-parse HEAD)
 
 DEB=${PACKAGE}_${VERSION}-${PKGREL}_${ARCH}.deb
+DBG_DEB=${PACKAGE}-dbgsym_${VERSION}-${PKGREL}_${ARCH}.deb
+
+DEBS=${DEB} ${DBG_DEB}
 
 # this requires package pve-doc-generator
 export NOVIEW=1
@@ -51,7 +55,16 @@ qmrestore.bash-completion:
        PVE_GENERATING_DOCS=1 perl -I. -T -e "use PVE::CLI::qmrestore; PVE::CLI::qmrestore->generate_bash_completions();" >$@.tmp
        mv $@.tmp $@
 
-PKGSOURCES=qm qm.1 qmrestore qmrestore.1 qmextract qm.conf.5 qm.bash-completion qmrestore.bash-completion qmeventd qmeventd.8
+qm.zsh-completion:
+       PVE_GENERATING_DOCS=1 perl -I. -T -e "use PVE::CLI::qm; PVE::CLI::qm->generate_zsh_completions();" >$@.tmp
+       mv $@.tmp $@
+
+qmrestore.zsh-completion:
+       PVE_GENERATING_DOCS=1 perl -I. -T -e "use PVE::CLI::qmrestore; PVE::CLI::qmrestore->generate_zsh_completions();" >$@.tmp
+       mv $@.tmp $@
+
+PKGSOURCES=qm qm.1 qmrestore qmrestore.1 qmextract qm.conf.5 qm.bash-completion qmrestore.bash-completion \
+           qm.zsh-completion qmrestore.zsh-completion qmeventd qmeventd.8
 
 .PHONY: install
 install: ${PKGSOURCES}
@@ -68,6 +81,8 @@ install: ${PKGSOURCES}
        install -m 0644 pve-q35.cfg ${DESTDIR}/usr/share/${PACKAGE}
        install -m 0644 -D qm.bash-completion ${DESTDIR}/${BASHCOMPLDIR}/qm
        install -m 0644 -D qmrestore.bash-completion ${DESTDIR}/${BASHCOMPLDIR}/qmrestore
+       install -m 0644 -D qm.zsh-completion ${DESTDIR}/${ZSHCOMPLDIR}/_qm
+       install -m 0644 -D qmrestore.zsh-completion ${DESTDIR}/${ZSHCOMPLDIR}/_qmrestore
        install -m 0644 -D bootsplash.jpg ${DESTDIR}/usr/share/${PACKAGE}
        make -C PVE install
        install -m 0755 qm ${DESTDIR}${SBINDIR}
@@ -90,13 +105,14 @@ install: ${PKGSOURCES}
        cd ${DESTDIR}/${MAN5DIR}; ln -s -f qm.conf.5.gz vm.conf.5.gz
 
 .PHONY: deb
-deb: ${DEB}
+deb: ${DEBS}
+${DBG_DEB}: ${DEB}
 ${DEB}:
        rm -rf build
        rsync -a * build
        echo "git clone git://git.proxmox.com/git/qemu-server.git\\ngit checkout ${GITVERSION}" > build/debian/SOURCE
        cd build; dpkg-buildpackage -b -us -uc
-       lintian ${DEB}
+       lintian ${DEBS}
 
 .PHONY: test
 test:
@@ -105,7 +121,7 @@ test:
 
 .PHONY: upload
 upload: ${DEB}
-       tar cf - ${DEB} | ssh repoman@repo.proxmox.com upload --product pve --dist stretch
+       tar cf - ${DEBS} | ssh repoman@repo.proxmox.com upload --product pve --dist stretch
 
 .PHONY: clean
 clean: