summaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-11-13 23:54:43 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-11-13 23:54:43 +0900
commit2f7d2662dd90a6985f1c98ea93cfc2026407a8ab (patch)
treeac8ef2e95da478604a18b3af51378e2290c4ac44 /template
parent8d82f4ba1c715da6a50b8626792a49c343914efd (diff)
downloadruby-2f7d2662dd90a6985f1c98ea93cfc2026407a8ab.tar.gz
Control non-parallel parts with `.WAIT` if available
Diffstat (limited to 'template')
-rw-r--r--template/GNUmakefile.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/template/GNUmakefile.in b/template/GNUmakefile.in
index 4fe4aab979..0c8ac5f0e4 100644
--- a/template/GNUmakefile.in
+++ b/template/GNUmakefile.in
@@ -12,6 +12,10 @@ ifeq ($(HAVE_BASERUBY),yes)
override REVISION_FORCE := PHONY
endif
+ifneq ($(filter notintermediate,$(.FEATURES)),)
+DOT_WAIT = .WAIT
+endif
+
include $(srcdir)/defs/universal.mk
-include uncommon.mk
include $(srcdir)/defs/gmake.mk