]> git.proxmox.com Git - proxmox-kernel-helper.git/blobdiff - Makefile
bump version to 8.1.0
[proxmox-kernel-helper.git] / Makefile
index 27f03b6e6b691ed9f34a2afeba912f5f460c08f4..4df21388010a5132535cab00b3a35909dce59dd3 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,46 +1,42 @@
 include /usr/share/dpkg/pkg-info.mk
 
-export KERNEL_VER=5.11
-export KERNEL_ABI=5.11.22-1-pve
+PACKAGE=proxmox-kernel-helper
+BUILDDIR=$(PACKAGE)-$(DEB_VERSION_UPSTREAM)
 
-GITVERSION:=$(shell git rev-parse HEAD)
+DSC=$(PACKAGE)_$(DEB_VERSION).dsc
+DEB=$(PACKAGE)_$(DEB_VERSION)_all.deb
 
-KERNEL_DEB=pve-kernel-${KERNEL_VER}_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
-HEADERS_DEB=pve-headers-${KERNEL_VER}_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
-HELPER_DEB=pve-kernel-helper_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
+.PHONY: deb
+deb: $(DEB)
 
-BUILD_DIR=build
+$(BUILDDIR): debian src
+       rm -rf $@ $@.tmp
+       cp -a src $@.tmp
+       cp -a debian $@.tmp/
+       echo "git clone git://git.proxmox.com/git/proxmox-kernel-helper.git\\ngit checkout $$(git rev-parse HEAD)" > $@.tmp/debian/SOURCE
+       mv $@.tmp $@
 
-DEBS=${KERNEL_DEB} ${HEADERS_DEB} ${HELPER_DEB}
+$(DEB): $(BUILDDIR)
+       cd $(BUILDDIR); dpkg-buildpackage -b -uc -us
+       lintian $(DEB)
 
-SUBDIRS = proxmox-boot bin
+dsc: clean
+       $(MAKE) $(DSC)
+       lintian $(DSC)
 
-.PHONY: all
-all: ${SUBDIRS}
-       set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i; done
+$(DSC): $(BUILDDIR)
+       cd $(BUILDDIR); dpkg-buildpackage -S -uc -us -d
 
-.PHONY: deb
-deb: ${DEBS}
-
-${HEADERS_DEB}: ${KERNEL_DEB}
-${KERNEL_DEB}: debian
-       rm -rf ${BUILD_DIR}
-       mkdir -p ${BUILD_DIR}/debian
-       rsync -a * ${BUILD_DIR}/
-       cd ${BUILD_DIR}; debian/rules debian/control
-       echo "git clone git://git.proxmox.com/git/pve-kernel-meta.git\\ngit checkout ${GITVERSION}" > ${BUILD_DIR}/debian/SOURCE
-       cd ${BUILD_DIR}; dpkg-buildpackage -b -uc -us
-       lintian ${DEBS}
-
-.PHONY: install
-install: ${SUBDIRS}
-       set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i $@; done
+sbuild: $(DSC)
+       sbuild $<
 
 .PHONY: upload
-upload: ${DEBS}
-       tar cf - ${DEBS}|ssh repoman@repo.proxmox.com -- upload --product pve,pmg,pbs --dist bullseye
+upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
+upload: $(DEB)
+       tar cf - $(DEB)|ssh repoman@repo.proxmox.com -- upload --product pve,pmg,pbs --dist $(UPLOAD_DIST)
 
 .PHONY: clean distclean
 distclean: clean
 clean:
-       rm -rf *~ ${BUILD_DIR} *.deb *.dsc *.changes *.buildinfo
+       $(MAKE) -C src $@
+       rm -rf *~ $(PACKAGE)-[0-9]*/ $(PACKAGE)*.tar* *.deb *.dsc *.changes *.build *.buildinfo