From 364fb33fb41c962f617f2aca216e8dc4ed1a361f Mon Sep 17 00:00:00 2001 From: Christian Happ Date: Thu, 13 Jun 2024 11:52:57 +0200 Subject: [PATCH] Makefile: drop rebuild of the atemsys module before cleaning it It's not necessary to build the module before cleaning Signed-off-by: Christian Happ --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 28e2cc9..ba82ca6 100644 --- a/Makefile +++ b/Makefile @@ -31,4 +31,4 @@ modules_install: $(MAKE) -C $(KERNELDIR) M=$(shell pwd) modules_install clean: - $(MAKE) -C $(KERNELDIR) M=$(shell pwd) modules clean + $(MAKE) -C $(KERNELDIR) M=$(shell pwd) clean