mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-18 09:35:16 -05:00
* deleted old version wolfSSL before updating * updated wolfSSL to the latest version(v4.4.0) * updated wolfSSL to the latest version(v4.4.0) * added macros for timing resistance Co-authored-by: RichardBarry <3073890+RichardBarry@users.noreply.github.com> Co-authored-by: Ming Yue <mingyue86010@gmail.com>
15 lines
558 B
Text
15 lines
558 B
Text
# vim:ft=automake
|
|
# included from Top Level Makefile.am
|
|
# All paths should be given relative to the root
|
|
|
|
|
|
if BUILD_THREADED_EXAMPLES
|
|
noinst_PROGRAMS += examples/benchmark/tls_bench
|
|
noinst_HEADERS += examples/benchmark/tls_bench.h
|
|
examples_benchmark_tls_bench_SOURCES = examples/benchmark/tls_bench.c
|
|
examples_benchmark_tls_bench_LDADD = src/libwolfssl.la $(LIB_STATIC_ADD)
|
|
examples_benchmark_tls_bench_DEPENDENCIES = src/libwolfssl.la
|
|
endif
|
|
|
|
dist_example_DATA+= examples/benchmark/tls_bench.c
|
|
DISTCLEANFILES+= examples/benchmark/.libs/tls_bench
|