nct6687d/Makefile

12 lines
291 B
Makefile
Raw Normal View History

2020-11-08 00:19:03 +01:00
obj-m += nct6687.o
all:
make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) modules
2020-11-08 00:19:03 +01:00
install: all
sudo cp nct6687.ko /lib/modules/$(shell uname -r)/kernel/drivers/hwmon/
sudo depmod
sudo modprobe nct6687
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) clean