blob: 8d0070ac9baec85ff49cd81144fb2a6a66e20912 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/charon
AM_CFLAGS = -rdynamic
plugin_LTLIBRARIES = libcharon-unit-tester.la
libcharon_unit_tester_la_SOURCES = unit_tester.c unit_tester.h \
tests/test_enumerator.c \
tests/test_auth_info.c \
tests/test_fips_prf.c \
tests/test_curl.c \
tests/test_mysql.c \
tests/test_sqlite.c \
tests/test_mutex.c \
tests/test_rsa_gen.c \
tests/test_med_db.c
libcharon_unit_tester_la_LDFLAGS = -module
|