include.am 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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-sha2.conf \
  22. tests/test-tls13.conf \
  23. tests/test-tls13-down.conf \
  24. tests/test-tls13-ecc.conf \
  25. tests/test-tls13-psk.conf \
  26. tests/test-qsh.conf \
  27. tests/test-qsh-sha2.conf \
  28. tests/test-psk.conf \
  29. tests/test-psk-no-id.conf \
  30. tests/test-psk-no-id-sha2.conf \
  31. tests/test-dtls.conf \
  32. tests/test-dtls-sha2.conf \
  33. tests/test-sctp.conf \
  34. tests/test-sctp-sha2.conf \
  35. tests/test-sig.conf \
  36. tests/test-ed25519.conf \
  37. tests/test-enckeys.conf \
  38. tests/test-maxfrag.conf \
  39. tests/test-maxfrag-dtls.conf \
  40. tests/test-fails.conf \
  41. tests/test-chains.conf \
  42. tests/test-altchains.conf \
  43. tests/test-trustpeer.conf \
  44. tests/test-dhprime.conf
  45. DISTCLEANFILES+= tests/.libs/unit.test