targets/egl-static: move the common LDFLAGS into AM_LDFLAGS
[mesa.git] / src / gallium / targets / egl-static / 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 # This is Makefile for egl_gallium.so. It is static in that all state trackers
24 # and pipe drivers are linked statically when possible.
25 #
26 # The following variables are examined
27 #
28 # EGL_CLIENT_APIS - state trackers to support
29 # GALLIUM_WINSYS_DIRS - pipe drivers to support
30 #
31 include $(top_srcdir)/src/gallium/Automake.inc
32
33 AM_CFLAGS = $(PTHREAD_CFLAGS)
34 AM_CPPFLAGS = \
35 $(GALLIUM_CFLAGS) \
36 $(VISIBILITY_CFLAGS) \
37 -I$(top_srcdir)/include \
38 -I$(top_srcdir)/src/loader \
39 -I$(top_srcdir)/src/gallium/drivers \
40 -I$(top_srcdir)/src/gallium/winsys \
41 -I$(top_srcdir)/src/gallium/include \
42 -I$(top_srcdir)/src/gallium/auxiliary \
43 -I$(top_srcdir)/src/gallium/state_trackers/egl \
44 -I$(top_srcdir)/src/egl/main \
45 -D_EGL_MAIN=_eglMain
46
47 AM_LDFLAGS = \
48 -module \
49 -avoid-version \
50 -Wl,--no-undefined \
51 -Wl,--version-script=$(top_srcdir)/src/gallium/targets/egl-static/egl.link
52
53 egldir = $(EGL_DRIVER_INSTALL_DIR)
54 egl_LTLIBRARIES = egl_gallium.la
55
56 nodist_EXTRA_egl_gallium_la_SOURCES = dummy.cpp
57 egl_gallium_la_SOURCES = \
58 egl.c \
59 egl_pipe.c \
60 egl_st.c
61
62 egl_gallium_la_LIBADD = \
63 $(top_builddir)/src/gallium/auxiliary/libgallium.la \
64 $(top_builddir)/src/gallium/drivers/identity/libidentity.la \
65 $(top_builddir)/src/gallium/drivers/trace/libtrace.la \
66 $(top_builddir)/src/gallium/drivers/rbug/librbug.la \
67 $(top_builddir)/src/gallium/state_trackers/egl/libegl.la \
68 $(top_builddir)/src/egl/main/libEGL.la \
69 $(top_builddir)/src/loader/libloader.la \
70 $(CLOCK_LIB) \
71 $(DLOPEN_LIBS) \
72 $(PTHREAD_LIBS) \
73 -lm
74
75 if HAVE_MESA_LLVM
76 AM_LDFLAGS += $(LLVM_LDFLAGS)
77 endif
78
79 egl_gallium_la_LDFLAGS = \
80 $(AM_LDFLAGS) \
81 -Wl,--allow-multiple-definition
82
83 if HAVE_EGL_PLATFORM_X11
84 AM_CPPFLAGS += $(LIBDRM_CFLAGS)
85 egl_gallium_la_LIBADD += \
86 $(top_builddir)/src/gallium/winsys/sw/xlib/libws_xlib.la \
87 -lX11 -lXext -lXfixes $(LIBDRM_LIBS)
88 endif
89
90 if HAVE_EGL_PLATFORM_WAYLAND
91 AM_CPPFLAGS += $(LIBDRM_CFLAGS)
92 egl_gallium_la_LIBADD += \
93 $(top_builddir)/src/gallium/winsys/sw/wayland/libws_wayland.la \
94 $(top_builddir)/src/egl/wayland/wayland-drm/libwayland-drm.la \
95 $(LIBDRM_LIBS) \
96 $(WAYLAND_LIBS)
97 endif
98
99 if HAVE_EGL_PLATFORM_DRM
100 AM_CPPFLAGS += $(LIBDRM_CFLAGS)
101 egl_gallium_la_LIBADD += \
102 $(top_builddir)/src/gbm/libgbm.la \
103 $(LIBDRM_LIBS)
104 endif
105
106 if HAVE_EGL_PLATFORM_FBDEV
107 egl_gallium_la_LIBADD += $(top_builddir)/src/gallium/winsys/sw/fbdev/libfbdev.la
108 endif
109
110 if HAVE_EGL_PLATFORM_NULL
111 egl_gallium_la_LIBADD += $(top_builddir)/src/gallium/winsys/sw/null/libws_null.la
112 endif
113
114 if HAVE_OPENGL
115 AM_CPPFLAGS += \
116 -I$(top_srcdir)/src/mesa \
117 -DFEATURE_GL=1
118
119 egl_gallium_la_LIBADD += \
120 $(top_builddir)/src/mesa/libmesagallium.la
121 # make st/mesa built-in when there is a single glapi provider
122 if HAVE_SHARED_GLAPI
123 egl_gallium_la_LIBADD += \
124 $(top_builddir)/src/mapi/shared-glapi/libglapi.la
125 else
126 egl_gallium_la_LIBADD += \
127 $(top_builddir)/src/mapi/glapi/libglapi.la
128
129 AM_CPPFLAGS += -D_EGL_EXTERNAL_GL=1
130 egl_LTLIBRARIES += st_GL.la
131
132 nodist_EXTRA_st_GL_la_SOURCES = dummy.cpp
133 st_GL_la_SOURCES = st_GL.c
134
135 # st_GL, built only when shared glapi is not enabled
136 st_GL_la_LIBADD = \
137 $(top_builddir)/src/mesa/libmesagallium.la \
138 $(top_builddir)/src/gallium/auxiliary/libgallium.la \
139 $(top_builddir)/src/mapi/glapi/libglapi.la \
140 $(CLOCK_LIB) \
141 $(DLOPEN_LIBS) \
142 $(PTHREAD_LIBS) \
143 -lm
144 endif
145 endif
146
147 if HAVE_OPENGL_ES1
148 AM_CPPFLAGS += \
149 -DFEATURE_ES1=1
150 endif
151
152 if HAVE_OPENGL_ES2
153 AM_CPPFLAGS += \
154 -DFEATURE_ES2=1
155 endif
156
157 if HAVE_OPENVG
158 AM_CPPFLAGS += \
159 -I$(top_srcdir)/src/gallium/state_trackers/vega \
160 -DFEATURE_VG=1
161 egl_gallium_la_LIBADD += \
162 $(top_builddir)/src/gallium/state_trackers/vega/libvega.la \
163 $(top_builddir)/src/mapi/vgapi/libOpenVG.la
164 endif
165
166 if HAVE_GALLIUM_I915
167 AM_CPPFLAGS += -D_EGL_PIPE_I915=1
168 egl_gallium_la_LIBADD += \
169 $(top_builddir)/src/gallium/winsys/i915/drm/libi915drm.la \
170 $(top_builddir)/src/gallium/drivers/i915/libi915.la \
171 $(INTEL_LIBS)
172 endif
173
174 if HAVE_GALLIUM_ILO
175 AM_CPPFLAGS += -D_EGL_PIPE_ILO=1
176 egl_gallium_la_LIBADD += \
177 $(top_builddir)/src/gallium/winsys/intel/drm/libintelwinsys.la \
178 $(top_builddir)/src/gallium/drivers/ilo/libilo.la \
179 $(INTEL_LIBS)
180 endif
181
182 if HAVE_GALLIUM_NOUVEAU
183 AM_CPPFLAGS += -D_EGL_PIPE_NOUVEAU=1
184 egl_gallium_la_LIBADD += \
185 $(top_builddir)/src/gallium/winsys/nouveau/drm/libnouveaudrm.la \
186 $(top_builddir)/src/gallium/drivers/nouveau/libnouveau.la \
187 $(NOUVEAU_LIBS)
188 endif
189
190 if HAVE_GALLIUM_R300
191 AM_CPPFLAGS += -D_EGL_PIPE_R300=1
192 egl_gallium_la_LIBADD += \
193 $(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la \
194 $(top_builddir)/src/gallium/drivers/r300/libr300.la \
195 $(RADEON_LIBS)
196 endif
197
198 if HAVE_GALLIUM_R600
199 AM_CPPFLAGS += -D_EGL_PIPE_R600=1
200 egl_gallium_la_LIBADD += \
201 $(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la \
202 $(top_builddir)/src/gallium/drivers/r600/libr600.la \
203 $(RADEON_LIBS)
204 endif
205
206 if HAVE_GALLIUM_RADEONSI
207 AM_CPPFLAGS += -D_EGL_PIPE_RADEONSI=1
208 egl_gallium_la_LIBADD += \
209 $(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la \
210 $(top_builddir)/src/gallium/drivers/radeonsi/libradeonsi.la \
211 $(RADEON_LIBS)
212 endif
213
214 if HAVE_GALLIUM_SVGA
215 AM_CPPFLAGS += -D_EGL_PIPE_VMWGFX=1
216 egl_gallium_la_LIBADD += \
217 $(top_builddir)/src/gallium/winsys/svga/drm/libsvgadrm.la \
218 $(top_builddir)/src/gallium/drivers/svga/libsvga.la
219 endif
220
221 if HAVE_GALLIUM_FREEDRENO
222 AM_CPPFLAGS += -D_EGL_PIPE_FREEDRENO=1
223 egl_gallium_la_LIBADD += \
224 $(top_builddir)/src/gallium/winsys/freedreno/drm/libfreedrenodrm.la \
225 $(top_builddir)/src/gallium/drivers/freedreno/libfreedreno.la \
226 $(FREEDRENO_LIBS)
227
228 endif
229
230 if HAVE_GALLIUM_SOFTPIPE
231 AM_CPPFLAGS += -DGALLIUM_SOFTPIPE -DGALLIUM_RBUG -DGALLIUM_TRACE
232 egl_gallium_la_LIBADD += \
233 $(top_builddir)/src/gallium/drivers/softpipe/libsoftpipe.la
234 endif
235
236 if HAVE_GALLIUM_LLVMPIPE
237 AM_CPPFLAGS += -DGALLIUM_LLVMPIPE
238 egl_gallium_la_LIBADD += \
239 $(top_builddir)/src/gallium/drivers/llvmpipe/libllvmpipe.la
240 endif
241
242 if HAVE_MESA_LLVM
243 egl_gallium_la_LIBADD += $(LLVM_LIBS)
244
245 if HAVE_OPENGL
246 if !HAVE_SHARED_GLAPI
247 st_GL_la_LIBADD += $(LLVM_LIBS)
248 endif
249 endif
250 endif
251
252 include $(top_srcdir)/install-gallium-links.mk