diff options
author | kinichiro <kinichiro.inoguchi@gmail.com> | 2020-09-20 13:37:52 +0900 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2020-10-04 03:50:18 -0500 |
commit | 5a29b0472d5d0d1aa9936e430a87299fdb0f17ba (patch) | |
tree | 288f41dc8dbe79fc1beba2352b992f5734f859eb /apps | |
parent | fe42a8011b25797afa48cf0359c7e2753b2ece5f (diff) | |
download | portable-5a29b0472d5d0d1aa9936e430a87299fdb0f17ba.tar.gz portable-5a29b0472d5d0d1aa9936e430a87299fdb0f17ba.tar.bz2 portable-5a29b0472d5d0d1aa9936e430a87299fdb0f17ba.zip |
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.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/nc/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/nc/Makefile.am b/apps/nc/Makefile.am index 135ff4b..d678f1e 100644 --- a/apps/nc/Makefile.am +++ b/apps/nc/Makefile.am | |||
@@ -12,7 +12,7 @@ endif | |||
12 | EXTRA_DIST = nc.1 | 12 | EXTRA_DIST = nc.1 |
13 | EXTRA_DIST += CMakeLists.txt | 13 | EXTRA_DIST += CMakeLists.txt |
14 | 14 | ||
15 | nc_LDFLAGS = $(abs_top_builddir)/crypto/.libs/libcompat.a | 15 | nc_LDFLAGS = $(abs_top_builddir)/crypto/.libs/libcrypto.a |
16 | 16 | ||
17 | nc_LDADD = $(abs_top_builddir)/tls/libtls.la | 17 | nc_LDADD = $(abs_top_builddir)/tls/libtls.la |
18 | nc_LDADD += $(PLATFORM_LDADD) $(PROG_LDADD) | 18 | nc_LDADD += $(PLATFORM_LDADD) $(PROG_LDADD) |