glx: Move tests from tests/glx to src/glx/tests
[profile/ivi/mesa.git] / src / glx / 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, EXPRESS OR
15 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
20 # IN THE SOFTWARE.
21
22 if HAVE_SHARED_GLAPI
23 SHARED_GLAPI_CFLAGS = -DGLX_SHARED_GLAPI
24 SHARED_GLAPI_LIBS = $(top_builddir)/src/mapi/shared-glapi/libglapi.la
25 endif
26
27 SUBDIRS=tests
28
29 GLAPI_LIB = ../mapi/glapi/libglapi.a
30
31 if HAVE_XF86VIDMODE
32 EXTRA_DEFINES_XF86VIDMODE = -DXF86VIDMODE
33 endif
34
35 AM_CFLAGS = \
36         -I$(top_srcdir)/include \
37         -I$(top_srcdir)/include/GL/internal \
38         -I$(top_srcdir)/src/mapi \
39         -I$(top_srcdir)/src/mapi/glapi \
40         $(SHARED_GLAPI_CFLAGS) \
41         $(EXTRA_DEFINES_XF86VIDMODE) \
42         -D_REENTRANT \
43         -DDEFAULT_DRIVER_DIR=\"$(DRI_DRIVER_SEARCH_DIR)\" \
44         $(DEFINES) \
45         $(LIBDRM_CFLAGS) \
46         $(DRI2PROTO_CFLAGS) \
47         $(GLPROTO_CFLAGS) \
48         $(X11_INCLUDES)
49
50 if HAVE_MANGLED_GL
51 MANGLED_GL_LIB = libMangledGL.la
52 else
53 NORMAL_GL_LIB = libGL.la
54 endif
55
56 lib_LTLIBRARIES = \
57         $(NORMAL_GL_LIB) \
58         $(MANGLED_GL_LIB)
59
60 noinst_LTLIBRARIES = libglx.la
61
62 libglx_la_SOURCES = \
63           clientattrib.c \
64           clientinfo.c \
65           compsize.c \
66           create_context.c \
67           eval.c \
68           glxconfig.c \
69           glxcmds.c \
70           glxcurrent.c \
71           glx_error.c \
72           glxext.c \
73           glxextensions.c \
74           indirect_glx.c \
75           indirect.c \
76           indirect_init.c \
77           indirect_size.c \
78           indirect_window_pos.c \
79           indirect_texture_compression.c \
80           indirect_transpose_matrix.c \
81           indirect_vertex_array.c \
82           indirect_vertex_program.c \
83           pixel.c \
84           pixelstore.c \
85           render2.c \
86           renderpix.c \
87           single2.c \
88           singlepix.c \
89           vertarr.c \
90           xfont.c \
91           glx_pbuffer.c \
92           glx_query.c \
93           drisw_glx.c \
94           dri_common.c \
95           dri_glx.c \
96           XF86dri.c \
97           glxhash.c \
98           dri2_glx.c \
99           dri2.c \
100           applegl_glx.c
101
102 GL_LIBS = \
103         libglx.la \
104         $(SHARED_GLAPI_LIBS) \
105         $(GLAPI_LIB) \
106         $(GL_LIB_DEPS)
107
108 GL_LDFLAGS = \
109         -Wl,-Bsymbolic \
110         -version-number 1:2 -no-undefined
111
112 libGL_la_SOURCES =
113 libMangledGL_la_SOURCES =
114 libGL_la_LIBADD = $(GL_LIBS)
115 libMangledGL_la_LIBADD = $(GL_LIBS)
116 libGL_la_LDFLAGS = $(GL_LDFLAGS)
117 libMangledGL_la_LDFLAGS = $(GL_LDFLAGS)
118
119 # Provide compatibility with scripts for the old Mesa build system for
120 # a while by putting a link to the driver into /lib of the build tree.
121 if !HAVE_MANGLED_GL
122 all-local: $(NORMAL_GL_LIB) $(MANGLED_GL_LIB)
123         $(MKDIR_P) $(top_builddir)/$(LIB_DIR);
124         ln -f .libs/libGL.so.1.2.0 $(top_builddir)/$(LIB_DIR)/libGL.so.1
125         ln -sf libGL.so.1 $(top_builddir)/$(LIB_DIR)/libGL.so
126 endif
127
128 $(GLAPI_LIB):
129         @$(MAKE) -C $(TOP)/src/mapi/glapi