include.am 739 B

1234567891011121314151617181920212223
  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. examples/client/client.c \
  13. examples/server/server.c
  14. tests_unit_test_CFLAGS = -DNO_MAIN_DRIVER $(AM_CFLAGS)
  15. tests_unit_test_LDADD = src/libcyassl.la
  16. tests_unit_test_DEPENDENCIES = src/libcyassl.la
  17. endif
  18. EXTRA_DIST += tests/unit.h
  19. EXTRA_DIST += tests/test.conf \
  20. tests/test-dtls.conf
  21. DISTCLEANFILES+= tests/.libs/unit.test