mirror of
https://github.com/Fred78290/nct6687d
synced 2024-12-27 09:58:42 +01:00
Merge pull request #16 from vesrah/main
Fix "No rule to make target 'arch/x86/tools/relocs_32.c'" error on make install
This commit is contained in:
commit
63062c5003
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -1,7 +1,7 @@
|
|||
obj-m += nct6687.o
|
||||
|
||||
all:
|
||||
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
|
||||
make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) modules
|
||||
|
||||
install: all
|
||||
sudo cp nct6687.ko /lib/modules/$(shell uname -r)/kernel/drivers/hwmon/
|
||||
|
@ -9,4 +9,4 @@ install: all
|
|||
sudo modprobe nct6687
|
||||
|
||||
clean:
|
||||
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
|
||||
make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) clean
|
Loading…
Reference in a new issue