
src/gallium/targets/dri/Android.mk contains lots of conditional for individual drivers. Let's move these details into the individual driver makefiles. In the process, align the make driver conditionals with automake (i.e. HAVE_GALLIUM_*). Signed-off-by: Rob Herring <robh@kernel.org> [Emil Velikov: add the radeon winsys for radeonsi] Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
69 lines
2.1 KiB
Makefile
69 lines
2.1 KiB
Makefile
# Mesa 3-D graphics library
|
|
#
|
|
# Copyright (C) 2015 Chih-Wei Huang <cwhuang@linux.org.tw>
|
|
# Copyright (C) 2015 Android-x86 Open Source Project
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
# copy of this software and associated documentation files (the "Software"),
|
|
# to deal in the Software without restriction, including without limitation
|
|
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
# and/or sell copies of the Software, and to permit persons to whom the
|
|
# Software is furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included
|
|
# in all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
# DEALINGS IN THE SOFTWARE.
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := gallium_dri
|
|
|
|
LOCAL_MODULE_RELATIVE_PATH := $(MESA_DRI_MODULE_REL_PATH)
|
|
LOCAL_SRC_FILES := target.c
|
|
|
|
LOCAL_CFLAGS :=
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libdl \
|
|
libglapi \
|
|
libexpat
|
|
|
|
$(foreach d, $(MESA_BUILD_GALLIUM), $(eval LOCAL_CFLAGS += $(patsubst HAVE_%,-D%,$(d))))
|
|
|
|
# sort GALLIUM_LIBS to remove any duplicates
|
|
LOCAL_WHOLE_STATIC_LIBRARIES := \
|
|
$(sort $(GALLIUM_LIBS)) \
|
|
libmesa_st_dri \
|
|
libmesa_st_mesa \
|
|
libmesa_glsl \
|
|
libmesa_compiler \
|
|
libmesa_nir \
|
|
libmesa_dri_common \
|
|
libmesa_megadriver_stub \
|
|
libmesa_gallium \
|
|
libmesa_pipe_loader \
|
|
libmesa_util \
|
|
libmesa_loader
|
|
|
|
# sort GALLIUM_SHARED_LIBS to remove any duplicates
|
|
LOCAL_SHARED_LIBRARIES += $(sort $(GALLIUM_SHARED_LIBS))
|
|
|
|
LOCAL_STATIC_LIBRARIES :=
|
|
|
|
ifeq ($(MESA_ENABLE_LLVM),true)
|
|
LOCAL_STATIC_LIBRARIES += libelf
|
|
LOCAL_LDLIBS += -lgcc
|
|
endif
|
|
|
|
include $(GALLIUM_COMMON_MK)
|
|
include $(BUILD_SHARED_LIBRARY)
|