Reviewers: lemzwerg, Message: commit 9812f6b989753cf5dfb42525c45839cbecd79ade Author: Han-Wen Nienhuys <han...@lilypond.org> Date: Sat Feb 22 22:35:27 2020 +0100
Use $(MAKE) instead of 'make' throughout https://sourceforge.net/p/testlilyissues/issues/5818 http://codereview.appspot.com/565720043 Description: Use $(MAKE) instead of 'make' throughout Please review this at https://codereview.appspot.com/565720043/ Affected files (+4, -5 lines): M Documentation/GNUmakefile M elisp/GNUmakefile M vim/GNUmakefile Index: Documentation/GNUmakefile diff --git a/Documentation/GNUmakefile b/Documentation/GNUmakefile index a1e8eef81277155b9c43d81135e355d6aff34cb4..070c3fdf51036ead951aff578fc51d39bac34a4d 100644 --- a/Documentation/GNUmakefile +++ b/Documentation/GNUmakefile @@ -314,10 +314,10 @@ $(outdir)/internals.texi: $(LILYPOND_BINARY) $(INIT_LY_SOURCES) $(SCHEME_SOURCES # Documentation and translations maintenance # ############################################### po-update: - make -C po po-update + $(MAKE) -C po po-update all-translations-update: po-update translation-status - $(foreach lang, $(LANGS), make ISOLANG=$(lang) skeleton-update snippet-update &&) true + $(foreach lang, $(LANGS), $(MAKE) ISOLANG=$(lang) skeleton-update snippet-update &&) true ifneq ($(NO_COLOR),) CHECK_TRANSLATION_FLAGS = --no-color Index: elisp/GNUmakefile diff --git a/elisp/GNUmakefile b/elisp/GNUmakefile index 0e7269036f7965d461fb1f9e1f0550981b42577e..4ad7f87a5d7de92238a800883cb9aa38a645f335 100644 --- a/elisp/GNUmakefile +++ b/elisp/GNUmakefile @@ -20,7 +20,7 @@ LILYPOND_WORDS_DEPENDS =\ $(top-src-dir)/ly/engraver-init.ly $(buildscript-dir)/lilypond-words: - make -C $(depth)/scripts/build + $(MAKE) -C $(depth)/scripts/build $(LILYPOND_WORDS): $(call ly_progress,Making,$@,) Index: vim/GNUmakefile diff --git a/vim/GNUmakefile b/vim/GNUmakefile index 2cd962d34f7cf7e319f892021c6d1001d9099f12..9e6f54bf887dce4621b19cd5a726a0c69ee58e88 100644 --- a/vim/GNUmakefile +++ b/vim/GNUmakefile @@ -32,11 +32,10 @@ local-uninstall: -rmdir -p $(DESTDIR)$(vimdir) $(buildscript-dir)/lilypond-words: - make -C $(depth)/scripts/build + $(MAKE) -C $(depth)/scripts/build $(LILYPOND_WORDS): $(call ly_progress,Making,$@,) cd $(top-src-dir) && $(buildscript-dir)/lilypond-words --words --vim --dir=$(top-build-dir)/vim/$(outconfbase) all: $(LILYPOND_WORDS) -