mirror of
https://github.com/yaakov-h/scream-driver.git
synced 2024-11-21 17:04:50 +00:00
simplify
This commit is contained in:
parent
e1c0f30373
commit
261aa7269f
1 changed files with 4 additions and 2 deletions
6
Makefile
6
Makefile
|
@ -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
|
Loading…
Reference in a new issue