mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-23 10:08:06 +08:00

Changes: os_get_random for RNG & conditional execution on mbedtls for websockets Added rom/queue.h. Changed component.mk to exclude axtls based compilation.
17 lines
378 B
Makefile
17 lines
378 B
Makefile
#
|
|
# Component Makefile
|
|
#
|
|
# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
|
|
|
|
COMPONENT_SRCDIRS :=
|
|
COMPONENT_ADD_INCLUDEDIRS :=
|
|
|
|
ifdef CONFIG_SSL_USING_MBEDTLS
|
|
COMPONENT_SRCDIRS := .
|
|
COMPONENT_ADD_INCLUDEDIRS := include
|
|
endif
|
|
|
|
ifdef CONFIG_SSL_USING_WOLFSSL
|
|
COMPONENT_SRCDIRS := .
|
|
COMPONENT_ADD_INCLUDEDIRS := include
|
|
endif |