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

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

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

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