[openssl-commits] [openssl] OpenSSL source code branch master updated. c3f22253b139793ff3b91ff7e6969e180cf06815
Rich Salz
rsalz at openssl.org
Fri Dec 12 18:18:29 UTC 2014
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "OpenSSL source code".
The branch, master has been updated
via c3f22253b139793ff3b91ff7e6969e180cf06815 (commit)
from fd0ba77717c4fda075c9c9a6ff1e5975fdf76905 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit c3f22253b139793ff3b91ff7e6969e180cf06815
Author: Rich Salz <rsalz at openssl.org>
Date: Fri Dec 12 13:17:51 2014 -0500
RT1688: Add dependencies for parallel make
Reviewed-by: Dr. Stephen Henson <steve at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
Makefile.org | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/Makefile.org b/Makefile.org
index 0844925..8e15bb2 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -348,21 +348,23 @@ FIPS_EX_OBJ= ../crypto/aes/aes_cfb.o \
../crypto/uid.o
sub_all: build_all
+
build_all: build_libs build_apps build_tests build_tools
build_libs: build_crypto build_ssl build_engines
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; AS='$(CC) -c'; export AS; $(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
hooks/post-receive
--
OpenSSL source code
More information about the openssl-commits
mailing list