aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 747a48e89de04072db4c229d5447ccf1618145e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
KDIR ?= /lib/modules/$(shell uname -r)/build

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

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

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


.PHONY: deps/hid-tminit
hid-tminit:
	$(MAKE) -C deps/hid-tminit KDIR="$(KDIR)" $(MAKECMDGOALS)