mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-10-31 23:37:35 +00:00
12 lines
262 B
Makefile
12 lines
262 B
Makefile
|
LOCAL_PATH := $(call my-dir)
|
||
|
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
ifeq ($(filter-out exynos4,$(TARGET_BOARD_PLATFORM)),)
|
||
|
include $(LOCAL_PATH)/exynos4/Android.mk
|
||
|
endif
|
||
|
|
||
|
ifeq ($(filter-out exynos5,$(TARGET_BOARD_PLATFORM)),)
|
||
|
include $(LOCAL_PATH)/exynos5/Android.mk
|
||
|
endif
|