mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-16 17:57:44 -04: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>
18 lines
682 B
Text
18 lines
682 B
Text
# vim:ft=automake
|
|
# All paths should be given relative to the root
|
|
|
|
if BUILD_WOLFCRYPT_TESTS
|
|
noinst_PROGRAMS+= wolfcrypt/test/testwolfcrypt
|
|
if BUILD_CRYPTONLY
|
|
check_PROGRAMS+= wolfcrypt/test/testwolfcrypt
|
|
endif
|
|
noinst_PROGRAMS+= wolfcrypt/test/testwolfcrypt
|
|
wolfcrypt_test_testwolfcrypt_SOURCES = wolfcrypt/test/test.c
|
|
wolfcrypt_test_testwolfcrypt_LDADD = src/libwolfssl.la $(LIB_STATIC_ADD)
|
|
wolfcrypt_test_testwolfcrypt_DEPENDENCIES = src/libwolfssl.la
|
|
noinst_HEADERS += wolfcrypt/test/test.h
|
|
endif
|
|
EXTRA_DIST += wolfcrypt/test/test.sln
|
|
EXTRA_DIST += wolfcrypt/test/test.vcproj
|
|
EXTRA_DIST += wolfcrypt/test/README.md
|
|
DISTCLEANFILES+= wolfcrypt/test/.libs/testwolfcrypt
|