]> git.proxmox.com Git - pve-edk2-firmware.git/blobdiff - Makefile
buildsys: derive upload dist automatically
[pve-edk2-firmware.git] / Makefile
index 95e9b6ea1cee6b15db38b4a7469cf13a77414daa..5ca58212243883bb89c4800184adaac2e4415bc7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,47 +1,67 @@
+include /usr/share/dpkg/pkg-info.mk
+
 PACKAGE=pve-edk2-firmware
-# version and package release is controlled over d/changelog
-VER=$(shell dpkg-parsechangelog -S version)
 
 SRCDIR=edk2
-BUILDDIR=${SRCDIR}.build
+BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION_UPSTREAM)
+ORIG_SRC_TAR=$(PACKAGE)_$(DEB_VERSION_UPSTREAM).orig.tar.gz
 
 GITVERSION:=$(shell git rev-parse HEAD)
 
-DEB=${PACKAGE}_${VER}_all.deb
+DEB=$(PACKAGE)_$(DEB_VERSION)_all.deb
+DSC=$(PACKAGE)_$(DEB_VERSION).dsc
+
+all: $(DEB)
+       @echo $(DEB)
 
-all: ${DEB}
-       @echo ${DEB}
+$(BUILDDIR): $(SRCDIR)/Readme.md
+       rm -rf $(BUILDDIR)
+       cp -rpa $(SRCDIR) $(BUILDDIR)
+       cp -a debian $(BUILDDIR)
+       echo "git clone git://git.proxmox.com/git/pve-edk2-firmware.git\\ngit checkout $(GITVERSION)" > $(BUILDDIR)/debian/SOURCE
 
 .PHONY: deb
-deb: ${DEB}
-${DEB}: | submodule
-       rm -rf ${BUILDDIR}
-       cp -rpa ${SRCDIR} ${BUILDDIR}
-       cp -a debian ${BUILDDIR}
-       echo "git clone git://git.proxmox.com/git/pve-edk2-firmware.git\\ngit checkout ${GITVERSION}" > ${BUILDDIR}/debian/SOURCE
-       cd ${BUILDDIR}; dpkg-buildpackage -b -uc -us
-       lintian ${DEB}
-       @echo ${DEB}
+deb: $(DEB)
+$(DEB): $(BUILDDIR)
+       cd $(BUILDDIR); dpkg-buildpackage -b -uc -us
+       lintian $(DEB)
+       @echo $(DEB)
+
+$(ORIG_SRC_TAR): $(BUILDDIR)
+       tar czf $(ORIG_SRC_TAR) --exclude="$(BUILDDIR)/debian" $(BUILDDIR)
+
+$(DSC): $(BUILDDIR) $(ORIG_SRC_TAR)
+       cd $(BUILDDIR); dpkg-buildpackage -S -uc -us -d
+
+sbuild: $(DSC)
+       sbuild $(DSC)
+
+.PHONY: dsc
+dsc: $(DSC)
+       $(MAKE) clean
+       $(MAKE) $(DSC)
+       lintian $(DSC)
 
 .PHONY: submodule
 submodule:
-       test -f "${SRCDIR}/Readme.md" || git submodule update --init --recursive
+       test -e edk2/Maintainers.txt || git submodule update --init --recursive
+
+$(SRCDIR)/Readme.md: submodule
 
 .PHONY: update_modules
 update_modules: submodule
        git submodule foreach 'git pull --ff-only origin master'
 
 .PHONY: upload
-upload: ${DEB}
-       tar cf - ${DEB}|ssh -X repoman@repo.proxmox.com -- upload --product pve --dist stretch
+upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
+upload: $(DEB)
+       tar cf - $(DEB)|ssh -X repoman@repo.proxmox.com -- upload --product pve --dist $(UPLOAD_DIST)
 
-.PHONY: distclean
+.PHONY: distclean clean
 distclean: clean
-
-.PHONY: clean
 clean:
-       rm -rf *~ debian/*~ *.deb ${BUILDDIR} *.changes *.dsc *.buildinfo
+       rm -rf *.deb $(PACKAGE)-[0-9]*/ $(PACKAGE)*.tar* *.changes *.dsc *.buildinfo *.build
 
 .PHONY: dinstall
-dinstall: ${DEB}
-       dpkg -i ${DEB}
+dinstall: $(DEB)
+       dpkg -i $(DEB)