[make] replace echo commands with $(info)

Seems to result in less forks since it doesn't need to run an echo
binary.
This commit is contained in:
Travis Geiselbrecht
2018-12-01 11:47:43 -08:00
parent 4ada3fc4a8
commit 96d98bc160
4 changed files with 21 additions and 21 deletions

View File

@@ -87,7 +87,7 @@ include make/compile.mk
MODULE_OBJECT := $(call TOBUILDDIR,$(MODULE_SRCDIR).mod.o)
$(MODULE_OBJECT): $(MODULE_OBJS) $(MODULE_EXTRA_OBJS)
@$(MKDIR)
@echo linking $@
$(info linking $@)
$(NOECHO)$(LD) $(GLOBAL_MODULE_LDFLAGS) -r $^ -o $@
# track all of the source files compiled