mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
11 lines
208 B
Makefile
11 lines
208 B
Makefile
# Put board specific dependencies here
|
|
ifeq (,$(filter native,$(BOARD)))
|
|
ifeq (1,$(USE_SLIP))
|
|
USEMODULE += slipdev_stdio
|
|
else
|
|
USEMODULE += stdio_ethos
|
|
endif
|
|
else
|
|
USEMODULE += socket_zep
|
|
endif
|