ee5a11b8d9
add user-crypto makefile update README for IPP crypto place user crypto in wolfcrypt and use autotools adjust distributed files move openssl compatibility consumption auto use IPP RSA -- IPP directory containing shared libraries local return value of wolfSSL_BN and formating of debug openssh testing make sure IPP not built when fips is ipp init to select correct optimizations -- static libraries on linux -- fast-rsa disabled by default try to only set library once only use static IPP if fast rsa is enabled make print out for user crypto more pretty
18 lines
641 B
Plaintext
18 lines
641 B
Plaintext
# vim:ft=automake
|
|
# All paths should be given relative to the root
|
|
|
|
if BUILD_EXAMPLES
|
|
noinst_PROGRAMS += examples/client/client
|
|
noinst_HEADERS += examples/client/client.h
|
|
examples_client_client_SOURCES = examples/client/client.c
|
|
examples_client_client_LDADD = src/libwolfssl.la $(LIB_STATIC_ADD)
|
|
examples_client_client_DEPENDENCIES = src/libwolfssl.la
|
|
endif
|
|
EXTRA_DIST += examples/client/client.sln
|
|
EXTRA_DIST += examples/client/client-ntru.vcproj
|
|
EXTRA_DIST += examples/client/client.vcproj
|
|
EXTRA_DIST += examples/client/client.vcxproj
|
|
|
|
dist_example_DATA+= examples/client/client.c
|
|
DISTCLEANFILES+= examples/client/.libs/client
|