Link crypto and ssl object files directly instead of static library

- Output object files list variable for libcrypto and libssl to .mk file.
- Include object files list variable .mk from tls/Makefile
- Link .lo files directly instead of static library for libtls.
This commit is contained in:
kinichiro
2020-09-20 13:37:52 +09:00
committed by Brent Cook
parent fe42a8011b
commit 5a29b0472d
4 changed files with 31 additions and 4 deletions

View File

@@ -1,5 +1,8 @@
include $(top_srcdir)/Makefile.am.common
-include $(abs_top_builddir)/crypto/libcrypto_la_objects.mk
-include $(abs_top_builddir)/ssl/libssl_la_objects.mk
lib_LTLIBRARIES = libtls.la
EXTRA_DIST = VERSION
@@ -7,9 +10,11 @@ EXTRA_DIST += CMakeLists.txt
EXTRA_DIST += tls.sym
libtls_la_LDFLAGS = -version-info @LIBTLS_VERSION@ -no-undefined -export-symbols $(top_srcdir)/tls/tls.sym
libtls_la_LDFLAGS += $(abs_top_builddir)/ssl/.libs/libssl.a
libtls_la_LDFLAGS += $(abs_top_builddir)/crypto/.libs/libcrypto.a
libtls_la_LIBADD = $(PLATFORM_LDADD)
libtls_la_LIBADD = $(libcrypto_la_objects)
libtls_la_LIBADD += $(libcompat_la_objects)
libtls_la_LIBADD += $(libcompatnoopt_la_objects)
libtls_la_LIBADD += $(libssl_la_objects)
libtls_la_LIBADD += $(PLATFORM_LDADD)
libtls_la_CPPFLAGS = $(AM_CPPFLAGS)
if OPENSSLDIR_DEFINED