diff options
author | Brent Cook <busterb@gmail.com> | 2022-12-18 22:10:11 -0600 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2023-02-28 06:56:49 -0600 |
commit | cfbdf67f5960198363f56b06f6a4f88aa8654d10 (patch) | |
tree | 69cf61cb6758d661484764a08ed3c963e476d705 /apps/openssl | |
parent | b38f5a8904b83d433e967f683821ca992354551b (diff) | |
download | portable-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.am | 9 |
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 @@ | |||
1 | include $(top_srcdir)/Makefile.am.common | 1 | include $(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 | |||
3 | if !ENABLE_LIBTLS_ONLY | 6 | if !ENABLE_LIBTLS_ONLY |
4 | bin_PROGRAMS = openssl | 7 | bin_PROGRAMS = openssl |
5 | dist_man_MANS = openssl.1 | 8 | dist_man_MANS = openssl.1 |
@@ -7,8 +10,10 @@ else | |||
7 | noinst_PROGRAMS = openssl | 10 | noinst_PROGRAMS = openssl |
8 | endif | 11 | endif |
9 | 12 | ||
10 | openssl_LDADD = $(abs_top_builddir)/ssl/libssl.la | 13 | openssl_LDADD = $(libcrypto_la_objects) |
11 | openssl_LDADD += $(abs_top_builddir)/crypto/libcrypto.la | 14 | openssl_LDADD += $(libcompat_la_objects) |
15 | openssl_LDADD += $(libcompatnoopt_la_objects) | ||
16 | openssl_LDADD += $(libssl_la_objects) | ||
12 | openssl_LDADD += $(PLATFORM_LDADD) $(PROG_LDADD) | 17 | openssl_LDADD += $(PLATFORM_LDADD) $(PROG_LDADD) |
13 | 18 | ||
14 | openssl_SOURCES = apps.c | 19 | openssl_SOURCES = apps.c |