From fe928c7a81810fd84210a5e9594b7fa8ce1064ce Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20=C5=A0tetiar?= Date: Mon, 7 Jan 2019 01:57:01 +0100 Subject: [PATCH] build: allow simple build system customization with local.mk MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit I tend to automate most of the boring and repetitive tasks like firmware flashing, build config reconfiguration etc., so I always end up adding `include local.mk` as a last line in my Makefile, where local.mk is usually symlink to some other place, just to not accidentally delete it during `git clean`. Carrying this single uncommited modification along in the development process is quite PITA, because it's causing problems during Git workflow, while rebasing etc. I hope, that I'm not alone using similar workflow, so I believe, that this modification might be useful for others as well. Signed-off-by: Petr Å tetiar --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 5301883061..1ccfd61d68 100644 --- a/Makefile +++ b/Makefile @@ -103,3 +103,5 @@ world: prepare $(target/stamp-compile) $(package/stamp-compile) $(package/stamp- .PHONY: clean dirclean prereq prepare world package/symlinks package/symlinks-install package/symlinks-clean endif + +-include local.mk -- 2.25.1