]> git.proxmox.com Git - lxc.git/blobdiff - Makefile
bump version to 6.0.0-1
[lxc.git] / Makefile
index a350d3114c150c7b9a40a5f98ef5d6f913c945a1..f0174b23b9f5b22d5321f2f53e7dec22e78781d5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ DEB2=$(PACKAGE)-dev_$(DEB_VERSION_UPSTREAM_REVISION)_$(DEB_BUILD_ARCH).deb \
      $(PACKAGE)-dbgsym_$(DEB_VERSION_UPSTREAM_REVISION)_$(DEB_BUILD_ARCH).deb
 DEBS=$(DEB1) $(DEB2)
 DSC=$(DEB_BASE).dsc
-TARGZ=$(DEB_BASE).tar.gz
+ORIG_SRC_TAR=$(PACKAGE)_$(DEB_VERSION_UPSTREAM).orig.tar.gz
 
 all: $(DEBS)
        echo $(DEBS)
@@ -39,22 +39,28 @@ $(DEB1): $(BUILDSRC)
        cd $(BUILDSRC); dpkg-buildpackage -b -us -uc
        lintian $(DEBS)
 
+$(ORIG_SRC_TAR): $(BUILDSRC)
+       tar czf $(ORIG_SRC_TAR) --exclude="$(BUILDSRC)/debian" $(BUILDSRC)
+
 .PHONY: dsc
-dsc $(TARGZ): $(DSC)
-$(DSC): $(BUILDSRC)
+dsc: $(DSC)
+$(DSC): $(ORIG_SRC_TAR)
        rm -f *.dsc
-       cd $(BUILDSRC); dpkg-buildpackage -S -us -uc -d -nc
+       cd $(BUILDSRC); dpkg-buildpackage -S -us -uc -d
        lintian $(DSC)
 
+sbuild: $(DSC)
+       sbuild $(DSC)
+
 .PHONY: upload
 upload: $(DEBS)
-       tar cf - $(DEBS) | ssh repoman@repo.proxmox.com upload --product pve --dist stretch
+       tar cf - $(DEBS) | ssh repoman@repo.proxmox.com upload --product pve --dist bookworm
 
 distclean: clean
 
 .PHONY: clean
 clean:
-       rm -rf $(BUILDSRC) *.deb  *.dsc *.tar.gz *.changes *.dsc *.buildinfo
+       rm -rf $(BUILDSRC) $(PACKAGE)-[0-9]*/ $(ORIG_SRC_TAR) *.deb *.dsc $(PACKAGE)*.debian.tar.[gx]z *.changes *.dsc *.buildinfo *.build
 
 .PHONY: dinstall
 dinstall: $(DEBS)