2016-08-17 15:08:22 +00:00
|
|
|
#
|
|
|
|
# Component Makefile
|
|
|
|
#
|
2016-08-31 23:19:06 +00:00
|
|
|
# This Makefile should, at the very least, just include $(IDF_PATH)/make/component_common.mk. By default,
|
2016-08-17 15:08:22 +00:00
|
|
|
# this will take the sources in this directory, compile them and link them into
|
|
|
|
# lib(subdirectory_name).a in the build directory. This behaviour is entirely configurable,
|
2016-08-19 06:32:35 +00:00
|
|
|
# please read the esp-idf build system document if you need to do this.
|
2016-08-17 15:08:22 +00:00
|
|
|
#
|
2016-08-19 10:45:49 +00:00
|
|
|
-include $(PROJECT_PATH)/build/include/config/auto.conf
|
2016-08-17 15:08:22 +00:00
|
|
|
|
|
|
|
LIBS := crypto core net80211 phy rtc pp wpa wps
|
2016-08-19 06:32:35 +00:00
|
|
|
|
2016-08-19 10:45:49 +00:00
|
|
|
ifeq ($(CONFIG_MEMMAP_BT),y)
|
|
|
|
ifeq ($(CONFIG_MEMMAP_TRACEMEM),y)
|
|
|
|
LINKER_SCRIPTS = -T esp32.bt.trace.ld
|
|
|
|
else
|
|
|
|
LINKER_SCRIPTS = -T esp32.bt.ld
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
ifeq ($(CONFIG_MEMMAP_TRACEMEM),y)
|
|
|
|
LINKER_SCRIPTS = -T esp32.trace.ld
|
|
|
|
else
|
|
|
|
LINKER_SCRIPTS = -T esp32.ld
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
LINKER_SCRIPTS += -T esp32.common.ld -T esp32.rom.ld
|
|
|
|
|
2016-08-17 15:08:22 +00:00
|
|
|
COMPONENT_ADD_LDFLAGS := -lesp32 \
|
|
|
|
$(abspath libhal.a) \
|
|
|
|
-L$(abspath lib) \
|
|
|
|
$(addprefix -l,$(LIBS)) \
|
|
|
|
-L $(abspath ld) \
|
2016-08-19 10:45:49 +00:00
|
|
|
$(LINKER_SCRIPTS)
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2016-08-31 23:19:06 +00:00
|
|
|
include $(IDF_PATH)/make/component_common.mk
|
2016-08-19 06:20:28 +00:00
|
|
|
|
|
|
|
ALL_LIB_FILES := $(patsubst %,$(COMPONENT_PATH)/lib/lib%.a,$(LIBS))
|
|
|
|
|
2016-09-12 07:48:40 +00:00
|
|
|
# automatically trigger a git submodule update
|
|
|
|
# if any libraries are missing
|
|
|
|
$(eval $(call SubmoduleRequiredForFiles,$(ALL_LIB_FILES)))
|
2016-08-19 06:20:28 +00:00
|
|
|
|
2016-09-05 00:49:12 +00:00
|
|
|
# this is a hack to make sure the app is re-linked if the binary
|
|
|
|
# libraries change or are updated. If they change, the main esp32
|
|
|
|
# library will be rebuild by AR andthis will trigger a re-linking of
|
|
|
|
# the entire app.
|
|
|
|
#
|
|
|
|
# It would be better for components to be able to expose any of these
|
|
|
|
# non-standard dependencies via get_variable, but this will do for now.
|
|
|
|
$(COMPONENT_LIBRARY): $(ALL_LIB_FILES)
|