[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Wed Jun 10 00:01:56 UTC 2015
The branch master has been updated
via acaff3b797f50a0a0e17a0be45b7fafad962004e (commit)
via 177b5f9c82e1152d6ce20a83556db629697fff65 (commit)
from 121ee399c91789b34898e25eed67802e7a888277 (commit)
- Log -----------------------------------------------------------------
commit acaff3b797f50a0a0e17a0be45b7fafad962004e
Author: Richard Levitte <levitte at openssl.org>
Date: Tue Jun 9 23:06:23 2015 +0200
When making libcrypto from apps or test, make sure to include engines
For librypto to be complete, the stuff in both crypto/ and engines/
have to be built. Doing 'make test' or 'make apps' from a clean
source tree failed to do so.
Corrected by using the new 'build_libcrypto' in the top Makefile.
Reviewed-by: Tim Hudson <tjh at openssl.org>
commit 177b5f9c82e1152d6ce20a83556db629697fff65
Author: Richard Levitte <levitte at openssl.org>
Date: Wed Jun 10 01:34:26 2015 +0200
Add and rearrange building of libraries
There's a need for a target that will build all of libcrypto, so let's
add 'build_libcrypto' that does this. For ortogonality, let's also
add 'build_libssl'. Have both also depend on 'libcrypto.pc' and
'libssl.pc' so those get built together with the libraries.
This makes 'all' depend on fewer things directly.
Reviewed-by: Tim Hudson <tjh at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
Makefile.org | 7 +++++--
apps/Makefile | 4 ++--
test/Makefile | 4 ++--
3 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/Makefile.org b/Makefile.org
index 9f72cdb..e9b49d9 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -187,7 +187,7 @@ INSTALLDIRS= \
$(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
$(INSTALL_PREFIX)$(OPENSSLDIR)/private
-all: Makefile build_all openssl.pc libssl.pc libcrypto.pc
+all: Makefile build_all
# as we stick to -e, CLEARENV ensures that local variables in lower
# Makefiles remain local and variable. $${VAR+VAR} is tribute to Korn
@@ -272,7 +272,10 @@ sub_all: build_all
build_all: build_libs build_apps build_tests build_tools
-build_libs: build_crypto build_ssl build_engines
+build_libs: build_libcrypto build_libssl openssl.pc
+
+build_libcrypto: build_crypto build_engines libcrypto.pc
+build_libssl: build_ssl libssl.pc
build_crypto:
@dir=crypto; target=all; $(BUILD_ONE_CMD)
diff --git a/apps/Makefile b/apps/Makefile
index 90e6014..bf554ab 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -139,10 +139,10 @@ clean:
rm -f req
$(DLIBSSL):
- (cd ..; $(MAKE) DIRS=ssl all)
+ (cd ..; $(MAKE) build_libssl)
$(DLIBCRYPTO):
- (cd ..; $(MAKE) DIRS=crypto all)
+ (cd ..; $(MAKE) build_libcrypto)
$(EXE): progs.h $(EXE_OBJ) $(DLIBCRYPTO) $(DLIBSSL)
$(RM) $(EXE)
diff --git a/test/Makefile b/test/Makefile
index d37e020..343c21a 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -409,10 +409,10 @@ clean:
rm -f .rnd tmp.bntest tmp.bctest *.o *.obj *.dll lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log dummytest
$(DLIBSSL):
- (cd ..; $(MAKE) DIRS=ssl all)
+ (cd ..; $(MAKE) build_libssl)
$(DLIBCRYPTO):
- (cd ..; $(MAKE) DIRS=crypto all)
+ (cd ..; $(MAKE) build_libcrypto)
BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
shlib_target="$(SHLIB_TARGET)"; \
More information about the openssl-commits
mailing list