f805c4be2a93a61180bddc76e17a397d0183c627
[mesa.git] / src / gallium / targets / pipe-loader / Makefile.am
1 # Copyright © 2012 Intel Corporation
2 #
3 # Permission is hereby granted, free of charge, to any person obtaining a
4 # copy of this software and associated documentation files (the "Software"),
5 # to deal in the Software without restriction, including without limitation
6 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
7 # and/or sell copies of the Software, and to permit persons to whom the
8 # Software is furnished to do so, subject to the following conditions:
9 #
10 # The above copyright notice and this permission notice (including the next
11 # paragraph) shall be included in all copies or substantial portions of the
12 # Software.
13 #
14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
18 # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
19 # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 # DEALINGS IN THE SOFTWARE.
22
23 include $(top_srcdir)/src/gallium/Automake.inc
24
25 AM_CPPFLAGS = \
26 $(GALLIUM_CFLAGS) \
27 -I$(top_srcdir)/include \
28 -I$(top_srcdir)/src/gallium/drivers \
29 -I$(top_srcdir)/src/gallium/winsys \
30 $(GALLIUM_PIPE_LOADER_DEFINES) \
31 $(LIBDRM_CFLAGS) \
32 $(VISIBILITY_CFLAGS) \
33 -DGALLIUM_RBUG \
34 -DGALLIUM_TRACE
35
36 pipedir = $(libdir)/gallium-pipe
37 pipe_LTLIBRARIES =
38
39 PIPE_LIBS =
40
41 if NEED_GALLIUM_VL
42 PIPE_LIBS += \
43 $(top_builddir)/src/gallium/auxiliary/libgalliumvl.la
44 else
45 PIPE_LIBS += \
46 $(top_builddir)/src/gallium/auxiliary/libgalliumvl_stub.la
47 endif
48
49 if NEED_GALLIUM_VL_WINSYS
50 PIPE_LIBS+= \
51 $(top_builddir)/src/gallium/auxiliary/libgalliumvlwinsys.la
52 endif
53
54 PIPE_LIBS += \
55 $(top_builddir)/src/gallium/auxiliary/libgallium.la \
56 $(top_builddir)/src/compiler/nir/libnir.la \
57 $(top_builddir)/src/util/libmesautil.la \
58 $(top_builddir)/src/gallium/drivers/rbug/librbug.la \
59 $(top_builddir)/src/gallium/drivers/trace/libtrace.la \
60 $(GALLIUM_COMMON_LIB_DEPS)
61
62 AM_LDFLAGS = \
63 -module \
64 -no-undefined \
65 -avoid-version \
66 $(GC_SECTIONS) \
67 $(LD_NO_UNDEFINED)
68
69 if HAVE_LD_VERSION_SCRIPT
70 AM_LDFLAGS += \
71 -Wl,--version-script=$(top_srcdir)/src/gallium/targets/pipe-loader/pipe.sym
72 endif
73
74 if HAVE_GALLIUM_LLVM
75 PIPE_LIBS += $(LLVM_LIBS)
76 AM_LDFLAGS += $(LLVM_LDFLAGS)
77 endif
78
79 if HAVE_GALLIUM_I915
80 pipe_LTLIBRARIES += pipe_i915.la
81
82 pipe_i915_la_SOURCES = pipe_i915.c
83 nodist_EXTRA_pipe_i915_la_SOURCES = dummy.cpp
84 pipe_i915_la_LIBADD = \
85 $(PIPE_LIBS) \
86 $(top_builddir)/src/gallium/winsys/i915/drm/libi915drm.la \
87 $(top_builddir)/src/gallium/drivers/i915/libi915.la \
88 $(LIBDRM_LIBS) \
89 $(INTEL_LIBS)
90
91 endif
92
93 if HAVE_GALLIUM_NOUVEAU
94 pipe_LTLIBRARIES += pipe_nouveau.la
95
96 pipe_nouveau_la_SOURCES = pipe_nouveau.c
97 nodist_EXTRA_pipe_nouveau_la_SOURCES = dummy.cpp
98 pipe_nouveau_la_LIBADD = \
99 $(PIPE_LIBS) \
100 $(top_builddir)/src/gallium/winsys/nouveau/drm/libnouveaudrm.la \
101 $(top_builddir)/src/gallium/drivers/nouveau/libnouveau.la \
102 $(LIBDRM_LIBS) \
103 $(NOUVEAU_LIBS)
104
105 endif
106
107 if HAVE_GALLIUM_R300
108 pipe_LTLIBRARIES += pipe_r300.la
109
110 pipe_r300_la_SOURCES = pipe_r300.c
111 nodist_EXTRA_pipe_r300_la_SOURCES = dummy.cpp
112 pipe_r300_la_LIBADD = \
113 $(PIPE_LIBS) \
114 $(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la \
115 $(top_builddir)/src/gallium/drivers/r300/libr300.la \
116 $(LIBDRM_LIBS) \
117 $(RADEON_LIBS)
118
119 endif
120
121 if HAVE_GALLIUM_R600
122 pipe_LTLIBRARIES += pipe_r600.la
123
124 pipe_r600_la_SOURCES = pipe_r600.c
125 nodist_EXTRA_pipe_r600_la_SOURCES = dummy.cpp
126 pipe_r600_la_LIBADD = \
127 $(PIPE_LIBS) \
128 $(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la \
129 $(top_builddir)/src/gallium/drivers/radeon/libradeon.la \
130 $(top_builddir)/src/gallium/drivers/r600/libr600.la \
131 $(LIBDRM_LIBS) \
132 $(RADEON_LIBS)
133
134 endif
135
136 if HAVE_GALLIUM_RADEONSI
137 pipe_LTLIBRARIES += pipe_radeonsi.la
138
139 pipe_radeonsi_la_SOURCES = pipe_radeonsi.c
140 nodist_EXTRA_pipe_radeonsi_la_SOURCES = dummy.cpp
141 pipe_radeonsi_la_LIBADD = \
142 $(PIPE_LIBS) \
143 $(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la \
144 $(top_builddir)/src/gallium/winsys/amdgpu/drm/libamdgpuwinsys.la \
145 $(top_builddir)/src/gallium/drivers/radeon/libradeon.la \
146 $(top_builddir)/src/gallium/drivers/radeonsi/libradeonsi.la \
147 $(top_builddir)/src/amd/common/libamd_common.la \
148 $(LIBDRM_LIBS) \
149 $(RADEON_LIBS) \
150 $(AMDGPU_LIBS)
151
152 endif
153
154 if HAVE_GALLIUM_FREEDRENO
155 pipe_LTLIBRARIES += pipe_msm.la
156
157 pipe_msm_la_SOURCES = pipe_msm.c
158 nodist_EXTRA_pipe_msm_la_SOURCES = dummy.cpp
159 pipe_msm_la_LIBADD = \
160 $(PIPE_LIBS) \
161 $(top_builddir)/src/gallium/winsys/freedreno/drm/libfreedrenodrm.la \
162 $(top_builddir)/src/gallium/drivers/freedreno/libfreedreno.la \
163 $(LIBDRM_LIBS) \
164 $(FREEDRENO_LIBS)
165
166 endif
167
168 if HAVE_GALLIUM_SVGA
169 pipe_LTLIBRARIES += pipe_vmwgfx.la
170
171 pipe_vmwgfx_la_SOURCES = pipe_vmwgfx.c
172 nodist_EXTRA_pipe_vmwgfx_la_SOURCES = dummy.cpp
173
174 pipe_vmwgfx_la_LIBADD = \
175 $(PIPE_LIBS) \
176 $(top_builddir)/src/gallium/winsys/svga/drm/libsvgadrm.la \
177 $(top_builddir)/src/gallium/drivers/svga/libsvga.la \
178 $(LIBDRM_LIBS)
179
180 endif
181
182 if HAVE_GALLIUM_SWRAST
183 pipe_LTLIBRARIES += pipe_swrast.la
184 pipe_swrast_la_SOURCES = pipe_swrast.c
185 nodist_EXTRA_pipe_swrast_la_SOURCES = dummy.cpp
186 pipe_swrast_la_LIBADD = $(PIPE_LIBS)
187
188 if HAVE_GALLIUM_SOFTPIPE
189 AM_CPPFLAGS += -DGALLIUM_SOFTPIPE
190
191 pipe_swrast_la_LIBADD += \
192 $(top_builddir)/src/gallium/drivers/softpipe/libsoftpipe.la
193 endif
194
195 if HAVE_GALLIUM_LLVMPIPE
196 AM_CPPFLAGS += -DGALLIUM_LLVMPIPE
197
198 pipe_swrast_la_LIBADD += \
199 $(top_builddir)/src/gallium/drivers/llvmpipe/libllvmpipe.la
200 endif
201
202 if HAVE_GALLIUM_SWR
203 AM_CPPFLAGS += -DGALLIUM_SWR
204
205 pipe_swrast_la_LIBADD += \
206 $(top_builddir)/src/gallium/drivers/swr/libmesaswr.la
207 endif
208
209 pipe_swrast_la_LIBADD += \
210 $(GALLIUM_PIPE_LOADER_WINSYS_LIBS)
211
212 endif
213
214 EXTRA_DIST = pipe.sym