From 92b739afaf32139e70ee124ca21673125a59bc36 Mon Sep 17 00:00:00 2001 From: Aleksa Savic Date: Tue, 5 Dec 2023 16:58:13 +0100 Subject: [PATCH] Add W=1 to Makefile Signed-off-by: Aleksa Savic --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1df5b45..9f23087 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ include Kbuild KDIR ?= /lib/modules/`uname -r`/build modules modules_install clean: - make -C $(KDIR) M=$$PWD $@ + make W=1 -C $(KDIR) M=$$PWD $@ SOURCES := $(patsubst %.o,%.c,$(obj-m))