6db4831e98
Android 14
27 lines
843 B
Makefile
27 lines
843 B
Makefile
#
|
|
# Copyright (C) 2015 MediaTek Inc.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
|
|
$(info [GPU_DEBUG] MTK_GPU_VERSION 2 = $(word 2,$(MTK_GPU_VERSION)))
|
|
|
|
ifeq ($(word 2,$(MTK_GPU_VERSION)),doma)
|
|
obj-y += m1.13ED5776728/
|
|
else ifeq ($(word 2,$(MTK_GPU_VERSION)),lorne)
|
|
obj-y += m1.13ED5776728/
|
|
else ifeq ($(word 2,$(MTK_GPU_VERSION)),clark)
|
|
obj-y += m1.15ED6070602/
|
|
else ifeq ($(word 2,$(MTK_GPU_VERSION)),auckland)
|
|
obj-y += m1.13ED5776728/
|
|
|
|
endif
|
|
|