From a26760dd39aa22a00c7ed061c09e8a239641f330 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sat, 20 May 2023 17:31:38 +0200 Subject: [PATCH] buildsys: use versioned build dir Signed-off-by: Thomas Lamprecht --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6481f94..263ca5b 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ GITVERSION:=$(shell git rev-parse HEAD) SKIPABI=0 -BUILD_DIR=build +BUILD_DIR=pve-kernel-$(KERNEL_VER) KERNEL_SRC=ubuntu-kernel KERNEL_SRC_SUBMODULE=submodules/$(KERNEL_SRC) @@ -143,5 +143,5 @@ abi-tmp-$(KVNAME): .PHONY: clean clean: - rm -rf *~ build *.prepared $(KERNEL_CFG_ORG) + rm -rf *~ $(PACKAGE)*/ *.prepared $(KERNEL_CFG_ORG) rm -f *.deb *.changes *.buildinfo