aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 86c2a51c50176c926b2347cf995898a62ee5d4bd (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
deps/hid-tminit:
	$(MAKE) -C deps/hid-tminit KDIR="$(KDIR)" $(MAKECMDGOALS)