]> git.proxmox.com Git - pve-guest-common.git/blobdiff - Makefile
bump version to 5.1.2
[pve-guest-common.git] / Makefile
index bffecf1cb24963f139890a2475f23eed0223fd02..abf2b0dd5e4a86b57aded528165d017fe62df193 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -10,10 +10,11 @@ BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION)
 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
+       rm -rf $@ $@.tmp
+       cp -a src $@.tmp
+       cp -a debian $@.tmp/
+       echo "git clone git://git.proxmox.com/git/pve-guest-common.git\\ngit checkout $(GITVERSION)" > $@.tmp/debian/SOURCE
+       mv $@.tmp $@
 
 .PHONY: deb
 deb: $(DEB)
@@ -22,19 +23,24 @@ $(DEB): $(BUILDDIR)
        lintian $(DEB)
 
 .PHONY: dsc
-dsc: $(DSC)
+dsc:
+       $(MAKE) $(DSC)
+       lintian $(DSC)
+
 $(DSC): $(BUILDDIR)
        cd $(BUILDDIR); dpkg-buildpackage -S -us -uc -d -nc
-       lintian $(DSC)
+
+sbuild: $(DSC)
+       sbuild $(DSC)
 
 .PHONY: upload
+upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
 upload: $(DEB)
-       tar cf - $(DEB) | ssh repoman@repo.proxmox.com -- upload --product pve --dist bullseye
+       tar cf - $(DEB) | ssh repoman@repo.proxmox.com -- upload --product pve --dist $(UPLOAD_DIST)
 
 distclean: clean
-
 clean:
-       rm -rf $(BUILDDIR) *.deb *.dsc *.changes *.buildinfo *.tar.gz
+       rm -rf $(PACKAGE)-[0-9]*/ *.deb *.dsc *.changes *.buildinfo *.build $(PACKAGE)*.tar*
 
 .PHONY: dinstall
 dinstall: $(DEB)