Blame view

RIOT/sys/auto_init/Makefile 321 Bytes
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  ifneq (,$(filter auto_init_gnrc_netif,$(USEMODULE)))
    DIRS += netif
  endif
  
  ifneq (,$(filter auto_init_saul,$(USEMODULE)))
    DIRS += saul
  endif
  
  ifneq (,$(filter auto_init_storage,$(USEMODULE)))
    DIRS += storage
  endif
  
  ifneq (,$(filter auto_init_can,$(USEMODULE)))
    DIRS += can
  endif
  
  include $(RIOTBASE)/Makefile.base