From 278e3138abfeed99f443f4eea946d3d94744796e Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Mon, 18 Aug 2025 18:15:01 -0500 Subject: [PATCH] Add update-config target This target can be used in CI to update an existing `.config` file. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index dc07c9b..08ab926 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,9 @@ $(O)/.config: O=$(O) \ $(DEFCONFIG) +.PHONY: update-config +update-config: + $(MAKE) -C $(O) $(DEFCONFIG) %: $(MAKE) -C $(O) $@