2013-12-20 15:23:09 +01:00
|
|
|
ifneq (,$(filter net_if,$(USEMODULE)))
|
|
|
|
INCLUDES += -I$(RIOTBASE)/sys/net/include/
|
|
|
|
endif
|
|
|
|
|
2014-07-19 18:00:21 +02:00
|
|
|
ifneq (,$(filter nomac,$(USEMODULE)))
|
|
|
|
INCLUDES += -I$(RIOTBASE)/sys/net/include/
|
|
|
|
endif
|
|
|
|
|
2015-04-29 21:17:07 +02:00
|
|
|
DIRS += $(AUTO_INIT_MODULES)
|
|
|
|
|
2015-05-08 15:47:11 +02:00
|
|
|
ifneq (,$(filter auto_init_ng_netif,$(USEMODULE)))
|
|
|
|
DIRS += netif
|
|
|
|
endif
|
|
|
|
|
2015-05-19 09:54:14 +02:00
|
|
|
ifneq (,$(filter dev_eth_autoinit,$(USEMODULE)))
|
|
|
|
DIRS += $(RIOTBASE)/sys/auto_init/dev_eth
|
|
|
|
endif
|
|
|
|
|
2013-03-09 23:47:21 +01:00
|
|
|
include $(RIOTBASE)/Makefile.base
|