summaryrefslogtreecommitdiff
path: root/defs
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-10 06:12:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-10 06:12:22 +0000
commit92b710e64bf194266e3354c06fdb16dc7de0196d (patch)
tree92f64e73e7aad8ddb3beda5172c9e86ac2acd3e0 /defs
parent35533d0346ed5965665ad3c097d7819218bb48fb (diff)
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
Diffstat (limited to 'defs')
-rw-r--r--defs/gmake.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/defs/gmake.mk b/defs/gmake.mk
index 3f2bba4d05..6e7001c216 100644
--- a/defs/gmake.mk
+++ b/defs/gmake.mk
@@ -1,6 +1,7 @@
# -*- makefile-gmake -*-
gnumake = yes
override gnumake_recursive := +
+mflags := $(filter-out -j%,$(MFLAGS))
CHECK_TARGETS := exam love check%
TEST_TARGETS := $(filter check test check% test% btest%,$(MAKECMDGOALS))