git-subtree-dir: qcom/opensource/mm-sys-kernel git-subtree-mainline:99d06628db
git-subtree-split:88eb9646a4
Change-Id: repo: https://git.codelinaro.org/clo/la/platform/vendor/opensource/mm-sys-kernel tag: LA.VENDOR.14.3.0.r1-17300-lanai.QSSI15.0
16 lines
503 B
Makefile
16 lines
503 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
ifneq ($(TARGET_KERNEL_DLKM_DISABLE), true)
|
|
LOCAL_PATH := $(call my-dir)
|
|
LOCAL_MODULE_DDK_BUILD := true
|
|
|
|
include $(CLEAR_VARS)
|
|
# For incremental compilation
|
|
LOCAL_SRC_FILES := $(wildcard $(LOCAL_PATH)/*)
|
|
LOCAL_EXPORT_KO_INCLUDE_DIRS := $(LOCAL_PATH)/include/uapi
|
|
LOCAL_EXPORT_KO_INCLUDE_DIRS += $(LOCAL_PATH)/include/kernel
|
|
LOCAL_MODULE := ubwcp.ko
|
|
LOCAL_MODULE_PATH := $(KERNEL_MODULES_OUT)
|
|
include $(DLKM_DIR)/Build_external_kernelmodule.mk
|
|
endif
|