include.am 1.1 KB

123456789101112131415161718192021222324
  1. # vim:ft=automake
  2. # All paths should be given relative to the root
  3. if BUILD_ASYNCCRYPT
  4. noinst_HEADERS += examples/async/async_tls.h
  5. noinst_PROGRAMS += examples/async/async_client
  6. examples_async_async_client_SOURCES = examples/async/async_client.c examples/async/async_tls.c
  7. examples_async_async_client_LDADD = src/libwolfssl@LIBSUFFIX@.la $(LIB_STATIC_ADD)
  8. examples_async_async_client_DEPENDENCIES = src/libwolfssl@LIBSUFFIX@.la
  9. examples_async_async_client_CFLAGS = $(AM_CFLAGS)
  10. noinst_PROGRAMS += examples/async/async_server
  11. examples_async_async_server_SOURCES = examples/async/async_server.c examples/async/async_tls.c
  12. examples_async_async_server_LDADD = src/libwolfssl@LIBSUFFIX@.la $(LIB_STATIC_ADD)
  13. examples_async_async_server_DEPENDENCIES = src/libwolfssl@LIBSUFFIX@.la
  14. examples_async_async_server_CFLAGS = $(AM_CFLAGS)
  15. endif
  16. dist_example_DATA+= examples/async/async_server.c
  17. dist_example_DATA+= examples/async/async_client.c
  18. DISTCLEANFILES+= examples/async/.libs/async_server
  19. DISTCLEANFILES+= examples/async/.libs/async_client
  20. EXTRA_DIST += examples/async/README.md