mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
12140ffb0e
When depending on one or more shell commands, the shell is pulled in as dependency anyway.
22 lines
470 B
Makefile
22 lines
470 B
Makefile
BOARD ?= samr21-xpro
|
|
include ../Makefile.tests_common
|
|
|
|
LOW_MEMORY_BOARDS := samd10-xmini
|
|
|
|
FEATURES_REQUIRED += periph_spi
|
|
FEATURES_OPTIONAL += periph_spi_on_qspi
|
|
|
|
ifeq (,$(filter $(BOARD),$(LOW_MEMORY_BOARDS)))
|
|
FEATURES_OPTIONAL += periph_spi_reconfigure
|
|
endif
|
|
|
|
USEMODULE += ztimer_usec
|
|
USEMODULE += ztimer_sec
|
|
USEMODULE += shell_cmds_default
|
|
USEMODULE += schedstatistics
|
|
|
|
# avoid running Kconfig by default
|
|
SHOULD_RUN_KCONFIG ?=
|
|
|
|
include $(RIOTBASE)/Makefile.include
|