mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
14 lines
248 B
Makefile
14 lines
248 B
Makefile
APPLICATION = dev_eth
|
|
include ../Makefile.tests_common
|
|
|
|
BOARD_WHITELIST = native
|
|
FEATURES_REQUIRED += ethernet
|
|
|
|
ifneq (,$(filter native,$(BOARD)))
|
|
USEMODULE += ng_nativenet
|
|
endif
|
|
|
|
USEMODULE += dev_eth_autoinit
|
|
|
|
include $(RIOTBASE)/Makefile.include
|