mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 22:52:45 +01:00
5ed0bafc92
- Adapted build system and test checks for the native boards to include native64 - Added `native64` to the same tests as `native`
15 lines
339 B
Makefile
15 lines
339 B
Makefile
include ../Makefile.drivers_common
|
|
|
|
USEMODULE += hd44780
|
|
|
|
# disable native GPIOs for automatic test
|
|
ifneq (,$(filter native native64,$(BOARD)))
|
|
USEMODULE += periph_gpio_mock
|
|
# the same for Kconfig
|
|
ifeq (1,$(TEST_KCONFIG))
|
|
KCONFIG_ADD_CONFIG += $(APPDIR)/app.config.test.native
|
|
endif
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.include
|