summaryrefslogtreecommitdiff
path: root/src/webextension
diff options
context:
space:
mode:
Diffstat (limited to 'src/webextension')
-rw-r--r--src/webextension/Makefile4
1 files changed, 2 insertions, 2 deletions
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