xref: /OK3568_Linux_fs/external/xserver/hw/xfree86/glamor_egl/Makefile.am (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun# Copyright © 2013 Intel Corporation
2*4882a593Smuzhiyun#
3*4882a593Smuzhiyun# Permission is hereby granted, free of charge, to any person obtaining a
4*4882a593Smuzhiyun# copy of this software and associated documentation files (the "Software"),
5*4882a593Smuzhiyun# to deal in the Software without restriction, including without limitation
6*4882a593Smuzhiyun# the rights to use, copy, modify, merge, publish, distribute, sublicense,
7*4882a593Smuzhiyun# and/or sell copies of the Software, and to permit persons to whom the
8*4882a593Smuzhiyun# Software is furnished to do so, subject to the following conditions:
9*4882a593Smuzhiyun#
10*4882a593Smuzhiyun# The above copyright notice and this permission notice (including the next
11*4882a593Smuzhiyun# paragraph) shall be included in all copies or substantial portions of the
12*4882a593Smuzhiyun# Software.
13*4882a593Smuzhiyun#
14*4882a593Smuzhiyun# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15*4882a593Smuzhiyun# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16*4882a593Smuzhiyun# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17*4882a593Smuzhiyun# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18*4882a593Smuzhiyun# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19*4882a593Smuzhiyun# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
20*4882a593Smuzhiyun# IN THE SOFTWARE.
21*4882a593Smuzhiyun
22*4882a593Smuzhiyunmodule_LTLIBRARIES = libglamoregl.la
23*4882a593Smuzhiyun
24*4882a593Smuzhiyunlibglamoregl_la_SOURCES = \
25*4882a593Smuzhiyun	$(top_srcdir)/glamor/glamor_egl.c \
26*4882a593Smuzhiyun	$(top_srcdir)/glamor/glamor_eglmodule.c \
27*4882a593Smuzhiyun	glamor_xf86_xv.c \
28*4882a593Smuzhiyun	$()
29*4882a593Smuzhiyun
30*4882a593Smuzhiyunlibglamoregl_la_LDFLAGS = \
31*4882a593Smuzhiyun	-avoid-version \
32*4882a593Smuzhiyun	$(GBM_LIBS) \
33*4882a593Smuzhiyun	$()
34*4882a593Smuzhiyun
35*4882a593Smuzhiyunlibglamoregl_la_LIBADD = \
36*4882a593Smuzhiyun	$(top_builddir)/glamor/libglamor.la \
37*4882a593Smuzhiyun	$()
38*4882a593Smuzhiyun
39*4882a593SmuzhiyunAM_CPPFLAGS = $(XORG_INCS) \
40*4882a593Smuzhiyun	-I$(top_srcdir)/dri3 \
41*4882a593Smuzhiyun	-I$(top_srcdir)/glamor \
42*4882a593Smuzhiyun	$()
43*4882a593Smuzhiyun
44*4882a593SmuzhiyunAM_CFLAGS = $(DIX_CFLAGS) $(XORG_CFLAGS) $(GLAMOR_CFLAGS) $(GBM_CFLAGS)
45