diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-12-27 21:11:21 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-12-27 21:11:21 -0500 |
commit | aa9b93ac71abd98b2058258fc0514ed122a52ceb (patch) | |
tree | cbc82213f5536a9f0ce31c75f95371cb3d9a8ecc /src/Makefile | |
parent | ecd2099065b48e7b365ebb30620ee3429eb39287 (diff) |
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
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 |