makefile: convert to use simple parenthesis

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2023-05-18 16:01:14 +02:00
parent 4a834b4edd
commit 727d396e56

View File

@ -3,60 +3,59 @@ PKGVER=$(shell dpkg-parsechangelog -Sversion | cut -d- -f1)
PKGREL=$(shell dpkg-parsechangelog -Sversion | cut -d- -f2) PKGREL=$(shell dpkg-parsechangelog -Sversion | cut -d- -f2)
BUILDSRC := $(PACKAGE)-$(PKGVER) BUILDSRC := $(PACKAGE)-$(PKGVER)
DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb DEB=$(PACKAGE)_$(PKGVER)-$(PKGREL)_all.deb
DSC=${PACKAGE}_${PKGVER}-${PKGREL}.dsc DSC=$(PACKAGE)_$(PKGVER)-$(PKGREL).dsc
DESTDIR= DESTDIR=
PERL5DIR=${DESTDIR}/usr/share/perl5 PERL5DIR=$(DESTDIR)/usr/share/perl5
DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE} DOCDIR=$(DESTDIR)/usr/share/doc/$(PACKAGE)
PVE_COMMON_FILES= \ PVE_COMMON_FILES= \
Exception.pm Exception.pm
GITVERSION:=$(shell git rev-parse HEAD) GITVERSION:=$(shell git rev-parse HEAD)
all: ${DEB} all: $(DEB)
.PHONY: $(BUILDSRC) .PHONY: $(BUILDSRC)
$(BUILDSRC): $(BUILDSRC):
rm -rf $(BUILDSRC) rm -rf $(BUILDSRC)
rsync -a debian $(BUILDSRC) rsync -a debian $(BUILDSRC)
make DESTDIR=./$(BUILDSRC) install make DESTDIR=./$(BUILDSRC) install
echo "git clone git://git.proxmox.com/git/pve-apiclient.git\\ngit checkout ${GITVERSION}" > $(BUILDSRC)/debian/SOURCE echo "git clone git://git.proxmox.com/git/pve-apiclient.git\\ngit checkout $(GITVERSION)" > $(BUILDSRC)/debian/SOURCE
.PHONY: deb .PHONY: deb
deb ${DEB}: $(BUILDSRC) deb $(DEB): $(BUILDSRC)
cd $(BUILDSRC); dpkg-buildpackage -rfakeroot -b -us -uc cd $(BUILDSRC); dpkg-buildpackage -rfakeroot -b -us -uc
lintian ${DEB} lintian $(DEB)
.PHONY: dsc .PHONY: dsc
dsc: $(BUILDSRC) dsc: $(BUILDSRC)
cd $(BUILDSRC); dpkg-buildpackage -S -us -uc -d -nc cd $(BUILDSRC); dpkg-buildpackage -S -us -uc -d -nc
lintian ${DSC} lintian $(DSC)
install: install:
install -D -m 0644 PVE/APIClient/LWP.pm ${PERL5DIR}/PVE/APIClient/LWP.pm install -D -m 0644 PVE/APIClient/LWP.pm $(PERL5DIR)/PVE/APIClient/LWP.pm
install -m 0644 PVE/APIClient/Exception.pm ${PERL5DIR}/PVE/APIClient/Exception.pm install -m 0644 PVE/APIClient/Exception.pm $(PERL5DIR)/PVE/APIClient/Exception.pm
install -d -m 755 ${DOCDIR}/examples install -d -m 755 $(DOCDIR)/examples
install -m 0755 examples/example1.pl ${DOCDIR}/examples install -m 0755 examples/example1.pl $(DOCDIR)/examples
install -m 0755 examples/example2.pl ${DOCDIR}/examples install -m 0755 examples/example2.pl $(DOCDIR)/examples
install -m 0755 examples/perftest1.pl ${DOCDIR}/examples install -m 0755 examples/perftest1.pl $(DOCDIR)/examples
update-pve-common: update-pve-common:
for i in ${PVE_COMMON_FILES}; do cp ../pve-common/src/PVE/$$i PVE/APIClient/; done for i in $(PVE_COMMON_FILES); do cp ../pve-common/src/PVE/$$i PVE/APIClient/; done
for i in ${PVE_COMMON_FILES}; do sed -i 's/PVE::/PVE::APIClient::/g' PVE/APIClient/$$i; done for i in $(PVE_COMMON_FILES); do sed -i 's/PVE::/PVE::APIClient::/g' PVE/APIClient/$$i; done
.PHONY: upload .PHONY: upload
upload: ${DEB} upload: $(DEB)
tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com upload --product pmg,pve --dist bullseye tar cf - $(DEB) | ssh -X repoman@repo.proxmox.com upload --product pmg,pve --dist bullseye
distclean: clean distclean: clean
clean: clean:
rm -rf ./$(BUILDSRC) *.deb *.changes *.buildinfo *.dsc *.tar.gz rm -rf ./$(BUILDSRC) *.deb *.changes *.buildinfo *.dsc *.tar.gz
find . -name '*~' -exec rm {} ';'
.PHONY: dinstall .PHONY: dinstall
dinstall: ${DEB} dinstall: $(DEB)
dpkg -i ${DEB} dpkg -i $(DEB)