mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-04 18:11:57 +00:00
Integrating the mbedTLS to the the build proccess with the minimal Thread configuration. Change-Id: I0ae191434d26890537a29a247c409228180410f3 Jira: ZEP-327 Jira: ZEP-340 Signed-off-by: Sergio Rodriguez <sergio.sf.rodriguez@intel.com>
13 lines
337 B
Makefile
13 lines
337 B
Makefile
ifdef CONFIG_TINYCRYPT
|
|
ZEPHYRINCLUDE += -I$(srctree)/ext/lib/crypto/tinycrypt/include
|
|
endif
|
|
|
|
ifdef CONFIG_MBEDTLS_BUILTIN
|
|
ZEPHYRINCLUDE += -I$(srctree)/ext/lib/crypto/mbedtls/include
|
|
ZEPHYRINCLUDE += -I$(srctree)/ext/lib/crypto/mbedtls/configs
|
|
endif
|
|
|
|
ifdef CONFIG_MBEDTLS_LIBRARY
|
|
include $(srctree)/ext/lib/crypto/mbedtls/Makefile
|
|
endif
|