13 lines
342 B
Makefile
13 lines
342 B
Makefile
#
|
|
# Copyright (C) 2022-2024 The LineageOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
ifneq ($(filter berlin berlna dubai tundra xpeng,$(TARGET_DEVICE)),)
|
|
subdir_makefiles=$(call first-makefiles-under,$(LOCAL_PATH))
|
|
$(foreach mk,$(subdir_makefiles),$(info including $(mk) ...)$(eval include $(mk)))
|
|
endif
|