From aa9b93ac71abd98b2058258fc0514ed122a52ceb Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 27 Dec 2015 21:11:21 -0500 Subject: changed M key function --- src/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/Makefile (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..ee91069 --- /dev/null +++ b/src/Makefile @@ -0,0 +1,15 @@ + +KVERSION = $(shell uname -r) +KDIR := /lib/modules/$(KVERSION)/build +PWD := $(shell pwd) + +obj-m = hid-lg-g710-plus.o + +default: build + +build: + make -C $(KDIR) M=$(PWD) modules +clean: + make -C $(KDIR) M=$(PWD) clean +install: + make -C $(KDIR) M=$(PWD) modules_install \ No newline at end of file -- cgit v1.2.3