]> git.proxmox.com Git - qemu-server.git/blobdiff - Makefile
bump version to 4.0-78
[qemu-server.git] / Makefile
index 70e52eba41b69e87ee22c693eff5dc08cad380fd..4e842cb383b81f740ee482beafd951361dbc19c9 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
-RELEASE=4.1
+RELEASE=4.2
 
 VERSION=4.0
 PACKAGE=qemu-server
-PKGREL=67
+PKGREL=78
 
 CFLAGS= -O2 -Werror -Wall -Wtype-limits -Wl,-z,relro 
 
@@ -16,6 +16,7 @@ VARLIBDIR=/var/lib/${PACKAGE}
 MANDIR=${PREFIX}/share/man
 DOCDIR=${PREFIX}/share/doc
 MAN1DIR=${MANDIR}/man1/
+MAN5DIR=${MANDIR}/man5/
 BASHCOMPLDIR=${PREFIX}/share/bash-completion/completions/
 export PERLDIR=${PREFIX}/share/perl5
 PERLINCDIR=${PERLDIR}/asm-x86_64
@@ -55,14 +56,15 @@ qmrestore.bash-completion:
        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 sparsecp vmtar control vm.conf.5 qm.bash-completion qmrestore.bash-completion
+PKGSOURCES=qm qm.1 qmrestore qmrestore.1 qmextract sparsecp vmtar control qm.conf.5 qm.bash-completion qmrestore.bash-completion
 
 .PHONY: install
 install: ${PKGSOURCES}
        install -d ${DESTDIR}/${SBINDIR}
        install -d ${DESTDIR}${LIBDIR}
        install -d ${DESTDIR}${VARLIBDIR}
-       install -d ${DESTDIR}/usr/share/man/man1
+       install -d ${DESTDIR}/${MAN1DIR}
+       install -d ${DESTDIR}/${MAN5DIR}
        install -d ${DESTDIR}/usr/share/man/man5
        install -d ${DESTDIR}/usr/share/${PACKAGE}
        install -m 0644 pve-usb.cfg ${DESTDIR}/usr/share/${PACKAGE}
@@ -79,12 +81,13 @@ install: ${PKGSOURCES}
        install -s -m 0755 sparsecp ${DESTDIR}${LIBDIR}
        install -D -m 0644 modules-load.conf ${DESTDIR}/etc/modules-load.d/qemu-server.conf
        install -m 0755 qmextract ${DESTDIR}${LIBDIR}
-       install -m 0644 qm.1 ${DESTDIR}/usr/share/man/man1/
-       gzip -9 ${DESTDIR}/usr/share/man/man1/qm.1
-       install -m 0644 qmrestore.1 ${DESTDIR}/usr/share/man/man1/
-       gzip -9 ${DESTDIR}/usr/share/man/man1/qmrestore.1
-       install -m 0644 vm.conf.5 ${DESTDIR}/usr/share/man/man5/
-       gzip -9 ${DESTDIR}/usr/share/man/man5/vm.conf.5
+       install -m 0644 qm.1 ${DESTDIR}/${MAN1DIR}
+       gzip -9 ${DESTDIR}/${MAN1DIR}/qm.1
+       install -m 0644 qmrestore.1 ${DESTDIR}/${MAN1DIR}
+       gzip -9 ${DESTDIR}/${MAN1DIR}/qmrestore.1
+       install -m 0644 qm.conf.5 ${DESTDIR}/${MAN5DIR}
+       gzip -9 ${DESTDIR}/${MAN5DIR}/qm.conf.5
+       cd ${DESTDIR}/${MAN5DIR}; ln -s qm.conf.5.gz vm.conf.5.gz
 
 .PHONY: deb ${DEB}
 deb ${DEB}: ${PKGSOURCES}
@@ -117,7 +120,7 @@ upload:
 .PHONY: clean
 clean:         
        make cleanup-docgen
-       rm -rf build *.deb control vzsyscalls.ph _h2ph_pre.ph ${PACKAGE}-*.tar.gz dist *.1.gz *.pod vmtar sparsecp *.tmp *.bash-completion
+       rm -rf build *.deb control vzsyscalls.ph _h2ph_pre.ph ${PACKAGE}-*.tar.gz dist *.1 *.5 *.pod vmtar sparsecp *.tmp *.bash-completion
        find . -name '*~' -exec rm {} ';'