summaryrefslogtreecommitdiffstats
path: root/kernel/Makefile
blob: b7f2191ed40897bdbb3dc9c28a428ca6551f2e89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# SPDX-License-Identifier: GPL-2.0
include $(PWD)/Kbuild.in

ifndef KDIR
	KDIR = /lib/modules/$(shell uname -r)/build
endif

all:
	make -C "$(KDIR)" "M=$(PWD)" modules

clean:
	make -C "$(KDIR)" "M=$(PWD)" clean