include.am 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. # vim:ft=automake
  2. # included from Top Level Makefile.am
  3. # All paths should be given relative to the root
  4. if BUILD_TESTS
  5. check_PROGRAMS += tests/unit.test
  6. noinst_PROGRAMS += tests/unit.test
  7. tests_unit_test_SOURCES = \
  8. tests/unit.c \
  9. tests/api.c \
  10. tests/suites.c \
  11. tests/hash.c \
  12. tests/srp.c \
  13. examples/client/client.c \
  14. examples/server/server.c
  15. tests_unit_test_CFLAGS = -DNO_MAIN_DRIVER $(AM_CFLAGS)
  16. tests_unit_test_LDADD = src/libwolfssl.la $(LIB_STATIC_ADD)
  17. tests_unit_test_DEPENDENCIES = src/libwolfssl.la
  18. endif
  19. EXTRA_DIST += tests/unit.h
  20. EXTRA_DIST += tests/test.conf \
  21. tests/test-tls13.conf \
  22. tests/test-tls13-ecc.conf \
  23. tests/test-qsh.conf \
  24. tests/test-psk-no-id.conf \
  25. tests/test-dtls.conf \
  26. tests/test-sctp.conf \
  27. tests/test-sig.conf \
  28. tests/test-ed25519.conf \
  29. tests/test-enckeys.conf \
  30. tests/test-fails.conf
  31. DISTCLEANFILES+= tests/.libs/unit.test