blob: d666a9784eff7dfca9f8afc8ae81eadfe8a87c1e (
plain) (
blame)
1
2
3
4
5
6
7
8
|
obj-m += hid-tminit.o
all:
make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) modules
install:
make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) modules_install
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) clean
|