Blame view

RIOT/cpu/native/Makefile 303 Bytes
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  MODULE = cpu
  
  DIRS += periph
  DIRS += vfs
  
  ifneq (,$(filter netdev_tap,$(USEMODULE)))
    DIRS += netdev_tap
  endif
  ifneq (,$(filter mtd_native,$(USEMODULE)))
    DIRS += mtd
  endif
  
  ifneq (,$(filter can_linux,$(USEMODULE)))
    DIRS += can
  endif
  
  include $(RIOTBASE)/Makefile.base
  
  INCLUDES = $(NATIVEINCLUDES)