Makefile: hide verbose command from linking step

They are part of LD(XX) step, and shouldn't be shown if verbose output
is not enabled.

Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
This commit is contained in:
Kacper Michajłow
2026-06-28 00:26:54 +02:00
parent abb2a04649
commit cbdbb07900

View File

@@ -93,13 +93,13 @@ else
$(Q)echo $$(filter %.o,$$^) > $$@.objs
endif
endif
$(SLIB_CREATE_DEF_CMD)
$(Q)$(SLIB_CREATE_DEF_CMD)
ifeq ($(RESPONSE_FILES),yes)
$$(call LINK,$$(call $(NAME)LINK_SO_ARGS) $$(LD_O) @$$@.objs $$(call $(NAME)LINK_EXTRA))
else
$$(call LINK,$$(call $(NAME)LINK_SO_ARGS) $$(LD_O) $$(filter %.o,$$^) $$(call $(NAME)LINK_EXTRA))
endif
$(SLIB_EXTRA_CMD)
$(Q)$(SLIB_EXTRA_CMD)
-$(RM) $$@.objs
ifdef SUBDIR