From c461e20df3643866e4a8169f283b57b2aa9f3493 Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Sat, 29 Jul 2023 15:22:27 -0600 Subject: [PATCH] make: Remove version from build output path Support building only a single version for a model. This removes the need to determine the git commit hash and date in order to access build artifacts. Signed-off-by: Tim Crawford --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7fb377313..48690b7c4 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ VERSION?=$(DATE)_$(REV) # Set build directory obj = build -BUILD = $(obj)/$(BOARD)/$(VERSION) +BUILD = $(obj)/$(BOARD) # Default target - build the board's EC firmware all: $(BUILD)/ec.rom