15 lines
412 B
Makefile
15 lines
412 B
Makefile
|
#
|
||
|
# Copyright (C) 2020 The Android Open Source Project
|
||
|
# Copyright (C) 2020 The TWRP Open Source Project
|
||
|
# Copyright (C) 2020 SebaUbuntu's TWRP device tree generator
|
||
|
# Copyright (C) 2022-juic3b0x
|
||
|
#
|
||
|
|
||
|
LOCAL_PATH := $(call my-dir)
|
||
|
|
||
|
ifeq ($(TARGET_DEVICE), denver)
|
||
|
subdir_makefiles=$(call first-makefiles-under,$(LOCAL_PATH))
|
||
|
$(foreach mk,$(subdir_makefiles),$(info including $(mk) ...)$(eval include $(mk)))
|
||
|
|
||
|
endif
|