mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-09 21:25:15 -05:00
* Submodule wolfSSL and move wolfSSL and WolfSSL-FIPS-Ready to ThirdParty folder. * Update VS studio project. * Update FIPS project settings. * Update FIPS demo readme. * Add md to ignored file extensions.
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
|