aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/Makefile
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2017-10-14 05:17:40 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2017-10-17 19:26:07 +0200
commiteb68ad072290491f473ac969a3125188c03ce791 (patch)
treeaacdd68991f3a108e346d89ae1f74ebb8ab4fd3d /src/Makefile
parentwg: man: include kill-switch documentation using fwmark (diff)
downloadwireguard-tools-eb68ad072290491f473ac969a3125188c03ce791.tar.xz
wireguard-tools-eb68ad072290491f473ac969a3125188c03ce791.zip
Makefile: even prettier output
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '')
-rw-r--r--src/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile
index 01f873c..bd727d4 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -48,10 +48,10 @@ endif
ifneq ($(V),1)
BUILT_IN_LINK.o := $(LINK.o)
-LINK.o = @echo " LD $@";
+LINK.o = @echo " LD $$(pwd)/$@";
LINK.o += $(BUILT_IN_LINK.o)
BUILT_IN_COMPILE.c := $(COMPILE.c)
-COMPILE.c = @echo " CC $@";
+COMPILE.c = @echo " CC $$(pwd)/$@";
COMPILE.c += $(BUILT_IN_COMPILE.c)
endif
@@ -59,7 +59,7 @@ wg: $(patsubst %.c,%.o,$(wildcard *.c))
ifneq ($(V),1)
clean:
- @echo " RM " 'wg *.o *.d'
+ @echo " CLEAN $$(pwd)/{wg,*.o,*.d}"
@$(RM) wg *.o *.d
else
clean: