10 lines
192 B
Makefile
10 lines
192 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
KDIR ?= /lib/modules/`uname -r`/build
|
|
|
|
default:
|
|
$(MAKE) -C $(KDIR) M=$$PWD
|
|
|
|
modules_install: default
|
|
$(MAKE) -C $(KDIR) M=$$PWD modules_install
|
|
|