summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLutz Jänicke <jaenicke@openssl.org>2003-12-03 16:29:41 +0000
committerLutz Jänicke <jaenicke@openssl.org>2003-12-03 16:29:41 +0000
commit919f8bcd21c1d69a734f56b5ac2e2a576a0ed5f2 (patch)
tree22d043c8c0c5d1ef1f3350e8b0a477918b026fa3
parent2bfd2c74d256483cab8775a94204839d25020577 (diff)
downloadopenssl-new-919f8bcd21c1d69a734f56b5ac2e2a576a0ed5f2.tar.gz
Restructure make targets to allow parallel make.
Submitted by: Witold Filipczyk <witekfl@poczta.gazeta.pl> PR: #513
-rw-r--r--crypto/Makefile.ssl4
-rw-r--r--ssl/Makefile.ssl4
2 files changed, 4 insertions, 4 deletions
diff --git a/crypto/Makefile.ssl b/crypto/Makefile.ssl
index a81b367ccf..037e72d09f 100644
--- a/crypto/Makefile.ssl
+++ b/crypto/Makefile.ssl
@@ -52,7 +52,7 @@ ALL= $(GENERAL) $(SRC) $(HEADER)
top:
@(cd ..; $(MAKE) DIRS=$(DIR) all)
-all: buildinf.h lib subdirs shared
+all: shared
buildinf.h: ../Makefile.ssl
( echo "#ifndef MK1MF_BUILD"; \
@@ -98,7 +98,7 @@ lib: $(LIBOBJ)
$(RANLIB) $(LIB) || echo Never mind.
@touch lib
-shared:
+shared: buildinf.h lib subdirs
if [ -n "$(SHARED_LIBS)" ]; then \
(cd ..; $(MAKE) $(SHARED_LIB)); \
fi
diff --git a/ssl/Makefile.ssl b/ssl/Makefile.ssl
index c1e34b2410..39b958f55c 100644
--- a/ssl/Makefile.ssl
+++ b/ssl/Makefile.ssl
@@ -55,14 +55,14 @@ ALL= $(GENERAL) $(SRC) $(HEADER)
top:
(cd ..; $(MAKE) DIRS=$(DIR) all)
-all: lib shared
+all: shared
lib: $(LIBOBJ)
$(AR) $(LIB) $(LIBOBJ)
$(RANLIB) $(LIB) || echo Never mind.
@touch lib
-shared:
+shared: lib
if [ -n "$(SHARED_LIBS)" ]; then \
(cd ..; $(MAKE) $(SHARED_LIB)); \
fi