From 02b215128e92eb4fb85d6306837c67971fc0827c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Goran=20Meki=C4=87?= Date: Fri, 8 Jul 2022 13:05:22 +0200 Subject: [PATCH] build: consistently use $(MAKE) when invoking it recursively Not for the `docker run ... make ...` commands though! closes https://github.com/zrepl/zrepl/pull/615 --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e54d90e..50ad570 100644 --- a/Makefile +++ b/Makefile @@ -55,7 +55,7 @@ release: clean $(MAKE) wrapup-and-checksum $(MAKE) check-git-clean ifeq (SIGN, 1) - $(make) sign + $(MAKE) sign endif @echo "ZREPL RELEASE ARTIFACTS AVAILABLE IN artifacts/release" @@ -333,12 +333,12 @@ $(ARTIFACTDIR)/go_env.txt: docs: $(ARTIFACTDIR)/docs # https://www.sphinx-doc.org/en/master/man/sphinx-build.html - make -C docs \ + $(MAKE) -C docs \ html \ BUILDDIR=../artifacts/docs \ SPHINXOPTS="-W --keep-going -n" docs-clean: - make -C docs \ + $(MAKE) -C docs \ clean \ BUILDDIR=../artifacts/docs