From 2bdc25c2e11b5a155e23d0f77e331d3dd3545eef Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Tue, 25 Oct 2016 17:54:37 -0700 Subject: Update Makefile.rules with a showboards target This prints all the boards that are part of the build. This will be used on coreboot's build system for running coverity. This allows the builds to keep in sync as platforms are added, and as anything is added to the "skip_boards" list. for board in $(make showboards); do make proj-$board CROSS_COMPILE="arm-eabi-" done BUG=none BRANCH=none TEST=make showboards shows boards, and excludes skip_boards list Change-Id: I34d8bc95cc5c7d05b4f2ec38b16b75f9f0c72c6f Signed-off-by: Martin Roth Reviewed-on: https://chromium-review.googlesource.com/403498 Reviewed-by: Aseda Aboagye --- Makefile.rules | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.rules b/Makefile.rules index 25131515ec..404454dc2a 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -104,6 +104,9 @@ buildall: @touch .tests-passed @echo "$@ completed successfully!" +showboards: + @echo $(sort $(boards)) + # Print any important notices at the end of the build. .PHONY: notice notice: $(config) -- cgit v1.2.1