glx: Add headers to distribution.
[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 glxclient.h \
63 glxcmds.c \
64 glxconfig.c \
65 glxconfig.h \
66 glxcurrent.c \
67 glx_error.c \
68 glx_error.h \
69 glxext.c \
70 glxextensions.c \
71 glxextensions.h \
72 glxhash.c \
73 glxhash.h \
74 glx_pbuffer.c \
75 glx_query.c \
76 indirect.c \
77 indirect_glx.c \
78 indirect_init.c \
79 indirect_init.h \
80 indirect_size.c \
81 indirect_texture_compression.c \
82 indirect_transpose_matrix.c \
83 indirect_vertex_array.c \
84 indirect_vertex_array.h \
85 indirect_vertex_array_priv.h \
86 indirect_vertex_program.c \
87 indirect_window_pos.c \
88 packrender.h \
89 packsingle.h \
90 pixel.c \
91 pixelstore.c \
92 query_renderer.c \
93 render2.c \
94 renderpix.c \
95 single2.c \
96 singlepix.c \
97 vertarr.c
98
99 libglx_la_LIBADD = $(top_builddir)/src/loader/libloader.la
100
101 if HAVE_DRISW
102 libglx_la_SOURCES += \
103 drisw_glx.c \
104 drisw_priv.h
105 endif
106
107 if HAVE_DRICOMMON
108 libglx_la_SOURCES += \
109 dri_common.c \
110 dri_common.h \
111 dri_common_query_renderer.c \
112 xfont.c
113 endif
114
115 if HAVE_DRI2
116 libglx_la_SOURCES += \
117 dri2.c \
118 dri2_glx.c \
119 dri2.h \
120 dri2_priv.h \
121 dri_glx.c \
122 dri_sarea.h \
123 XF86dri.c \
124 xf86dri.h \
125 xf86dristr.h
126 endif
127
128 if HAVE_DRI3
129 libglx_la_SOURCES += \
130 dri3_glx.c \
131 dri3_priv.h
132 endif
133
134 if HAVE_APPLEDRI
135 libglx_la_SOURCES += \
136 applegl_glx.c
137
138 SUBDIRS += apple
139 libglx_la_LIBADD += $(builddir)/apple/libappleglx.la
140 endif
141
142 GL_LIBS = \
143 libglx.la \
144 $(top_builddir)/src/mapi/glapi/libglapi.la \
145 $(SHARED_GLAPI_LIB) \
146 $(GL_LIB_DEPS)
147
148 GL_LDFLAGS = \
149 -no-undefined \
150 -version-number 1:2 \
151 $(BSYMBOLIC) \
152 $(GC_SECTIONS) \
153 $(LD_NO_UNDEFINED)
154
155 lib@GL_LIB@_la_SOURCES =
156 lib@GL_LIB@_la_LIBADD = $(GL_LIBS)
157 lib@GL_LIB@_la_LDFLAGS = $(GL_LDFLAGS)
158
159 SUBDIRS += . tests
160
161 include $(top_srcdir)/install-lib-links.mk