[build] --silent option in rule_for_arch_executable prevent from running

'make V=1' and getting the expected output
This commit is contained in:
Émilie Feral
2020-04-07 12:06:01 +02:00
committed by LeaNumworks
parent ee56f02f2b
commit c363231673

View File

@@ -51,7 +51,7 @@ define rule_for_arch_executable
.PRECIOUS: $$(BUILD_DIR)/$(1)/%.$$(EXE)
$$(BUILD_DIR)/$(1)/%.$$(EXE): force_remake
$(Q) echo "MAKE ARCH=$(1)"
$(Q) $$(MAKE) ARCH=$(1) --silent $$*.$$(EXE)
$(Q) $$(MAKE) ARCH=$(1) $$*.$$(EXE)
endef
$(foreach ARCH,$(ARCHS),$(eval $(call rule_for_arch_executable,$(ARCH))))