From 92b710e64bf194266e3354c06fdb16dc7de0196d Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 10 Feb 2017 06:12:22 +0000 Subject: MFLAGS for nmake * common.mk (mflags): pass make flags to sub-makes, for nmake which cannot pass them by the environment variable. * defs/gmake.mk (mflags): filter out -j option for sub-makes. * template/exts.mk.tmpl (MFLAGS): extract MFLAGS from sub extmk files for nmake. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57594 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.in') diff --git a/Makefile.in b/Makefile.in index 012ed954d2..569581efef 100644 --- a/Makefile.in +++ b/Makefile.in @@ -423,7 +423,7 @@ clean-ext distclean-ext realclean-ext:: cd ..; \ for dir do \ echo $(@:-ext=)ing "$$dir"; \ - (cd "ext/$$dir" && exec $(MAKE) $(@:-ext=)) && \ + (cd "ext/$$dir" && exec $(MAKE) $(mflags) $(@:-ext=)) && \ case "$@" in \ *distclean-ext*|*realclean-ext*) \ $(RMDIRS) "ext/$$dir" 2> /dev/null || true;; \ -- cgit v1.2.3