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