1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/examples/gnrc_border_router/Makefile.board.dep
Martine S. Lenders 9cadd5569f
gnrc_border_router: move module specific config to extra Makefile
This aims to make the main Makefile more accessible for new users.
2020-03-03 18:24:46 +01:00

11 lines
202 B
Makefile

# Put board specific dependencies here
ifeq (,$(filter native,$(BOARD)))
ifeq (1,$(USE_SLIP))
USEMODULE += slipdev
else
USEMODULE += stdio_ethos
endif
else
USEMODULE += socket_zep
endif