]> git.proxmox.com Git - lxcfs.git/blobdiff - Makefile
bump version to 6.0.0-pve2
[lxcfs.git] / Makefile
index ef9ceae2cd761540804547d86bfd58ea46a98128..d8830ed715667434645c3b6f7953bd2a23981c22 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,23 +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)
 
-DEB=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb
-DBGDEB=${PACKAGE}-dbgsym_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb
+DSC=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION).dsc
+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)
@@ -29,15 +30,32 @@ deb: $(DEBS)
 $(DBGDEB): $(DEB)
 $(DEB): $(BUILDDIR)
        cd $(BUILDDIR); dpkg-buildpackage -rfakeroot -b -us -uc
-       #lintian $(DEBS)
+       lintian $(DEBS)
+
+sbuild: $(DSC)
+       sbuild $(DSC)
+
+$(ORIG_SRC_TAR): $(BUILDDIR)
+       tar czf $(ORIG_SRC_TAR) --exclude="$(BUILDDIR)/debian" $(BUILDDIR)
+
+.PHONY: dsc
+dsc:
+       $(MAKE) clean
+       $(MAKE) $(DSC)
+       lintian $(DSC)
+
+$(DSC): $(ORIG_SRC_TAR) $(BUILDDIR)
+       cd $(BUILDDIR); dpkg-buildpackage -S -us -uc -d
 
 .PHONY: upload
+upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
 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 $(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