mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 00:49:45 +01:00
edc43201db
This should not change any generated binary
30 lines
780 B
Makefile
30 lines
780 B
Makefile
# This files contains dependencies for default modules. They are parsed at the
|
|
# end of the dependency loop. They MAY include new modules, but this modules
|
|
# MUST NOT have dependencies themselves.
|
|
|
|
ifneq (,$(filter auto_init%,$(USEMODULE)))
|
|
USEMODULE += preprocessor preprocessor_successor
|
|
endif
|
|
|
|
ifneq (,$(filter auto_init_ztimer,$(USEMODULE)))
|
|
USEMODULE += ztimer_init
|
|
endif
|
|
|
|
ifneq (,$(filter ztimer_auto_adjust,$(USEMODULE)))
|
|
USEMODULE += ztimer_overhead
|
|
endif
|
|
|
|
ifneq (,$(filter auto_init_saul,$(USEMODULE)))
|
|
USEMODULE += saul_init_devs
|
|
endif
|
|
|
|
ifneq (,$(filter auto_init_libcose_crypt,$(USEMODULE)))
|
|
USEMODULE += libcose_crypt_init
|
|
endif
|
|
|
|
ifneq (,$(filter xtimer,$(USEMODULE)))
|
|
ifeq (,$(filter ztimer_xtimer_compat,$(USEMODULE)))
|
|
USEMODULE += div
|
|
endif
|
|
endif
|