From 5ff6bf30d8bc08eb2b8e0542d31610d94023b6dd Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Thu, 22 Feb 2024 16:23:20 -0700 Subject: util/amdfwtool: build amdfwtool only for all tools or AMD CPUs When we're building non-AMD processors, don't bother building amdfwtool unless we're specifically building all of the tools like for abuild. Change-Id: I9021674a06d65a79e24020790d317ab947c505fe Signed-off-by: Martin Roth Reviewed-on: https://review.coreboot.org/c/coreboot/+/80714 Reviewed-by: Felix Singer Reviewed-by: Nico Huber Tested-by: build bot (Jenkins) --- util/amdfwtool/Makefile.mk | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'util') diff --git a/util/amdfwtool/Makefile.mk b/util/amdfwtool/Makefile.mk index 6a83cb9265..d0b01ac6dc 100644 --- a/util/amdfwtool/Makefile.mk +++ b/util/amdfwtool/Makefile.mk @@ -1,5 +1,7 @@ # SPDX-License-Identifier: BSD-3-Clause +ifneq ($(BUILD_ALL_TOOLS)$(CONFIG_USE_AMDFWTOOL),) + amdfwtoolobj = amdfwtool.o data_parse.o signed_psp.o handle_file.o amdfwreadobj = amdfwread.o @@ -25,3 +27,5 @@ $(objutil)/amdfwtool/amdfwtool: $(addprefix $(objutil)/amdfwtool/,$(amdfwtoolobj $(objutil)/amdfwtool/amdfwread: $(addprefix $(objutil)/amdfwtool/,$(amdfwreadobj)) printf " AMDFWREAD\n" $(HOSTCC) $(addprefix $(objutil)/amdfwtool/,$(amdfwreadobj)) $(LDFLAGS) -o $@ + +endif # ifneq ($(BUILD_ALL_TOOLS)$(CONFIG_USE_AMDFWTOOL),) -- cgit v1.2.3