mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
Merge pull request #13269 from aabadie/pr/drivers/makefil_include_order
drivers: fix alphabetical order in Makefile.include
This commit is contained in:
commit
96adfc8f34
@ -1,3 +1,5 @@
|
||||
# driver includes (in alphabetical order)
|
||||
|
||||
ifneq (,$(filter ad7746,$(USEMODULE)))
|
||||
USEMODULE_INCLUDES += $(RIOTBASE)/drivers/ad7746/include
|
||||
endif
|
||||
@ -62,10 +64,6 @@ ifneq (,$(filter dht,$(USEMODULE)))
|
||||
USEMODULE_INCLUDES += $(RIOTBASE)/drivers/dht/include
|
||||
endif
|
||||
|
||||
ifneq (,$(filter sht1x,$(USEMODULE)))
|
||||
USEMODULE_INCLUDES += $(RIOTBASE)/drivers/sht1x/include
|
||||
endif
|
||||
|
||||
ifneq (,$(filter ds1307,$(USEMODULE)))
|
||||
USEMODULE_INCLUDES += $(RIOTBASE)/drivers/ds1307/include
|
||||
endif
|
||||
@ -274,6 +272,10 @@ ifneq (,$(filter sds011,$(USEMODULE)))
|
||||
USEMODULE_INCLUDES += $(RIOTBASE)/drivers/sds011/include
|
||||
endif
|
||||
|
||||
ifneq (,$(filter sht1x,$(USEMODULE)))
|
||||
USEMODULE_INCLUDES += $(RIOTBASE)/drivers/sht1x/include
|
||||
endif
|
||||
|
||||
ifneq (,$(filter sht2x,$(USEMODULE)))
|
||||
USEMODULE_INCLUDES += $(RIOTBASE)/drivers/sht2x/include
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user