Android: clean-up trailing '\' in make variables
[mesa.git] / src / gallium / targets / dri / Android.mk
1 # Mesa 3-D graphics library
2 #
3 # Copyright (C) 2015 Chih-Wei Huang <cwhuang@linux.org.tw>
4 # Copyright (C) 2015 Android-x86 Open Source Project
5 #
6 # Permission is hereby granted, free of charge, to any person obtaining a
7 # copy of this software and associated documentation files (the "Software"),
8 # to deal in the Software without restriction, including without limitation
9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 # and/or sell copies of the Software, and to permit persons to whom the
11 # Software is furnished to do so, subject to the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 # DEALINGS IN THE SOFTWARE.
23
24 LOCAL_PATH := $(call my-dir)
25
26 include $(CLEAR_VARS)
27
28 LOCAL_MODULE := gallium_dri
29
30 ifeq ($(MESA_LOLLIPOP_BUILD),true)
31 LOCAL_MODULE_RELATIVE_PATH := $(MESA_DRI_MODULE_REL_PATH)
32 else
33 LOCAL_MODULE_PATH := $(MESA_DRI_MODULE_PATH)
34 LOCAL_UNSTRIPPED_PATH := $(MESA_DRI_MODULE_UNSTRIPPED_PATH)
35 endif
36
37 LOCAL_SRC_FILES := target.c
38
39 LOCAL_CFLAGS :=
40
41 LOCAL_SHARED_LIBRARIES := \
42 libdl \
43 libglapi \
44 libexpat
45
46 ifneq ($(filter freedreno,$(MESA_GPU_DRIVERS)),)
47 LOCAL_CFLAGS += -DGALLIUM_FREEDRENO
48 gallium_DRIVERS += libmesa_winsys_freedreno libmesa_pipe_freedreno
49 LOCAL_SHARED_LIBRARIES += libdrm_freedreno
50 endif
51 ifneq ($(filter i915g,$(MESA_GPU_DRIVERS)),)
52 gallium_DRIVERS += libmesa_winsys_i915 libmesa_pipe_i915
53 LOCAL_SHARED_LIBRARIES += libdrm_intel
54 LOCAL_CFLAGS += -DGALLIUM_I915
55 endif
56 ifneq ($(filter nouveau,$(MESA_GPU_DRIVERS)),)
57 gallium_DRIVERS += libmesa_winsys_nouveau libmesa_pipe_nouveau
58 LOCAL_CFLAGS += -DGALLIUM_NOUVEAU
59 LOCAL_SHARED_LIBRARIES += libdrm_nouveau
60 endif
61 ifneq ($(filter r%,$(MESA_GPU_DRIVERS)),)
62 ifneq ($(filter r300g,$(MESA_GPU_DRIVERS)),)
63 gallium_DRIVERS += libmesa_pipe_r300
64 LOCAL_CFLAGS += -DGALLIUM_R300
65 endif
66 ifneq ($(filter r600g,$(MESA_GPU_DRIVERS)),)
67 gallium_DRIVERS += libmesa_pipe_r600
68 LOCAL_CFLAGS += -DGALLIUM_R600
69 endif
70 ifneq ($(filter radeonsi,$(MESA_GPU_DRIVERS)),)
71 gallium_DRIVERS += libmesa_pipe_radeonsi libmesa_winsys_amdgpu libmesa_amd_common
72 LOCAL_SHARED_LIBRARIES += libLLVM libdrm_amdgpu
73 LOCAL_CFLAGS += -DGALLIUM_RADEONSI
74 endif
75 gallium_DRIVERS += libmesa_winsys_radeon libmesa_pipe_radeon libmesa_amdgpu_addrlib
76 LOCAL_SHARED_LIBRARIES += libdrm_radeon
77 endif
78 ifneq ($(filter swrast,$(MESA_GPU_DRIVERS)),)
79 gallium_DRIVERS += libmesa_pipe_softpipe libmesa_winsys_sw_dri
80 LOCAL_CFLAGS += -DGALLIUM_SOFTPIPE
81 endif
82 ifneq ($(filter vc4,$(MESA_GPU_DRIVERS)),)
83 LOCAL_CFLAGS += -DGALLIUM_VC4
84 gallium_DRIVERS += libmesa_winsys_vc4 libmesa_pipe_vc4
85 endif
86 ifneq ($(filter virgl,$(MESA_GPU_DRIVERS)),)
87 LOCAL_CFLAGS += -DGALLIUM_VIRGL
88 gallium_DRIVERS += libmesa_winsys_virgl libmesa_winsys_virgl_vtest libmesa_pipe_virgl
89 endif
90 ifneq ($(filter vmwgfx,$(MESA_GPU_DRIVERS)),)
91 gallium_DRIVERS += libmesa_winsys_svga libmesa_pipe_svga
92 LOCAL_CFLAGS += -DGALLIUM_VMWGFX
93 endif
94 ifneq ($(filter nouveau r600g,$(MESA_GPU_DRIVERS)),)
95 LOCAL_SHARED_LIBRARIES += $(if $(filter true,$(MESA_LOLLIPOP_BUILD)),libc++,libstlport)
96 endif
97
98 LOCAL_WHOLE_STATIC_LIBRARIES := \
99 $(gallium_DRIVERS) \
100 libmesa_st_dri \
101 libmesa_st_mesa \
102 libmesa_glsl \
103 libmesa_compiler \
104 libmesa_nir \
105 libmesa_dri_common \
106 libmesa_megadriver_stub \
107 libmesa_gallium \
108 libmesa_pipe_loader \
109 libmesa_util \
110 libmesa_loader
111
112 LOCAL_STATIC_LIBRARIES :=
113
114 ifeq ($(MESA_ENABLE_LLVM),true)
115 LOCAL_STATIC_LIBRARIES += \
116 libLLVMR600CodeGen \
117 libLLVMR600Desc \
118 libLLVMR600Info \
119 libLLVMR600AsmPrinter \
120 libelf
121 LOCAL_LDLIBS += $(if $(filter true,$(MESA_LOLLIPOP_BUILD)),-lgcc)
122 endif
123
124 include $(GALLIUM_COMMON_MK)
125 include $(BUILD_SHARED_LIBRARY)