From 6dadd28ae18707eaa8cdb4fc2336e540b5cdca65 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 23 Jan 2018 08:19:56 +0100 Subject: [PATCH] buildsys: ad BUILDDIR variable allows easier reading --- Makefile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 537cd70..427ac9f 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,7 @@ VER=0.6 PKGREL=4 SRCDIR=novnc +BUILDDIR=${SRCDIR}.tmp ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH) @@ -16,11 +17,11 @@ all: ${DEB} .PHONY: deb deb: ${DEB} ${DEB}: | submodule - rm -rf ${SRCDIR}.tmp - cp -rpa ${SRCDIR} ${SRCDIR}.tmp - cp -a debian ${SRCDIR}.tmp/ - echo "git clone git://git.proxmox.com/git/novnc-pve.git\\ngit checkout ${GITVERSION}" > ${SRCDIR}.tmp/debian/SOURCE - cd ${SRCDIR}.tmp; dpkg-buildpackage -rfakeroot -b -uc -us + rm -rf ${BUILDDIR} + cp -rpa ${SRCDIR} ${BUILDDIR} + cp -a debian ${BUILDDIR} + echo "git clone git://git.proxmox.com/git/novnc-pve.git\\ngit checkout ${GITVERSION}" > ${BUILDDIR}/debian/SOURCE + cd ${BUILDDIR}; dpkg-buildpackage -rfakeroot -b -uc -us lintian ${DEB} @echo ${DEB} @@ -41,7 +42,7 @@ distclean: clean .PHONY: clean clean: - rm -rf *~ debian/*~ *_${ARCH}.deb ${SRCDIR}.tmp *_all.deb *.changes *.dsc *.buildinfo + rm -rf *~ debian/*~ *.deb ${BUILDDIR} *.changes *.dsc *.buildinfo .PHONY: dinstall dinstall: deb