2011-12-14 21:20:46 +04:00
|
|
|
# vim:ft=automake
|
|
|
|
# included from Top Level Makefile.am
|
|
|
|
# All paths should be given relative to the root
|
|
|
|
|
|
|
|
|
2012-11-29 23:31:57 +04:00
|
|
|
if BUILD_EXAMPLES
|
2014-03-07 09:34:33 +04:00
|
|
|
check_PROGRAMS += tests/unit.test
|
|
|
|
noinst_PROGRAMS += tests/unit.test
|
|
|
|
tests_unit_test_SOURCES = \
|
2012-11-01 23:36:47 +04:00
|
|
|
tests/unit.c \
|
|
|
|
tests/api.c \
|
|
|
|
tests/suites.c \
|
2012-08-07 04:14:31 +04:00
|
|
|
tests/hash.c \
|
2012-11-01 23:36:47 +04:00
|
|
|
examples/client/client.c \
|
|
|
|
examples/server/server.c
|
2014-03-07 09:34:33 +04:00
|
|
|
tests_unit_test_CFLAGS = -DNO_MAIN_DRIVER $(AM_CFLAGS)
|
|
|
|
tests_unit_test_LDADD = src/libcyassl.la
|
|
|
|
tests_unit_test_DEPENDENCIES = src/libcyassl.la
|
2012-11-29 23:31:57 +04:00
|
|
|
endif
|
2012-08-04 10:19:24 +04:00
|
|
|
EXTRA_DIST += tests/unit.h
|
2012-08-08 04:01:59 +04:00
|
|
|
EXTRA_DIST += tests/test.conf \
|
2013-03-11 23:53:38 +04:00
|
|
|
tests/test-dtls.conf
|
2014-03-07 09:34:33 +04:00
|
|
|
DISTCLEANFILES+= tests/.libs/unit.test
|