From c3010935141fe60eabdd7dac60153af6281bc74c Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Tue, 3 Oct 2017 17:16:37 +0200 Subject: Makefile: add non-verbose mode to tools --- src/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index fca65d2..d47473e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -7,7 +7,7 @@ DKMSDIR ?= $(SRCDIR)/wireguard PWD := $(shell pwd) all: module tools -debug: module-debug tools +debug: module-debug tools-debug version.h: @export GIT_CEILING_DIRECTORIES="$$(readlink -f ../..)" && \ @@ -58,6 +58,9 @@ dkms-install: $(DKMS_TOP_LEVEL) $(DKMS_SELFTEST_LEVEL) $(DKMS_CRYPTO_LEVEL) $(DK tools: $(MAKE) -C tools +tools-debug: + $(MAKE) -C tools V=1 DEBUG_TOOLS=y + check: $(MAKE) -C $(KERNELDIR) M=$(PWD) C=2 CF="-D__CHECK_ENDIAN__" CONFIG_WIREGUARD_DEBUG=y $(MAKE) -C tools check -- cgit v1.2.3-59-g8ed1b