2011-12-14 09:20:46 -08:00
|
|
|
# vim:ft=automake
|
|
|
|
# included from Top Level Makefile.am
|
|
|
|
# All paths should be given relative to the root
|
|
|
|
|
|
|
|
|
2012-11-29 11:31:57 -08:00
|
|
|
if BUILD_EXAMPLES
|
2014-03-06 21:34:33 -08:00
|
|
|
check_PROGRAMS += tests/unit.test
|
|
|
|
noinst_PROGRAMS += tests/unit.test
|
|
|
|
tests_unit_test_SOURCES = \
|
2012-11-01 12:36:47 -07:00
|
|
|
tests/unit.c \
|
|
|
|
tests/api.c \
|
|
|
|
tests/suites.c \
|
2012-08-06 17:14:31 -07:00
|
|
|
tests/hash.c \
|
2012-11-01 12:36:47 -07:00
|
|
|
examples/client/client.c \
|
|
|
|
examples/server/server.c
|
2014-03-06 21:34:33 -08: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 11:31:57 -08:00
|
|
|
endif
|
2012-08-03 23:19:24 -07:00
|
|
|
EXTRA_DIST += tests/unit.h
|
2012-08-07 17:01:59 -07:00
|
|
|
EXTRA_DIST += tests/test.conf \
|
2013-03-11 12:53:38 -07:00
|
|
|
tests/test-dtls.conf
|
2014-03-06 21:34:33 -08:00
|
|
|
DISTCLEANFILES+= tests/.libs/unit.test
|