makefile: convert to use simple parenthesis
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
be7ce325c7
commit
3c995a426d
10
Makefile
10
Makefile
@ -3,21 +3,21 @@ include /usr/share/dpkg/default.mk
|
|||||||
PACKAGE = pve-qemu-kvm
|
PACKAGE = pve-qemu-kvm
|
||||||
|
|
||||||
SRCDIR := qemu
|
SRCDIR := qemu
|
||||||
BUILDDIR ?= ${PACKAGE}-${DEB_VERSION_UPSTREAM}
|
BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION_UPSTREAM)
|
||||||
ORIG_SRC_TAR=$(PACKAGE)_$(DEB_VERSION_UPSTREAM).orig.tar.gz
|
ORIG_SRC_TAR=$(PACKAGE)_$(DEB_VERSION_UPSTREAM).orig.tar.gz
|
||||||
|
|
||||||
GITVERSION := $(shell git rev-parse HEAD)
|
GITVERSION := $(shell git rev-parse HEAD)
|
||||||
|
|
||||||
DSC=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION).dsc
|
DSC=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION).dsc
|
||||||
DEB = ${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb
|
DEB = $(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION)_$(DEB_BUILD_ARCH).deb
|
||||||
DEB_DBG = ${PACKAGE}-dbg_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb
|
DEB_DBG = $(PACKAGE)-dbg_$(DEB_VERSION_UPSTREAM_REVISION)_$(DEB_BUILD_ARCH).deb
|
||||||
DEBS = $(DEB) $(DEB_DBG)
|
DEBS = $(DEB) $(DEB_DBG)
|
||||||
|
|
||||||
all: $(DEBS)
|
all: $(DEBS)
|
||||||
|
|
||||||
.PHONY: submodule
|
.PHONY: submodule
|
||||||
submodule:
|
submodule:
|
||||||
test -f "${SRCDIR}/configure" || git submodule update --init --recursive
|
test -f "$(SRCDIR)/configure" || git submodule update --init --recursive
|
||||||
|
|
||||||
PC_BIOS_FW_PURGE_LIST_IN = \
|
PC_BIOS_FW_PURGE_LIST_IN = \
|
||||||
hppa-firmware.img \
|
hppa-firmware.img \
|
||||||
@ -86,7 +86,7 @@ update:
|
|||||||
.PHONY: upload
|
.PHONY: upload
|
||||||
upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
|
upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
|
||||||
upload: $(DEBS)
|
upload: $(DEBS)
|
||||||
tar cf - ${DEBS} | ssh repoman@repo.proxmox.com upload --product pve --dist $(UPLOAD_DIST)
|
tar cf - $(DEBS) | ssh repoman@repo.proxmox.com upload --product pve --dist $(UPLOAD_DIST)
|
||||||
|
|
||||||
.PHONY: distclean clean
|
.PHONY: distclean clean
|
||||||
distclean: clean
|
distclean: clean
|
||||||
|
Loading…
Reference in New Issue
Block a user