2016-09-20 05:35:56 +02:00
|
|
|
# Match up all the module source files with their corresponding Kconfig
|
|
|
|
# option in the form LUA_MODULE_<modname> and if enabled, add a
|
|
|
|
# "-u <modname>_module_selected1" option to force the linker to include
|
|
|
|
# the module. See components/core/include/module.h for further details on
|
|
|
|
# how this works.
|
|
|
|
-include $(PROJECT_PATH)/build/include/config/auto.conf
|
|
|
|
include $(PROJECT_PATH)/components/modules/uppercase.mk
|
|
|
|
|
2017-04-23 17:34:42 +02:00
|
|
|
ifneq (4.0, $(firstword $(sort $(MAKE_VERSION) 4.0)))
|
|
|
|
# make versions below 4.0 will fail on the uppercase function used in
|
|
|
|
# the exapnsion of MODULE_NAMES.
|
|
|
|
$(error GNU make version 4.0 or above required)
|
|
|
|
endif
|
|
|
|
|
2016-11-17 06:52:01 +01:00
|
|
|
MODULE_NAMES:=$(call uppercase,$(patsubst $(COMPONENT_PATH)/%.c,%,$(wildcard $(COMPONENT_PATH)/*.c)))
|
2016-09-20 05:35:56 +02:00
|
|
|
FORCE_LINK:=$(foreach mod,$(MODULE_NAMES),$(if $(CONFIG_LUA_MODULE_$(mod)), -u $(mod)_module_selected1))
|
2016-09-29 09:02:40 +02:00
|
|
|
COMPONENT_ADD_LDFLAGS=$(FORCE_LINK) -lmodules $(if $(CONFIG_LUA_MODULE_BTHCI),-lbtdm_app)
|
2016-09-20 05:35:56 +02:00
|
|
|
|
2016-10-03 08:42:28 +02:00
|
|
|
# These are disabled by default in the IDF, so switch them back on
|
|
|
|
CFLAGS += \
|
|
|
|
-Werror=unused-function \
|
|
|
|
-Werror=unused-but-set-variable \
|
|
|
|
-Werror=unused-variable \
|