From 2ea9b3e983babb3519c85759c86dc63c3bb75596 Mon Sep 17 00:00:00 2001 From: chrysn Date: Tue, 27 Feb 2024 01:20:28 +0100 Subject: [PATCH] DO NOT MERGE: More debug --- Makefile | 3 ++- makefiles/boards.inc.mk | 2 ++ tests/Makefile.tests_common | 2 ++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b2e6e0c71c472..fcf5bb82a7a7b 100644 --- a/Makefile +++ b/Makefile @@ -22,13 +22,14 @@ doc: @# today (but I'd still be proud of my small collection so far). BUILD_IN_DOCKER=1 \ ./dist/tools/python_with_requirements/python_with_requirements \ - ./dist/tools/rdf/info_to_rdf.py \ + ./dist/tools/rdf/info_to_rdf.py -v \ doc/rdf/info.ttl @./dist/tools/python_with_requirements/python_with_requirements \ ./dist/tools/rdf/doxygen_to_rdf.py \ doc/rdf/doxygen.ttl @./dist/tools/python_with_requirements/python_with_requirements \ ./dist/tools/rdf/build_board_feature_table.py > doc/doxygen/src/feature_table.html + make -C tests/minimal info-boards make info-boards exit 1 "$(MAKE)" -BC doc/doxygen diff --git a/makefiles/boards.inc.mk b/makefiles/boards.inc.mk index fbbd62d9ec103..37579a3183f5c 100644 --- a/makefiles/boards.inc.mk +++ b/makefiles/boards.inc.mk @@ -7,6 +7,8 @@ BOARDSDIRS ?= $(EXTERNAL_BOARD_DIRS) $(RIOTBOARD) # use 'wildcard */.' to only list directories _get_boards_in_directory = $(filter-out common,$(patsubst $1/%/.,%,$(wildcard $1/*/.))) +$(warning In boards.inc.mk, BOARDSDIRS=${BOARDSDIRS} -- RIOTBASE=${RIOTBASE}, CURDIR=${CURDIR}) + # Use `:=` so that it is evaluated before BOARDSDIRS gets eventually changed ALLBOARDS := $(sort \ $(foreach dir,\ diff --git a/tests/Makefile.tests_common b/tests/Makefile.tests_common index 5e988d903f5d7..c4d549c902904 100644 --- a/tests/Makefile.tests_common +++ b/tests/Makefile.tests_common @@ -1,3 +1,4 @@ +$(warning In tests common, with CURDIR=$(CURDIR)) APPLICATION ?= tests_$(notdir $(patsubst %/,%,$(CURDIR))) ifneq (,$(wildcard $(CURDIR)/tests*/.)) @@ -14,6 +15,7 @@ endif BOARD ?= native RIOTBASE ?= $(CURDIR)/../.. +$(warning In tests common, RIOTBASE=$(RIOTBASE)) QUIET ?= 1 # DEVELHELP enabled by default for all tests, set 0 to disable DEVELHELP ?= 1