1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
# Copyright 2005 Adam Jackson.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# on the rights to use, copy, modify, merge, publish, distribute, sub
# license, and/or sell copies of the Software, and to permit persons to whom
# the Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice (including the next
# paragraph) shall be included in all copies or substantial portions of the
# Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
# ADAM JACKSON BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
SUBDIRS = brw fb
AM_CFLAGS = \
@CWARNFLAGS@ \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/render_program \
@XORG_CFLAGS@ \
@UDEV_CFLAGS@ \
@DRM_CFLAGS@ \
$(NULL)
if VALGRIND
AM_CFLAGS += @VALGRIND_CFLAGS@
endif
noinst_LTLIBRARIES = libsna.la
libsna_la_LDFLAGS = -pthread
libsna_la_LIBADD = @UDEV_LIBS@ -lm @DRM_LIBS@ brw/libbrw.la fb/libfb.la
libsna_la_SOURCES = \
atomic.h \
blt.c \
compiler.h \
kgem.c \
kgem.h \
rop.h \
sna.h \
sna_accel.c \
sna_blt.c \
sna_composite.c \
sna_cpu.c \
sna_damage.c \
sna_damage.h \
sna_display.c \
sna_display_fake.c \
sna_driver.c \
sna_glyphs.c \
sna_gradient.c \
sna_io.c \
sna_module.h \
sna_render.c \
sna_render.h \
sna_render_inline.h \
sna_reg.h \
sna_stream.c \
sna_trapezoids.c \
sna_tiling.c \
sna_transform.c \
sna_threads.c \
sna_vertex.c \
sna_video.c \
sna_video.h \
sna_video_overlay.c \
sna_video_sprite.c \
sna_video_textured.c \
gen2_render.c \
gen2_render.h \
gen3_render.c \
gen3_render.h \
gen4_render.c \
gen4_render.h \
gen4_source.c \
gen4_source.h \
gen4_vertex.c \
gen4_vertex.h \
gen5_render.c \
gen5_render.h \
gen6_render.c \
gen6_render.h \
gen7_render.c \
gen7_render.h \
$(NULL)
if DRI2
AM_CFLAGS += @DRI_CFLAGS@
libsna_la_SOURCES += sna_dri.c
libsna_la_LIBADD += $(DRI_LIBS) @CLOCK_GETTIME_LIBS@
endif
if XVMC
libsna_la_SOURCES += \
sna_video_hwmc.h \
sna_video_hwmc.c \
$(NULL)
endif
if FULL_DEBUG
libsna_la_SOURCES += \
kgem_debug.c \
kgem_debug.h \
kgem_debug_gen2.c \
kgem_debug_gen3.c \
kgem_debug_gen4.c \
kgem_debug_gen5.c \
kgem_debug_gen6.c \
kgem_debug_gen7.c \
$(NULL)
endif
if HAVE_DOT_GIT
git_version.h: $(top_srcdir)/.git/HEAD $(shell sed -e '/ref:/!d' -e 's#ref: *#$(top_srcdir)/.git/#' < $(top_srcdir)/.git/HEAD)
@echo "Recording git-tree used for compilation: `git describe`"
@V=`git describe`; echo "static const char git_version[] = \"$$V\";" > git_version.h
sna_driver.c: git_version.h
endif
|