mirror of https://github.com/aiden09/hid-sony
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
235 B
Makefile
11 lines
235 B
Makefile
|
8 years ago
|
obj-m += hid-sony.o
|
||
|
|
|
||
|
|
all:
|
||
|
|
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
|
||
|
|
|
||
|
|
clean:
|
||
|
|
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
|
||
|
|
|
||
|
|
install:
|
||
|
|
cp hid-sony.ko /lib/modules/$(shell uname -r)/kernel/drivers/hid/
|