diff options
| author | Brent Cook <busterb@gmail.com> | 2022-12-18 22:10:11 -0600 |
|---|---|---|
| committer | Brent Cook <busterb@gmail.com> | 2023-05-27 01:20:54 -0500 |
| commit | a316f8ab8cf79895062c1d1fcc5d47c3d2cc6f6a (patch) | |
| tree | 1479be00e4e02df3fd1264cbc3d6d1c0d1ff2ef6 /apps/openssl | |
| parent | f8ced390cd47811bc7d3447aead5d4a11816403f (diff) | |
| download | portable-a316f8ab8cf79895062c1d1fcc5d47c3d2cc6f6a.tar.gz portable-a316f8ab8cf79895062c1d1fcc5d47c3d2cc6f6a.tar.bz2 portable-a316f8ab8cf79895062c1d1fcc5d47c3d2cc6f6a.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 064975b..2567ef0 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 |
