30fbd63751a6ddbdb8ebfb95c2dbcbdef57e94d8
[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 GLAPI_LIB = ../mapi/glapi/libglapi.a
28
29 if HAVE_XF86VIDMODE
30 EXTRA_DEFINES_XF86VIDMODE = -DXF86VIDMODE
31 endif
32
33 AM_CFLAGS = \
34 -I$(top_srcdir)/include \
35 -I$(top_srcdir)/include/GL/internal \
36 -I$(top_srcdir)/src/mapi \
37 -I$(top_srcdir)/src/mapi/glapi \
38 $(SHARED_GLAPI_CFLAGS) \
39 $(EXTRA_DEFINES_XF86VIDMODE) \
40 -D_REENTRANT \
41 -DDEFAULT_DRIVER_DIR=\"$(DRI_DRIVER_SEARCH_DIR)\" \
42 $(DEFINES) \
43 $(LIBDRM_CFLAGS) \
44 $(DRI2PROTO_CFLAGS) \
45 $(GLPROTO_CFLAGS) \
46 $(X11_INCLUDES)
47
48 if HAVE_MANGLED_GL
49 MANGLED_GL_LIB = libMangledGL.la
50 else
51 NORMAL_GL_LIB = libGL.la
52 endif
53
54 lib_LTLIBRARIES = \
55 $(NORMAL_GL_LIB) \
56 $(MANGLED_GL_LIB)
57
58 noinst_LTLIBRARIES = libglx.la
59
60 libglx_la_SOURCES = \
61 clientattrib.c \
62 clientinfo.c \
63 compsize.c \
64 create_context.c \
65 eval.c \
66 glxconfig.c \
67 glxcmds.c \
68 glxcurrent.c \
69 glx_error.c \
70 glxext.c \
71 glxextensions.c \
72 indirect_glx.c \
73 indirect.c \
74 indirect_init.c \
75 indirect_size.c \
76 indirect_window_pos.c \
77 indirect_texture_compression.c \
78 indirect_transpose_matrix.c \
79 indirect_vertex_array.c \
80 indirect_vertex_program.c \
81 pixel.c \
82 pixelstore.c \
83 render2.c \
84 renderpix.c \
85 single2.c \
86 singlepix.c \
87 vertarr.c \
88 xfont.c \
89 glx_pbuffer.c \
90 glx_query.c \
91 drisw_glx.c \
92 dri_common.c \
93 dri_glx.c \
94 XF86dri.c \
95 glxhash.c \
96 dri2_glx.c \
97 dri2.c \
98 applegl_glx.c
99
100 GL_LIBS = \
101 libglx.la \
102 $(SHARED_GLAPI_LIBS) \
103 $(GLAPI_LIB) \
104 $(GL_LIB_DEPS)
105
106 GL_LDFLAGS = \
107 -Wl,-Bsymbolic \
108 -version-number 1:2 -no-undefined
109
110 libGL_la_SOURCES =
111 libMangledGL_la_SOURCES =
112 libGL_la_LIBADD = $(GL_LIBS)
113 libMangledGL_la_LIBADD = $(GL_LIBS)
114 libGL_la_LDFLAGS = $(GL_LDFLAGS)
115 libMangledGL_la_LDFLAGS = $(GL_LDFLAGS)
116
117 # Provide compatibility with scripts for the old Mesa build system for
118 # a while by putting a link to the driver into /lib of the build tree.
119 if !HAVE_MANGLED_GL
120 all-local: $(NORMAL_GL_LIB) $(MANGLED_GL_LIB)
121 $(MKDIR_P) $(top_builddir)/$(LIB_DIR);
122 ln -f .libs/libGL.so.1.2.0 $(top_builddir)/$(LIB_DIR)/libGL.so.1
123 ln -sf libGL.so.1 $(top_builddir)/$(LIB_DIR)/libGL.so
124 endif
125
126 $(GLAPI_LIB):
127 @$(MAKE) -C $(TOP)/src/mapi/glapi