aboutsummaryrefslogtreecommitdiff
path: root/apps/openssl
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2022-12-18 22:10:11 -0600
committerBrent Cook <busterb@gmail.com>2023-02-28 06:56:49 -0600
commitcfbdf67f5960198363f56b06f6a4f88aa8654d10 (patch)
tree69cf61cb6758d661484764a08ed3c963e476d705 /apps/openssl
parentb38f5a8904b83d433e967f683821ca992354551b (diff)
downloadportable-cfbdf67f5960198363f56b06f6a4f88aa8654d10.tar.gz
portable-cfbdf67f5960198363f56b06f6a4f88aa8654d10.tar.bz2
portable-cfbdf67f5960198363f56b06f6a4f88aa8654d10.zip
link internal apps statically
Diffstat (limited to 'apps/openssl')
-rw-r--r--apps/openssl/Makefile.am9
1 files changed, 7 insertions, 2 deletions
diff --git a/apps/openssl/Makefile.am b/apps/openssl/Makefile.am
index 7cbac48..9574e06 100644
--- a/apps/openssl/Makefile.am
+++ b/apps/openssl/Makefile.am
@@ -1,5 +1,8 @@
1include $(top_srcdir)/Makefile.am.common 1include $(top_srcdir)/Makefile.am.common
2 2
3-include $(abs_top_builddir)/crypto/libcrypto_la_objects.mk
4-include $(abs_top_builddir)/ssl/libssl_la_objects.mk
5
3if !ENABLE_LIBTLS_ONLY 6if !ENABLE_LIBTLS_ONLY
4bin_PROGRAMS = openssl 7bin_PROGRAMS = openssl
5dist_man_MANS = openssl.1 8dist_man_MANS = openssl.1
@@ -7,8 +10,10 @@ else
7noinst_PROGRAMS = openssl 10noinst_PROGRAMS = openssl
8endif 11endif
9 12
10openssl_LDADD = $(abs_top_builddir)/ssl/libssl.la 13openssl_LDADD = $(libcrypto_la_objects)
11openssl_LDADD += $(abs_top_builddir)/crypto/libcrypto.la 14openssl_LDADD += $(libcompat_la_objects)
15openssl_LDADD += $(libcompatnoopt_la_objects)
16openssl_LDADD += $(libssl_la_objects)
12openssl_LDADD += $(PLATFORM_LDADD) $(PROG_LDADD) 17openssl_LDADD += $(PLATFORM_LDADD) $(PROG_LDADD)
13 18
14openssl_SOURCES = apps.c 19openssl_SOURCES = apps.c