[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Rich Salz
rsalz at openssl.org
Sun Jun 21 19:27:12 UTC 2015
The branch OpenSSL_1_0_2-stable has been updated
via 8e6bb99979b95ee8b878e22e043ceb78d79c32a1 (commit)
from 8615d8b4ec08864674c2d8226f4c6c192e313893 (commit)
- Log -----------------------------------------------------------------
commit 8e6bb99979b95ee8b878e22e043ceb78d79c32a1
Author: Rich Salz <rsalz at akamai.com>
Date: Sun Jun 21 15:12:20 2015 -0400
RT1688: Add dependencies for parallel make
Backport to 1.0.1 and 1.0.2 to fix RT 3905
Reviewed-by: Richard Levitte <levitte at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
Makefile.org | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/Makefile.org b/Makefile.org
index 9f4faae..d77e264 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -269,6 +269,7 @@ reflect:
@[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
sub_all: build_all
+
build_all: build_libs build_apps build_tests build_tools
build_libs: build_libcrypto build_libssl openssl.pc
@@ -278,15 +279,15 @@ build_libssl: build_ssl libssl.pc
build_crypto:
@dir=crypto; target=all; $(BUILD_ONE_CMD)
-build_ssl:
+build_ssl: build_crypto
@dir=ssl; target=all; $(BUILD_ONE_CMD)
-build_engines:
+build_engines: build_crypto
@dir=engines; target=all; $(BUILD_ONE_CMD)
-build_apps:
+build_apps: build_libs
@dir=apps; target=all; $(BUILD_ONE_CMD)
-build_tests:
+build_tests: build_libs
@dir=test; target=all; $(BUILD_ONE_CMD)
-build_tools:
+build_tools: build_libs
@dir=tools; target=all; $(BUILD_ONE_CMD)
all_testapps: build_libs build_testapps
More information about the openssl-commits
mailing list