glx: Fix build since 679c2ef "glx/drisw: add support for DRI2rendererQueryExtension...
[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_LIB = $(top_builddir)/src/mapi/shared-glapi/libglapi.la
25 endif
26
27 SUBDIRS =
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/loader \
37 -I$(top_srcdir)/src/mapi \
38 -I$(top_srcdir)/src/mapi/glapi \
39 -I$(top_builddir)/src/mapi \
40 -I$(top_builddir)/src/mapi/glapi \
41 $(VISIBILITY_CFLAGS) \
42 $(SHARED_GLAPI_CFLAGS) \
43 $(EXTRA_DEFINES_XF86VIDMODE) \
44 -D_REENTRANT \
45 -DDEFAULT_DRIVER_DIR=\"$(DRI_DRIVER_SEARCH_DIR)\" \
46 $(DEFINES) \
47 $(LIBDRM_CFLAGS) \
48 $(DRI2PROTO_CFLAGS) \
49 $(GLPROTO_CFLAGS) \
50 $(X11_INCLUDES)
51
52 lib_LTLIBRARIES = lib@GL_LIB@.la
53
54 noinst_LTLIBRARIES = libglx.la
55
56 libglx_la_SOURCES = \
57 clientattrib.c \
58 clientinfo.c \
59 compsize.c \
60 create_context.c \
61 eval.c \
62 glxconfig.c \
63 glxcmds.c \
64 glxcurrent.c \
65 glx_error.c \
66 glxext.c \
67 glxextensions.c \
68 indirect_glx.c \
69 indirect.c \
70 indirect_init.c \
71 indirect_size.c \
72 indirect_window_pos.c \
73 indirect_texture_compression.c \
74 indirect_transpose_matrix.c \
75 indirect_vertex_array.c \
76 indirect_vertex_program.c \
77 pixel.c \
78 pixelstore.c \
79 query_renderer.c \
80 render2.c \
81 renderpix.c \
82 single2.c \
83 singlepix.c \
84 vertarr.c \
85 glx_pbuffer.c \
86 glx_query.c \
87 glxhash.c
88
89 libglx_la_LIBADD = $(top_builddir)/src/loader/libloader.la
90
91 if HAVE_DRISW
92 libglx_la_SOURCES += \
93 drisw_glx.c
94 endif
95
96 if HAVE_DRICOMMON
97 libglx_la_SOURCES += \
98 xfont.c \
99 dri_common.c \
100 dri_common_query_renderer.c
101 endif
102
103 if HAVE_DRI2
104 libglx_la_SOURCES += \
105 dri_glx.c \
106 XF86dri.c \
107 dri2_glx.c \
108 dri2.c
109 endif
110
111 if HAVE_DRI3
112 libglx_la_SOURCES += \
113 dri3_glx.c
114 endif
115
116 if HAVE_APPLEDRI
117 libglx_la_SOURCES += \
118 applegl_glx.c
119
120 SUBDIRS += apple
121 libglx_la_LIBADD += $(builddir)/apple/libappleglx.la
122 endif
123
124 GL_LIBS = \
125 libglx.la \
126 $(top_builddir)/src/mapi/glapi/libglapi.la \
127 $(SHARED_GLAPI_LIB) \
128 $(GL_LIB_DEPS)
129
130 GL_LDFLAGS = \
131 -no-undefined \
132 -version-number 1:2 \
133 $(BSYMBOLIC) \
134 $(GC_SECTIONS) \
135 $(LD_NO_UNDEFINED)
136
137 lib@GL_LIB@_la_SOURCES =
138 lib@GL_LIB@_la_LIBADD = $(GL_LIBS)
139 lib@GL_LIB@_la_LDFLAGS = $(GL_LDFLAGS)
140
141 SUBDIRS += . tests
142
143 include $(top_srcdir)/install-lib-links.mk