]> git.proxmox.com Git - pve-kernel-meta.git/blobdiff - Makefile
buildsys: factor out build directory target and versionize it
[pve-kernel-meta.git] / Makefile
index 79209fc0476f3362b2ba8b2e46962bcba8256b92..df5acca8c3ad6d195f85db4e3a944b0b59cd9fda 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,46 +1,39 @@
 include /usr/share/dpkg/pkg-info.mk
 
-export KERNEL_VER=5.11
-export KERNEL_ABI=5.11.12-1-pve
+export KERNEL_VER=6.2
+export KERNEL_ABI=6.2.11-2-pve
 
 GITVERSION:=$(shell git rev-parse HEAD)
 
-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
+KERNEL_DEB=pve-kernel-$(KERNEL_VER)_$(DEB_VERSION)_all.deb
+HEADERS_DEB=pve-headers-$(KERNEL_VER)_$(DEB_VERSION)_all.deb
 
-BUILD_DIR=build
+BUILD_DIR=pve-kernel-$(KERNEL_VER)_$(DEB_VERSION)
 
-DEBS=${KERNEL_DEB} ${HEADERS_DEB} ${HELPER_DEB}
+DEBS=$(KERNEL_DEB) $(HEADERS_DEB)
 
-SUBDIRS = proxmox-boot bin
+.PHONY: deb
+deb: $(DEBS)
 
-.PHONY: all
-all: ${SUBDIRS}
-       set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i; done
+$(BUILD_DIR): debian
+       rm -rf $@ $@.tmp
+       mkdir $@.tmp
+       cp -a debian $@.tmp/
+       cd $@.tmp; debian/rules debian/control
+       echo "git clone git://git.proxmox.com/git/pve-kernel-meta.git\\ngit checkout $(GITVERSION)" > $@.tmp/debian/SOURCE
+       mv $@.tmp $@
 
-.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
+$(HEADERS_DEB): $(KERNEL_DEB)
+$(KERNEL_DEB): $(BUILD_DIR)
+       cd $(BUILD_DIR); dpkg-buildpackage -b -uc -us
+       lintian $(DEBS)
 
 .PHONY: upload
-upload: ${DEBS}
-       tar cf - ${DEBS}|ssh repoman@repo.proxmox.com -- upload --product pve,pmg --dist buster
+upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
+upload: $(DEBS)
+       tar cf - $(DEBS)|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
+       rm -rf *~ pve-kernel-[0-9]*/ pve-kernel-[0-9]*.tar.* *.deb *.dsc *.changes *.buildinfo *.build