summaryrefslogtreecommitdiff
path: root/src/libstrongswan/tests/Makefile.am
blob: 585f9c16e71faea536c568d6c610f7c9a8fd8dcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
TESTS = test_runner

check_PROGRAMS = $(TESTS)

test_runner_SOURCES = \
  test_runner.c test_runner.h test_suite.h \
  test_linked_list.c test_enumerator.c test_linked_list_enumerator.c \
  test_bio_reader.c test_bio_writer.c test_chunk.c test_enum.c test_hashtable.c \
  test_identification.c test_threading.c test_utils.c test_vectors.c \
  test_array.c test_ecdsa.c test_rsa.c test_host.c

test_runner_CFLAGS = \
  -I$(top_srcdir)/src/libstrongswan \
  -DPLUGINDIR=\""$(top_builddir)/src/libstrongswan/plugins\"" \
  -DPLUGINS=\""${s_plugins}\"" \
  @COVERAGE_CFLAGS@ \
  @CHECK_CFLAGS@

test_runner_LDFLAGS = @COVERAGE_LDFLAGS@
test_runner_LDADD = \
  $(top_builddir)/src/libstrongswan/libstrongswan.la \
  $(PTHREADLIB) \
  @CHECK_LIBS@