1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/native/Makefile.dep

15 lines
311 B
Makefile
Raw Normal View History

ifneq (,$(filter netdev_default gnrc_netdev_default,$(USEMODULE)))
2017-09-06 16:09:38 +02:00
USEMODULE += netdev_tap
endif
ifneq (,$(filter mtd,$(USEMODULE)))
2017-09-06 16:09:38 +02:00
USEMODULE += mtd_native
endif
ifneq (,$(filter can,$(USEMODULE)))
2017-09-06 16:09:38 +02:00
ifeq ($(shell uname -s),Linux)
USEMODULE += can_linux
CFLAGS += -DCAN_DLL_NUMOF=2
endif
endif