25 lines
1.1 KiB
Plaintext
25 lines
1.1 KiB
Plaintext
|
# vim:ft=automake
|
||
|
# All paths should be given relative to the root
|
||
|
|
||
|
if BUILD_ASYNCCRYPT
|
||
|
noinst_HEADERS += examples/async/async_tls.h
|
||
|
|
||
|
noinst_PROGRAMS += examples/async/async_client
|
||
|
examples_async_async_client_SOURCES = examples/async/async_client.c examples/async/async_tls.c
|
||
|
examples_async_async_client_LDADD = src/libwolfssl@LIBSUFFIX@.la $(LIB_STATIC_ADD)
|
||
|
examples_async_async_client_DEPENDENCIES = src/libwolfssl@LIBSUFFIX@.la
|
||
|
examples_async_async_client_CFLAGS = $(AM_CFLAGS)
|
||
|
|
||
|
noinst_PROGRAMS += examples/async/async_server
|
||
|
examples_async_async_server_SOURCES = examples/async/async_server.c examples/async/async_tls.c
|
||
|
examples_async_async_server_LDADD = src/libwolfssl@LIBSUFFIX@.la $(LIB_STATIC_ADD)
|
||
|
examples_async_async_server_DEPENDENCIES = src/libwolfssl@LIBSUFFIX@.la
|
||
|
examples_async_async_server_CFLAGS = $(AM_CFLAGS)
|
||
|
endif
|
||
|
|
||
|
dist_example_DATA+= examples/async/async_server.c
|
||
|
dist_example_DATA+= examples/async/async_client.c
|
||
|
DISTCLEANFILES+= examples/async/.libs/async_server
|
||
|
DISTCLEANFILES+= examples/async/.libs/async_client
|
||
|
EXTRA_DIST += examples/async/README.md
|