From 94e0e19457176e844cb59d998be0cb30e2a3c859 Mon Sep 17 00:00:00 2001 From: Michi Mutsuzaki Date: Wed, 20 Mar 2024 23:05:18 +0000 Subject: [PATCH] Include Makefile.override if present Include Makefile.override if the file exists to allow overriding Make variables without modifying Makefile. Copied from cilium/cilium#26159. Signed-off-by: Michi Mutsuzaki --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index b2f1868cff..66c5111cae 100644 --- a/Makefile +++ b/Makefile @@ -100,3 +100,5 @@ check: endif .PHONY: $(TARGET) release local-release install clean test bench check clean-tags tags + +-include Makefile.override