From 521ca0fa7832ee67ad2a1de37bf05fe8acd00b06 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Thu, 21 Sep 2023 19:32:46 -0400 Subject: Makefile: Allow for board directories to not have a Makefile It is entirely possible at this point to have platforms in U-Boot that do not have board-specific C code (just Kconfig or environment) and so make it optional to have to descend in to and then build in the board directory. Signed-off-by: Tom Rini --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4a2d99e..9d2e31e 100644 --- a/Makefile +++ b/Makefile @@ -886,7 +886,7 @@ libs-$(CONFIG_UT_ENV) += test/env/ libs-$(CONFIG_UT_OPTEE) += test/optee/ libs-$(CONFIG_UT_OVERLAY) += test/overlay/ -libs-y += $(if $(BOARDDIR),board/$(BOARDDIR)/) +libs-y += $(if $(wildcard $(srctree)/board/$(BOARDDIR)/Makefile),board/$(BOARDDIR)/) libs-y := $(sort $(libs-y)) -- cgit v1.1