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