aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 1b4e1f41883a44cd164bd61225318a1da7b05c5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
obj-m += hid-tmt300rs.o
KDIR ?= /lib/modules/$(shell uname -r)/build

all: hid-tminit
	$(MAKE) -C $(KDIR) M=$(shell pwd) modules

install: hid-tminit
	$(MAKE) -C $(KDIR) M=$(shell pwd) modules_install
	depmod -A

clean: hid-tminit
	$(MAKE) -C $(KDIR) M=$(shell pwd) clean


.PHONY: hid-tminit
hid-tminit:
	$(MAKE) -C hid-tminit $(MAKECMDGOALS)