aboutsummaryrefslogtreecommitdiff
path: root/tls/Makefile.am
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2014-12-06 18:59:25 -0600
committerBrent Cook <bcook@openbsd.org>2014-12-06 18:59:25 -0600
commit976f64d932bc5fac8d18dd95feddcfb4f3782551 (patch)
tree649dc41764f1fdf66e69f24dd53eb978f6181b67 /tls/Makefile.am
parent14f4175b67a8cd6c01955340b4e20d75e4e25708 (diff)
downloadportable-976f64d932bc5fac8d18dd95feddcfb4f3782551.tar.gz
portable-976f64d932bc5fac8d18dd95feddcfb4f3782551.tar.bz2
portable-976f64d932bc5fac8d18dd95feddcfb4f3782551.zip
read all library versions directly from files
This makes building and testing easier because the library Makefile.am files are use directly rather than as templates. Thanks to Wouter Clarie for the idea.
Diffstat (limited to 'tls/Makefile.am')
-rw-r--r--tls/Makefile.am18
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 @@
1include $(top_srcdir)/Makefile.am.common
2
3if ENABLE_LIBTLS
4lib_LTLIBRARIES = libtls.la
5
6EXTRA_DIST = VERSION
7
8libtls_la_LDFLAGS = -version-info @LIBTLS_VERSION@
9libtls_la_CFLAGS = $(CFLAGS) $(USER_CFLAGS)
10
11libtls_la_SOURCES = tls.c
12libtls_la_SOURCES += tls_client.c
13libtls_la_SOURCES += tls_config.c
14libtls_la_SOURCES += tls_server.c
15libtls_la_SOURCES += tls_util.c
16libtls_la_SOURCES += tls_verify.c
17noinst_HEADERS = tls_internal.h
18endif