Files
esp-idf/components/esp-tls/component.mk
T

17 lines
306 B
Makefile
Raw Normal View History

2019-09-07 16:24:54 +05:30
2018-02-03 09:01:45 +05:30
COMPONENT_SRCDIRS := .
2019-09-07 16:24:54 +05:30
COMPONENT_OBJS := esp_tls.o
2018-02-03 09:01:45 +05:30
COMPONENT_ADD_INCLUDEDIRS := . private_include
2019-09-07 16:24:54 +05:30
ifneq ($(CONFIG_ESP_TLS_USING_MBEDTLS), )
COMPONENT_OBJS += esp_tls_mbedtls.o
endif
ifneq ($(CONFIG_ESP_TLS_USING_WOLFSSL), )
COMPONENT_OBJS += esp_tls_wolfssl.o
endif
CFLAGS += -DWOLFSSL_USER_SETTINGS