include.am 851 B

1234567891011121314151617181920212223242526
  1. # vim:ft=automake
  2. # included from Top Level Makefile.am
  3. # All paths should be given relative to the root
  4. if BUILD_EXAMPLES
  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
  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-qsh.conf \
  22. tests/test-psk-no-id.conf \
  23. tests/test-dtls.conf
  24. DISTCLEANFILES+= tests/.libs/unit.test