Blame view

RIOT/boards/native/Makefile.dep 311 Bytes
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  ifneq (,$(filter netdev_default gnrc_netdev_default,$(USEMODULE)))
    USEMODULE += netdev_tap
  endif
  
  ifneq (,$(filter mtd,$(USEMODULE)))
    USEMODULE += mtd_native
  endif
  
  ifneq (,$(filter can,$(USEMODULE)))
    ifeq ($(shell uname -s),Linux)
      USEMODULE += can_linux
      CFLAGS += -DCAN_DLL_NUMOF=2
    endif
  endif