02e1cc4df1
- To avoid ld warning on Solaris, use abs_top_builddir in Makefile.am
33 lines
897 B
Makefile
33 lines
897 B
Makefile
include $(top_srcdir)/Makefile.am.common
|
|
|
|
lib_LTLIBRARIES = libtls.la
|
|
|
|
EXTRA_DIST = VERSION
|
|
EXTRA_DIST += CMakeLists.txt
|
|
|
|
libtls_la_LDFLAGS = -version-info @LIBTLS_VERSION@ -no-undefined
|
|
libtls_la_LIBADD = $(abs_top_builddir)/ssl/libssl.la
|
|
libtls_la_LIBADD += $(abs_top_builddir)/crypto/libcrypto.la
|
|
libtls_la_LIBADD += $(PLATFORM_LDADD)
|
|
|
|
libtls_la_CPPFLAGS = $(AM_CPPFLAGS)
|
|
if OPENSSLDIR_DEFINED
|
|
libtls_la_CPPFLAGS += -D_PATH_SSL_CA_FILE=\"@OPENSSLDIR@/cert.pem\"
|
|
else
|
|
libtls_la_CPPFLAGS += -D_PATH_SSL_CA_FILE=\"$(sysconfdir)/ssl/cert.pem\"
|
|
endif
|
|
|
|
libtls_la_SOURCES = tls.c
|
|
libtls_la_SOURCES += tls_client.c
|
|
libtls_la_SOURCES += tls_config.c
|
|
libtls_la_SOURCES += tls_conninfo.c
|
|
libtls_la_SOURCES += tls_server.c
|
|
libtls_la_SOURCES += tls_peer.c
|
|
libtls_la_SOURCES += tls_util.c
|
|
libtls_la_SOURCES += tls_verify.c
|
|
noinst_HEADERS = tls_internal.h
|
|
|
|
if !HAVE_STRSEP
|
|
libtls_la_SOURCES += strsep.c
|
|
endif
|