include.am 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. noinst_PROGRAMS += tests/unit.test
  6. tests_unit_test_SOURCES = \
  7. tests/unit.c \
  8. tests/api.c \
  9. tests/suites.c \
  10. tests/hash.c \
  11. tests/srp.c \
  12. examples/client/client.c \
  13. examples/server/server.c
  14. tests_unit_test_CFLAGS = -DNO_MAIN_DRIVER $(AM_CFLAGS) $(WOLFSENTRY_INCLUDE)
  15. tests_unit_test_LDADD = src/libwolfssl.la $(LIB_STATIC_ADD) $(WOLFSENTRY_LIB)
  16. tests_unit_test_DEPENDENCIES = src/libwolfssl.la
  17. endif
  18. EXTRA_DIST += tests/unit.h \
  19. tests/test.conf \
  20. tests/test-sha2.conf \
  21. tests/test-tls13.conf \
  22. tests/test-tls13-down.conf \
  23. tests/test-tls13-ecc.conf \
  24. tests/test-tls13-psk.conf \
  25. tests/test-tls13-pq.conf \
  26. tests/test-psk.conf \
  27. tests/test-psk-no-id.conf \
  28. tests/test-psk-no-id-sha2.conf \
  29. tests/test-dtls.conf \
  30. tests/test-dtls-fails.conf \
  31. tests/test-dtls-fails-cipher.conf \
  32. tests/test-dtls-group.conf \
  33. tests/test-dtls-mtu.conf \
  34. tests/test-dtls-reneg-client.conf \
  35. tests/test-dtls-reneg-server.conf \
  36. tests/test-dtls-resume.conf \
  37. tests/test-dtls-sha2.conf \
  38. tests/test-sctp.conf \
  39. tests/test-sctp-sha2.conf \
  40. tests/test-sig.conf \
  41. tests/test-ed25519.conf \
  42. tests/test-ed448.conf \
  43. tests/test-enckeys.conf \
  44. tests/test-maxfrag.conf \
  45. tests/test-maxfrag-dtls.conf \
  46. tests/test-fails.conf \
  47. tests/test-chains.conf \
  48. tests/test-altchains.conf \
  49. tests/test-trustpeer.conf \
  50. tests/test-dhprime.conf \
  51. tests/test-p521.conf \
  52. tests/test-ecc-cust-curves.conf \
  53. tests/NCONF_test.cnf \
  54. tests/test-tls-downgrade.conf \
  55. tests/TXT_DB.txt
  56. DISTCLEANFILES+= tests/.libs/unit.test