From e70a39830cd50af316d677cef7d47b4f14047f8d Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 31 Jul 2002 13:49:06 +0000 Subject: [PATCH] Make sure to use $(MAKE) everywhere instead of make. Part of PR 181 --- Makefile.org | 2 +- crypto/Makefile.ssl | 2 +- ssl/Makefile.ssl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.org b/Makefile.org index aeebfb6041..d80c4c2e65 100644 --- a/Makefile.org +++ b/Makefile.org @@ -732,7 +732,7 @@ install: all install_docs done; \ ( here="`pwd`"; \ cd $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \ - make -f $$here/Makefile link-shared ); \ + $(MAKE) -f $$here/Makefile link-shared ); \ fi install_docs: diff --git a/crypto/Makefile.ssl b/crypto/Makefile.ssl index dc45d37deb..55e970baec 100644 --- a/crypto/Makefile.ssl +++ b/crypto/Makefile.ssl @@ -98,7 +98,7 @@ lib: $(LIBOBJ) shared: if [ -n "$(SHARED_LIBS)" ]; then \ - (cd ..; make $(SHARED_LIB)); \ + (cd ..; $(MAKE) $(SHARED_LIB)); \ fi libs: diff --git a/ssl/Makefile.ssl b/ssl/Makefile.ssl index c75956fc21..3a8bd9befa 100644 --- a/ssl/Makefile.ssl +++ b/ssl/Makefile.ssl @@ -65,7 +65,7 @@ lib: $(LIBOBJ) shared: if [ -n "$(SHARED_LIBS)" ]; then \ - (cd ..; make $(SHARED_LIB)); \ + (cd ..; $(MAKE) $(SHARED_LIB)); \ fi files: -- GitLab