blob: 83873e6cc16df202a5798a49964d8945e8db6fbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# SPDX-License-Identifier: GPL-2.0
#
# Makefile for the KernelSU DKMS module support.
#
export CONFIG_KSU := m
export CONFIG_KSU_NON_ANDROID := y
export CONFIG_KSU_SELINUX := n
export CONFIG_KSU_DEBUG := n
export CONFIG_KSU_HANDLE_INPUT_EVENTS := n
KDIR ?= /lib/modules/$(KVERSION)/build
all:
make -C $(KDIR) M=$(PWD) modules
clean:
make -C $(KDIR) M=$(PWD) clean
|