mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
9cadd5569f
This aims to make the main Makefile more accessible for new users.
11 lines
202 B
Makefile
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
|