diff options
Diffstat (limited to 'libtls-standalone/src/Makefile.am')
-rw-r--r-- | libtls-standalone/src/Makefile.am | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libtls-standalone/src/Makefile.am b/libtls-standalone/src/Makefile.am new file mode 100644 index 0000000..d5bcc49 --- /dev/null +++ b/libtls-standalone/src/Makefile.am | |||
@@ -0,0 +1,18 @@ | |||
1 | AM_CFLAGS = -I$(top_srcdir)/include | ||
2 | |||
3 | lib_LTLIBRARIES = libtls.la | ||
4 | |||
5 | libtls_la_LDFLAGS = -no-undefined | ||
6 | libtls_la_LIBADD = -lcrypto -lssl $(PLATFORM_LDADD) | ||
7 | |||
8 | libtls_la_SOURCES = tls.c | ||
9 | libtls_la_SOURCES += tls_client.c | ||
10 | libtls_la_SOURCES += tls_config.c | ||
11 | libtls_la_SOURCES += tls_server.c | ||
12 | libtls_la_SOURCES += tls_util.c | ||
13 | libtls_la_SOURCES += tls_verify.c | ||
14 | noinst_HEADERS = tls_internal.h | ||
15 | |||
16 | if !HAVE_STRSEP | ||
17 | libtls_la_SOURCES += strsep.c | ||
18 | endif | ||