mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-22 09:37:00 +08:00
18 lines
364 B
Makefile
18 lines
364 B
Makefile
#
|
|
# Component Makefile
|
|
#
|
|
|
|
COMPONENT_SRCDIRS :=
|
|
COMPONENT_ADD_INCLUDEDIRS :=
|
|
|
|
ifdef CONFIG_SSL_USING_MBEDTLS
|
|
COMPONENT_SRCDIRS := . lib
|
|
COMPONENT_ADD_INCLUDEDIRS := include
|
|
COMPONENT_PRIV_INCLUDEDIRS := lib/include
|
|
endif
|
|
|
|
ifdef CONFIG_SSL_USING_WOLFSSL
|
|
COMPONENT_SRCDIRS := . lib
|
|
COMPONENT_ADD_INCLUDEDIRS := include
|
|
COMPONENT_PRIV_INCLUDEDIRS := lib/include
|
|
endif |