Skip to content

Commit 90ea940

Browse files
committed
buildsystem: remove "buildtest" goal
1 parent a84955c commit 90ea940

File tree

6 files changed

+2
-81
lines changed

6 files changed

+2
-81
lines changed

Makefile.include

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,6 @@ include $(RIOTMAKE)/docker.inc.mk
198198
include $(RIOTMAKE)/utils/ansi.mk
199199
include $(RIOTMAKE)/color.inc.mk
200200

201-
# include concurrency helpers
202-
include $(RIOTMAKE)/info-nproc.inc.mk
203-
204201
# List of boards variables
205202
include $(RIOTMAKE)/boards.inc.mk
206203

@@ -231,9 +228,7 @@ endif
231228

232229
include $(RIOTMAKE)/cargo-settings.inc.mk
233230

234-
GLOBAL_GOALS += buildtest \
235-
buildtest-indocker \
236-
info-boards-features-blacklisted \
231+
GLOBAL_GOALS += info-boards-features-blacklisted \
237232
info-boards-features-conflicting \
238233
info-boards-features-missing \
239234
info-boards-supported \
@@ -243,7 +238,6 @@ GLOBAL_GOALS += buildtest \
243238

244239
ifneq (, $(filter $(GLOBAL_GOALS), $(MAKECMDGOALS)))
245240
include $(RIOTMAKE)/info-global.inc.mk
246-
include $(RIOTMAKE)/buildtests.inc.mk
247241
else
248242

249243
all: link

examples/basic/hello-world/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ This example should foremost give you an overview how to use the Makefile system
99
* First you must give your application a name, which is commonly the same as the name of the directory it resides in.
1010
Then you can define a default BOARD for which the application was written.
1111
By using e.g. `make BOARD=msba2` you can override the default board.
12-
With `make buildtest` the application gets compiled for all supported boards.
1312

1413
* The variable `RIOTBASE` contains an absolute or relative path to the directory where you have checked out RIOT.
1514
If your code resides in a subdirectory of RIOT, then you can use `$(CURDIR)` as it's done in here.

makefiles/buildtests.inc.mk

Lines changed: 0 additions & 37 deletions
This file was deleted.

makefiles/docker.inc.mk

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ DOCKER ?= docker
2121
# List of Docker-enabled make goals
2222
export DOCKER_MAKECMDGOALS_POSSIBLE = \
2323
all \
24-
buildtest-indocker \
2524
scan-build \
2625
scan-build-analyze \
2726
tests-% \

makefiles/info-global.inc.mk

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,5 @@ generate-Makefile.ci:
155155
@$(RIOTTOOLS)/insufficient_memory/create_makefile.ci.sh
156156

157157

158-
# Reset BOARDSDIR so unchanged for makefiles included after, for now only
159-
# needed for buildtests.inc.mk
158+
# Reset BOARDSDIR so unchanged for makefiles included after
160159
BOARDDIR := $(BOARDDIR_GLOBAL)

makefiles/info-nproc.inc.mk

Lines changed: 0 additions & 33 deletions
This file was deleted.

0 commit comments

Comments
 (0)