diff options
Diffstat (limited to 'tls/Makefile.am')
-rw-r--r-- | tls/Makefile.am | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tls/Makefile.am b/tls/Makefile.am new file mode 100644 index 0000000..7f65ea5 --- /dev/null +++ b/tls/Makefile.am | |||
@@ -0,0 +1,18 @@ | |||
1 | include $(top_srcdir)/Makefile.am.common | ||
2 | |||
3 | if ENABLE_LIBTLS | ||
4 | lib_LTLIBRARIES = libtls.la | ||
5 | |||
6 | EXTRA_DIST = VERSION | ||
7 | |||
8 | libtls_la_LDFLAGS = -version-info @LIBTLS_VERSION@ | ||
9 | libtls_la_CFLAGS = $(CFLAGS) $(USER_CFLAGS) | ||
10 | |||
11 | libtls_la_SOURCES = tls.c | ||
12 | libtls_la_SOURCES += tls_client.c | ||
13 | libtls_la_SOURCES += tls_config.c | ||
14 | libtls_la_SOURCES += tls_server.c | ||
15 | libtls_la_SOURCES += tls_util.c | ||
16 | libtls_la_SOURCES += tls_verify.c | ||
17 | noinst_HEADERS = tls_internal.h | ||
18 | endif | ||