1
0
Fork 0
mirror of https://github.com/yaakov-h/scream-driver.git synced 2024-10-16 07:40:02 +00:00
This commit is contained in:
Yaakov 2024-08-11 13:22:58 +10:00
parent e1c0f30373
commit 261aa7269f

View file

@ -1,6 +1,8 @@
KERNEL_DIR=/lib/modules/$(shell uname -r)/build
obj-m += scream.o
all:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
make -C $(KERNEL_DIR) M=$(PWD) modules
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
make -C $(KERNEL_DIR) M=$(PWD) clean