0aec2aa3daa150e03e25f6a0aea9847bf3bb64f6
[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 = $(top_builddir)/src/mapi/glapi/libglapi.la
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 -I$(top_builddir)/src/mapi \
41 -I$(top_builddir)/src/mapi/glapi \
42 $(VISIBILITY_CFLAGS) \
43 $(SHARED_GLAPI_CFLAGS) \
44 $(EXTRA_DEFINES_XF86VIDMODE) \
45 -D_REENTRANT \
46 -DDEFAULT_DRIVER_DIR=\"$(DRI_DRIVER_SEARCH_DIR)\" \
47 $(DEFINES) \
48 $(LIBDRM_CFLAGS) \
49 $(DRI2PROTO_CFLAGS) \
50 $(GLPROTO_CFLAGS) \
51 $(X11_INCLUDES)
52
53 lib_LTLIBRARIES = lib@GL_LIB@.la
54
55 noinst_LTLIBRARIES = libglx.la
56
57 libglx_la_SOURCES = \
58 clientattrib.c \
59 clientinfo.c \
60 compsize.c \
61 create_context.c \
62 eval.c \
63 glxconfig.c \
64 glxcmds.c \
65 glxcurrent.c \
66 glx_error.c \
67 glxext.c \
68 glxextensions.c \
69 indirect_glx.c \
70 indirect.c \
71 indirect_init.c \
72 indirect_size.c \
73 indirect_window_pos.c \
74 indirect_texture_compression.c \
75 indirect_transpose_matrix.c \
76 indirect_vertex_array.c \
77 indirect_vertex_program.c \
78 pixel.c \
79 pixelstore.c \
80 query_renderer.c \
81 render2.c \
82 renderpix.c \
83 single2.c \
84 singlepix.c \
85 vertarr.c \
86 xfont.c \
87 glx_pbuffer.c \
88 glx_query.c \
89 drisw_glx.c \
90 dri_common.c \
91 dri_glx.c \
92 XF86dri.c \
93 glxhash.c \
94 dri2_glx.c \
95 dri2.c \
96 dri2_query_renderer.c \
97 applegl_glx.c
98
99 if HAVE_DRI3
100 libglx_la_SOURCES += \
101 dri3_glx.c \
102 dri3_common.c
103 endif
104
105 GL_LIBS = \
106 libglx.la \
107 $(SHARED_GLAPI_LIBS) \
108 $(GLAPI_LIB) \
109 $(GL_LIB_DEPS)
110
111 GL_LDFLAGS = \
112 -Wl,-Bsymbolic \
113 -version-number 1:2 -no-undefined
114
115 lib@GL_LIB@_la_SOURCES =
116 lib@GL_LIB@_la_LIBADD = $(GL_LIBS)
117 lib@GL_LIB@_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 all-local: lib@GL_LIB@.la
122 $(MKDIR_P) $(top_builddir)/$(LIB_DIR);
123 ln -f .libs/lib@GL_LIB@.so.1.2.0 $(top_builddir)/$(LIB_DIR)/lib@GL_LIB@.so.1
124 ln -sf lib@GL_LIB@.so.1 $(top_builddir)/$(LIB_DIR)/lib@GL_LIB@.so