From fc81777b3de55fdde599798ac0c3a3c55f72e548 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Mon, 22 May 2023 12:30:42 +0200 Subject: [PATCH] src/makefile: convert to use simple parenthesis Signed-off-by: Thomas Lamprecht --- Makefile | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/Makefile b/Makefile index 5e5c103..a6a2f64 100644 --- a/Makefile +++ b/Makefile @@ -2,40 +2,40 @@ include /usr/share/dpkg/pkg-info.mk PACKAGE=libpve-guest-common-perl -DEB=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_all.deb -DSC=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}.dsc +DEB=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION)_all.deb +DSC=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION).dsc -BUILDDIR ?= ${PACKAGE}-${DEB_VERSION_UPSTREAM} +BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION_UPSTREAM) all: -${BUILDDIR}: - rm -rf ${BUILDDIR} - cp -a src ${BUILDDIR} - cp -a debian ${BUILDDIR}/ - echo "git clone git://git.proxmox.com/git/pve-guest-common.git\\ngit checkout ${GITVERSION}" > ${BUILDDIR}/debian/SOURCE +$(BUILDDIR): + rm -rf $(BUILDDIR) + cp -a src $(BUILDDIR) + cp -a debian $(BUILDDIR)/ + echo "git clone git://git.proxmox.com/git/pve-guest-common.git\\ngit checkout $(GITVERSION)" > $(BUILDDIR)/debian/SOURCE .PHONY: deb -deb: ${DEB} -${DEB}: ${BUILDDIR} - cd ${BUILDDIR}; dpkg-buildpackage -b -us -uc - lintian ${DEB} +deb: $(DEB) +$(DEB): $(BUILDDIR) + cd $(BUILDDIR); dpkg-buildpackage -b -us -uc + lintian $(DEB) .PHONY: dsc -dsc: ${DSC} -${DSC}: ${BUILDDIR} - cd ${BUILDDIR}; dpkg-buildpackage -S -us -uc -d -nc - lintian ${DSC} +dsc: $(DSC) +$(DSC): $(BUILDDIR) + cd $(BUILDDIR); dpkg-buildpackage -S -us -uc -d -nc + lintian $(DSC) .PHONY: upload -upload: ${DEB} - tar cf - ${DEB} | ssh repoman@repo.proxmox.com -- upload --product pve --dist bullseye +upload: $(DEB) + tar cf - $(DEB) | ssh repoman@repo.proxmox.com -- upload --product pve --dist bullseye distclean: clean clean: - rm -rf ${BUILDDIR} *.deb *.dsc *.changes *.buildinfo *.tar.gz + rm -rf $(BUILDDIR) *.deb *.dsc *.changes *.buildinfo *.tar.gz .PHONY: dinstall -dinstall: ${DEB} - dpkg -i ${DEB} +dinstall: $(DEB) + dpkg -i $(DEB)