]> git.proxmox.com Git - qemu-server.git/blobdiff - Makefile
use foreach_drive in foreach_storage_used_by_vm
[qemu-server.git] / Makefile
index 04ad27901b3d3e509643d8c547e78483ec6608a8..25eb34fffd5b6f56b6ea149249e3150d83bd3054 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 VERSION=5.0
 PACKAGE=qemu-server
-PKGREL=6
+PKGREL=15
 
 CFLAGS= -O2 -Werror -Wall -Wtype-limits -Wl,-z,relro 
 
@@ -36,12 +36,6 @@ all:
 dinstall: deb
        dpkg -i ${DEB}
 
-vmtar: vmtar.c utils.c
-       gcc ${CFLAGS} -o vmtar vmtar.c
-
-sparsecp: sparsecp.c utils.c
-       gcc ${CFLAGS} -o sparsecp sparsecp.c
-
 qm.bash-completion:
        PVE_GENERATING_DOCS=1 perl -I. -T -e "use PVE::CLI::qm; PVE::CLI::qm->generate_bash_completions();" >$@.tmp
        mv $@.tmp $@
@@ -50,7 +44,7 @@ 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 sparsecp vmtar qm.conf.5 qm.bash-completion qmrestore.bash-completion
+PKGSOURCES=qm qm.1 qmrestore qmrestore.1 qmextract qm.conf.5 qm.bash-completion qmrestore.bash-completion
 
 .PHONY: install
 install: ${PKGSOURCES}
@@ -72,8 +66,6 @@ install: ${PKGSOURCES}
        install -m 0755 pve-bridge ${DESTDIR}${VARLIBDIR}/pve-bridge
        install -m 0755 pve-bridge-hotplug ${DESTDIR}${VARLIBDIR}/pve-bridge-hotplug
        install -m 0755 pve-bridgedown ${DESTDIR}${VARLIBDIR}/pve-bridgedown
-       install -s -m 0755 vmtar ${DESTDIR}${LIBDIR}
-       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}/${MAN1DIR}
@@ -89,9 +81,8 @@ deb: ${DEB}
 ${DEB}:
        rm -rf build
        rsync -a * build
-       sed -e s/@@ARCH@@/${ARCH}/ <debian/control.in >build/debian/control
        echo "git clone git://git.proxmox.com/git/qemu-server.git\\ngit checkout ${GITVERSION}" > build/debian/SOURCE
-       cd build; dpkg-buildpackage -rfakeroot -b -us -uc
+       cd build; dpkg-buildpackage -b -us -uc
        lintian ${DEB}
 
 .PHONY: test