From 9a66a879e7f33911315b4cad4dd13d5477b0e8b6 Mon Sep 17 00:00:00 2001 From: Daniel Carl Date: Tue, 11 Apr 2017 09:42:38 +0200 Subject: Don't verbose the echo lines during make. The echo lines where a light alternative to the long compiler options lines, so there is no real benefit on showing the 'echo' itself. --- src/webextension/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/webextension') diff --git a/src/webextension/Makefile b/src/webextension/Makefile index 77b7c82..215629c 100644 --- a/src/webextension/Makefile +++ b/src/webextension/Makefile @@ -9,11 +9,11 @@ clean: $(RM) $(EXTTARGET) *.lo $(EXTTARGET): $(OBJ) - $(Q)echo "$(CC) $@" + @echo "$(CC) $@" $(Q)$(CC) $(OBJ) $(EXTLDFLAGS) -o $@ %.lo: %.c - $(Q)echo "${CC} $@" + @echo "${CC} $@" $(Q)$(CC) $(EXTCFLAGS) -fPIC -c -o $@ $< .PHONY: all clean -- cgit v1.2.3