aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 2cac1535ee79561fcdd6f666b4ea0834669b46f2 (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/tminit
	$(MAKE) -C $(KDIR) M=$(shell pwd) modules

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

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


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