1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/build_system/external_board_native/Makefile
Frederik Haxel 5ed0bafc92 examples, tests: Changes for the native64 board
- Adapted build system and test checks for the native boards to include native64
- Added `native64` to the same tests as `native`
2024-02-05 22:02:14 +01:00

20 lines
597 B
Makefile

APPLICATION = external_board
RIOTBASE ?= $(CURDIR)/../../../
# Only support this board
# No need for a `WHITELIST` as there is only one board in `external_boards`.
#
# HACK I named the external board as 'native' to be in murdock test path for
# 'native'
# In practice it should be something else
BOARD ?= native
# Require arch_native feature so this is not compiled for other boards in
# $(RIOTBOARD)/
FEATURES_REQUIRED += arch_native
# Set without '?=' to also verify the docker integration when set with =
EXTERNAL_BOARD_DIRS = $(CURDIR)/external_boards
include $(RIOTBASE)/Makefile.include