mirror of
https://github.com/AetherDroid/vendor_samsung_universal7570-common.git
synced 2025-09-07 00:38:06 -04:00
49 lines
1.6 KiB
Makefile
49 lines
1.6 KiB
Makefile
# Copyright (C) 2019 The LineageOS Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# This file is generated by device/samsung/universal7570-common/setup-makefiles.sh
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
ifneq ($(filter on5xelte,$(TARGET_DEVICE)),)
|
|
|
|
|
|
ifeq ($(WITH_EXYNOS_BSP),)
|
|
endif
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libGLES_mali
|
|
LOCAL_MODULE_OWNER := samsung
|
|
LOCAL_SRC_FILES_32 := proprietary/vendor/lib/egl/libGLES_mali.so
|
|
LOCAL_MULTILIB := both
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_MODULE_CLASS := SHARED_LIBRARIES
|
|
LOCAL_MODULE_SUFFIX := .so
|
|
LOCAL_MODULE_PATH_32 := $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_VENDOR_SHARED_LIBRARIES)/egl
|
|
LOCAL_MODULE_PATH_64 := $(TARGET_OUT_VENDOR_SHARED_LIBRARIES)/egl
|
|
|
|
SYMLINKS := $(TARGET_OUT)/vendor
|
|
$(SYMLINKS):
|
|
@echo "Symlink: vulkan.exynos5.so"
|
|
@mkdir -p $@/lib/hw
|
|
@mkdir -p $@/lib64/hw
|
|
$(hide) ln -sf ../egl/libGLES_mali.so $@/lib/hw/vulkan.exynos5.so
|
|
@echo "Symlink: libOpenCL.so.1.1"
|
|
$(hide) ln -sf egl/libGLES_mali.so $@/lib/libOpenCL.so.1.1
|
|
|
|
ALL_MODULES.$(LOCAL_MODULE).INSTALLED := \
|
|
$(ALL_MODULES.$(LOCAL_MODULE).INSTALLED) $(SYMLINKS)
|
|
|
|
include $(BUILD_PREBUILT)
|
|
|
|
endif
|