]> git.proxmox.com Git - lxcfs.git/blobdiff - Makefile
bump version to 6.0.0-pve2
[lxcfs.git] / Makefile
index 218dbcbe2866f4f1a07d3fba3f98ab91476b6082..d8830ed715667434645c3b6f7953bd2a23981c22 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,25 +1,24 @@
-include /usr/share/dpkg/pkg-info.mk
-include /usr/share/dpkg/architecture.mk
+include /usr/share/dpkg/default.mk
 
 PACKAGE=lxcfs
 
-SRCDIR=${PACKAGE}
-BUILDDIR ?= ${PACKAGE}-${DEB_VERSION_UPSTREAM}
+SRCDIR=$(PACKAGE)
+BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION_UPSTREAM)
 ORIG_SRC_TAR=$(PACKAGE)_$(DEB_VERSION_UPSTREAM).orig.tar.gz
 
 GITVERSION:=$(shell git rev-parse HEAD)
 
 DSC=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION).dsc
-DEB=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb
-DBGDEB=${PACKAGE}-dbgsym_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb
+DEB=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION)_$(DEB_HOST_ARCH).deb
+DBGDEB=$(PACKAGE)-dbgsym_$(DEB_VERSION_UPSTREAM_REVISION)_$(DEB_HOST_ARCH).deb
 DEBS=$(DEB) $(DBGDEB)
 
-all: ${DEB}
+all: $(DEB)
 
 .PHONY: submodule
 submodule:
-       test -f "${SRCDIR}/README" || git submodule update --init
-${SRCDIR}/README: submodule
+       test -f "$(SRCDIR)/README" || git submodule update --init
+$(SRCDIR)/README: submodule
 
 $(BUILDDIR): $(SRCDIR)/README debian
        rm -rf $(BUILDDIR)
@@ -33,23 +32,30 @@ $(DEB): $(BUILDDIR)
        cd $(BUILDDIR); dpkg-buildpackage -rfakeroot -b -us -uc
        lintian $(DEBS)
 
+sbuild: $(DSC)
+       sbuild $(DSC)
+
 $(ORIG_SRC_TAR): $(BUILDDIR)
-       tar czf $(ORIG_SRC_TAR) -C $(BUILDDIR) .
+       tar czf $(ORIG_SRC_TAR) --exclude="$(BUILDDIR)/debian" $(BUILDDIR)
 
 .PHONY: dsc
-dsc: $(DSC)
+dsc:
+       $(MAKE) clean
+       $(MAKE) $(DSC)
+       lintian $(DSC)
+
 $(DSC): $(ORIG_SRC_TAR) $(BUILDDIR)
-       rm -f *.dsc
        cd $(BUILDDIR); dpkg-buildpackage -S -us -uc -d
-       lintian $(DSC)
 
 .PHONY: upload
+upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
 upload: $(DEBS)
-       tar cf - ${DEBS} | ssh repoman@repo.proxmox.com upload --product pve --dist bullseye
+       tar cf - $(DEBS) | ssh repoman@repo.proxmox.com upload --product pve --dist $(UPLOAD_DIST)
 
 .PHONY: clean distclean
 clean:
-       rm -rf $(PACKAGE)-*/ *.deb *.changes *.dsc  *.buildinfo
+       rm -rf $(PACKAGE)-[0-9]*/
+       rm -rf $(PACKAGE)*.tar* *.deb *.dsc *.changes *.dsc *.buildinfo *.build
 
 distclean: clean
        git submodule deinit --all