aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2017-10-09 00:51:15 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2017-10-09 02:14:49 +0200
commit272a970077ea1261b5627be11894a7e7d3780f15 (patch)
treee05bdfda74fce9a8ed7da808682477efed12c33b
parenttools: try again if dump is interrupted (diff)
downloadwireguard-monolithic-historical-272a970077ea1261b5627be11894a7e7d3780f15.tar.xz
wireguard-monolithic-historical-272a970077ea1261b5627be11894a7e7d3780f15.zip
Makefile: quiet recursive make
-rw-r--r--src/Makefile20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/Makefile b/src/Makefile
index a8a7265..0a9f734 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -25,23 +25,23 @@ dkms.conf:
git update-index --assume-unchanged dkms.conf || true
module: version.h
- $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
+ @$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
module-debug: version.h
- $(MAKE) -C $(KERNELDIR) M=$(PWD) V=1 CONFIG_WIREGUARD_DEBUG=y modules
+ @$(MAKE) -C $(KERNELDIR) M=$(PWD) V=1 CONFIG_WIREGUARD_DEBUG=y modules
clean:
- $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
- $(MAKE) -C tools clean
+ @$(MAKE) -C $(KERNELDIR) M=$(PWD) clean
+ @$(MAKE) -C tools clean
module-install:
- $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
+ @$(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
depmod -a
install:
- $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
+ @$(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
depmod -a
- $(MAKE) -C tools install
+ @$(MAKE) -C tools install
DKMS_TOP_LEVEL := Makefile Kbuild Kconfig $(filter-out wireguard.mod.c, $(wildcard *.c)) $(filter-out version.h, $(wildcard *.h)) version.h dkms.conf
DKMS_SELFTEST_LEVEL := $(wildcard selftest/*.c) $(wildcard selftest/*.h)
@@ -56,16 +56,16 @@ dkms-install: $(DKMS_TOP_LEVEL) $(DKMS_SELFTEST_LEVEL) $(DKMS_CRYPTO_LEVEL) $(DK
@for file in $(DKMS_COMPAT_LEVEL); do install -v -m0644 -D $$file $(DESTDIR)$(DKMSDIR)/$$file; done
tools:
- $(MAKE) -C tools
+ @$(MAKE) -C tools
tools-debug:
- $(MAKE) -C tools V=1 DEBUG_TOOLS=y
+ @$(MAKE) -C tools V=1 DEBUG_TOOLS=y
check: clean
scan-build --view --keep-going $(MAKE) module tools CONFIG_WIREGUARD_DEBUG=y C=2 CF="-D__CHECK_ENDIAN__"
coccicheck: clean
- $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_WIREGUARD_DEBUG=y coccicheck MODE=report
+ @$(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_WIREGUARD_DEBUG=y coccicheck MODE=report
cloc: clean
cloc $(wildcard *.c) $(wildcard *.h)