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
|
2011-12-14 21:20:46 +04:00
|
|
|
check_PROGRAMS += tests/unit
|
|
|
|
noinst_PROGRAMS += tests/unit
|
|
|
|
tests_unit_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
|
2013-04-02 02:50:13 +04:00
|
|
|
tests_unit_CFLAGS = -DNO_MAIN_DRIVER $(AM_CFLAGS)
|
|
|
|
tests_unit_LDADD = src/libcyassl.la
|
2011-12-14 21:20:46 +04:00
|
|
|
tests_unit_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
|
2012-12-07 05:52:36 +04:00
|
|
|
DISTCLEANFILES+= tests/.libs/unit
|