From 325829a9bc570e261553341d52e9d3e7369e0ce8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lutz=20J=C3=A4nicke?= Date: Wed, 3 Dec 2003 16:29:16 +0000 Subject: [PATCH] Restructure make targets to allow parallel make. Submitted by: Witold Filipczyk PR: #513 --- crypto/Makefile.ssl | 4 ++-- ssl/Makefile.ssl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crypto/Makefile.ssl b/crypto/Makefile.ssl index 9def17ae60..144b206e92 100644 --- a/crypto/Makefile.ssl +++ b/crypto/Makefile.ssl @@ -50,7 +50,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"; \ @@ -96,7 +96,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 e36a79b2d6..65ed00a071 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 -- 2.25.1