forked from espressif/esp-idf
1. separate Kconfig from esp32 component 2. modify component.mk for esp_wifi a little bit to make it depend on IDF_TARGET
22 lines
533 B
Makefile
22 lines
533 B
Makefile
#
|
|
# Component Makefile
|
|
#
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS := include
|
|
COMPONENT_SRCDIRS := src
|
|
|
|
LIBS ?=
|
|
ifndef CONFIG_NO_BLOBS
|
|
LIBS += core rtc net80211 pp wpa smartconfig coexist wps wpa2 espnow phy mesh
|
|
endif
|
|
|
|
COMPONENT_ADD_LDFLAGS += -L$(COMPONENT_PATH)/lib_$(IDF_TARGET) \
|
|
$(addprefix -l,$(LIBS)) \
|
|
|
|
COMPONENT_ADD_LDFRAGMENTS += linker.lf
|
|
|
|
COMPONENT_SUBMODULES += lib_$(IDF_TARGET)
|
|
|
|
ALL_LIB_FILES := $(patsubst %,$(COMPONENT_PATH)/lib_$(IDF_TARGET)/lib%.a,$(LIBS))
|
|
COMPONENT_ADD_LINKER_DEPS += $(ALL_LIB_FILES)
|