From fde1adc6798c7e808b84dee709608d0acc08bb9e Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Fri, 10 Feb 2017 14:16:35 +0100 Subject: [PATCH] buildsys: more make job safety fixes --- Makefile | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index d80af06..14eae6a 100644 --- a/Makefile +++ b/Makefile @@ -10,21 +10,23 @@ SRCTAR=${SRCDIR}.tgz ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH) GITVERSION:=$(shell cat .git/refs/heads/master) -DEB=${PACKAGE}_${PKGVER}-${DEBREL}_${ARCH}.deb \ - ${PACKAGE}-dbg_${PKGVER}-${DEBREL}_${ARCH}.deb +DEB1=${PACKAGE}_${PKGVER}-${DEBREL}_${ARCH}.deb +DEB2=${PACKAGE}-dbg_${PKGVER}-${DEBREL}_${ARCH}.deb +DEBS=$(DEB1) $(DEB2) all: ${DEB} .PHONY: deb -deb: ${DEB} -${DEB}: ${SRCTAR} +deb: $(DEBS) +$(DEB2): $(DEB1) +$(DEB1): $(SRCTAR) rm -rf ${SRCDIR} tar xf ${SRCTAR} cp -a debian ${SRCDIR}/debian echo "git clone git://git.proxmox.com/git/lxcfs.git\\ngit checkout ${GITVERSION}" > ${SRCDIR}/debian/SOURCE echo "debian/SOURCE" >> ${SRCDIR}/debian/docs cd ${SRCDIR}; dpkg-buildpackage -rfakeroot -b -us -uc - #lintian ${DEB} + #lintian $(DEB) .PHONY: download @@ -35,13 +37,13 @@ download ${SRCTAR}: mv ${SRCTAR}.tmp ${SRCTAR} .PHONY: upload -upload: ${DEB} +upload: $(DEBS) umount /pve/${RELEASE}; mount /pve/${RELEASE} -o rw mkdir -p /pve/${RELEASE}/extra rm -f /pve/${RELEASE}/extra/${PACKAGE}_*.deb rm -f /pve/${RELEASE}/extra/${PACKAGE}-dbg_*.deb rm -f /pve/${RELEASE}/extra/Packages* - cp ${DEB} /pve/${RELEASE}/extra + cp $(DEBS) /pve/${RELEASE}/extra cd /pve/${RELEASE}/extra; dpkg-scanpackages . /dev/null > Packages; gzip -9c Packages > Packages.gz umount /pve/${RELEASE}; mount /pve/${RELEASE} -o ro @@ -53,5 +55,5 @@ clean: find . -name '*~' -exec rm {} ';' .PHONY: dinstall -dinstall: ${DEB} - dpkg -i ${DEB} +dinstall: $(DEBS) + dpkg -i $(DEBS) -- 2.39.2