blob: 6675c23f3d7b1f0c96b265af2de755a2fe54bee4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
obj-m += hid-tminit.o
obj-m += hid-tmt300rs.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
|