From 9a66a879e7f33911315b4cad4dd13d5477b0e8b6 Mon Sep 17 00:00:00 2001 From: Daniel Carl Date: Tue, 11 Apr 2017 09:42:38 +0200 Subject: [PATCH] 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/Makefile | 8 ++++---- src/webextension/Makefile | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Makefile b/src/Makefile index 9794ac0..ae8d14b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -11,7 +11,7 @@ clean: $(SUBDIRS:%=%.subdir-clean) $(RM) vimb *.o scripts/scripts.h vimb: $(OBJ) - $(Q)echo "${CC} $@" + @echo "${CC} $@" $(Q)$(CC) $(OBJ) $(LDFLAGS) -o $@ $(OBJ): config.h $(BASEDIR)/config.mk scripts/scripts.h @@ -19,18 +19,18 @@ $(OBJ): config.h $(BASEDIR)/config.mk scripts/scripts.h -include $(OBJ:.o=.d) config.h: - $(Q)echo create $@ from config.def.h + @echo create $@ from config.def.h $(Q)cp config.def.h $@ scripts/scripts.h: $(JSFILES) $(Q)$(RM) $@ - $(Q)echo "create $@ from *.js" + @echo "create $@ from *.js" $(Q)for file in $(JSFILES); do \ ./scripts/js2h.sh $$file >> $@; \ done %.o: %.c - $(Q)echo "${CC} $@" + @echo "${CC} $@" $(Q)$(CC) $(CFLAGS) -c -o $@ $< %.subdir-all: config.h 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 -- 2.20.1