Skip to content

Commit

Permalink
DO NOT MERGE: More debug
Browse files Browse the repository at this point in the history
  • Loading branch information
chrysn committed Feb 27, 2024
1 parent c2de741 commit 2ea9b3e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions makefiles/boards.inc.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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,\
Expand Down
2 changes: 2 additions & 0 deletions tests/Makefile.tests_common
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
$(warning In tests common, with CURDIR=$(CURDIR))
APPLICATION ?= tests_$(notdir $(patsubst %/,%,$(CURDIR)))

ifneq (,$(wildcard $(CURDIR)/tests*/.))
Expand All @@ -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

0 comments on commit 2ea9b3e

Please sign in to comment.