From 219ea26d3f4e72e3f1fa82066bd223e9b61204fb Mon Sep 17 00:00:00 2001 From: Felipe Ortiz Date: Mon, 26 Feb 2024 12:57:00 -0300 Subject: [PATCH] Fixes awusb Makefile --- awusb/Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/awusb/Makefile b/awusb/Makefile index e0e4d71..092d26c 100644 --- a/awusb/Makefile +++ b/awusb/Makefile @@ -3,8 +3,7 @@ KDIR := /lib/modules/$(shell uname -r)/build PWD := $(shell pwd) default: - $(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules + $(MAKE) -C $(KDIR) M=$(PWD) modules clean: - $(MAKE) -C $(KDIR) SUBDIRS=$(PWD) clean - rm -rf Module.markers module.order module.sysvers - + $(MAKE) -C $(KDIR) M=$(PWD) clean + rm -rf Module.markers module.order module.sysvers