mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-09 20:10:52 +02:00
ae023a5643
Implementation in wolfCrypt OpenSSL compatibility layer in wolfSSL Added tests, certificates, examples.
22 lines
896 B
Plaintext
22 lines
896 B
Plaintext
# vim:ft=automake
|
|
# included from Top Level Makefile.am
|
|
# All paths should be given relative to the root
|
|
|
|
|
|
if BUILD_EXAMPLE_TSP
|
|
noinst_PROGRAMS += examples/tsp/tsp_query examples/tsp/tsp_reply \
|
|
examples/tsp/tsp_verify
|
|
|
|
examples_tsp_tsp_query_SOURCES = examples/tsp/tsp_query.c
|
|
examples_tsp_tsp_query_LDADD = src/libwolfssl@LIBSUFFIX@.la $(LIB_STATIC_ADD)
|
|
examples_tsp_tsp_query_DEPENDENCIES = src/libwolfssl@LIBSUFFIX@.la
|
|
|
|
examples_tsp_tsp_reply_SOURCES = examples/tsp/tsp_reply.c
|
|
examples_tsp_tsp_reply_LDADD = src/libwolfssl@LIBSUFFIX@.la $(LIB_STATIC_ADD)
|
|
examples_tsp_tsp_reply_DEPENDENCIES = src/libwolfssl@LIBSUFFIX@.la
|
|
|
|
examples_tsp_tsp_verify_SOURCES = examples/tsp/tsp_verify.c
|
|
examples_tsp_tsp_verify_LDADD = src/libwolfssl@LIBSUFFIX@.la $(LIB_STATIC_ADD)
|
|
examples_tsp_tsp_verify_DEPENDENCIES = src/libwolfssl@LIBSUFFIX@.la
|
|
endif
|