From: Richard Levitte Date: Wed, 31 Jul 2002 13:49:06 +0000 (+0000) Subject: Make sure to use $(MAKE) everywhere instead of make. X-Git-Tag: OpenSSL_0_9_7-beta4~218^2~42 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=e70a39830cd50af316d677cef7d47b4f14047f8d Make sure to use $(MAKE) everywhere instead of make. Part of PR 181 --- 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: