mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
de29e4184c
Application developers use `$(USEMODULES)` in their Makefiles to have the relevant functionally automagically added to their apps. This even does basic dependency tracking by means of `Makefile.dep`. But an important thing is missing: the automatic adding of include paths. This is inconvenient, error prone, and will hinder the RIOT core developers in future to change folder structures.
13 lines
436 B
Makefile
13 lines
436 B
Makefile
ifneq (,$(filter cc2420,$(USEMODULE)))
|
|
USEMODULE_INCLUDES += $(RIOTBASE)/drivers/cc2420/include
|
|
endif
|
|
ifneq (,$(filter cc110x,$(USEMODULE)))
|
|
USEMODULE_INCLUDES += $(RIOTBASE)/drivers/cc110x/include
|
|
endif
|
|
ifneq (,$(filter cc110x_ng,$(USEMODULE)))
|
|
USEMODULE_INCLUDES += $(RIOTBASE)/drivers/cc110x_ng/include
|
|
endif
|
|
ifneq (,$(filter at86rf231,$(USEMODULE)))
|
|
USEMODULE_INCLUDES += $(RIOTBASE)/drivers/at86rf231/include
|
|
endif
|