diff options
Diffstat (limited to 'src/sna/Makefile.am')
-rw-r--r-- | src/sna/Makefile.am | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/src/sna/Makefile.am b/src/sna/Makefile.am new file mode 100644 index 00000000..f65b281b --- /dev/null +++ b/src/sna/Makefile.am @@ -0,0 +1,115 @@ +# 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. + +AM_CFLAGS = @CWARNFLAGS@ @XORG_CFLAGS@ @UDEV_CFLAGS@ @DRM_CFLAGS@ @DRI_CFLAGS@ \ + -I$(top_srcdir)/src -I$(top_srcdir)/uxa -I$(top_srcdir)/src/render_program + +noinst_LTLIBRARIES = libsna.la +libsna_la_LIBADD = @UDEV_LIBS@ -lm @DRM_LIBS@ + +NULL:=# + +libsna_la_SOURCES = \ + blt.c \ + kgem.c \ + kgem.h \ + sna.h \ + sna_accel.c \ + sna_blt.c \ + sna_composite.c \ + sna_damage.c \ + snd_damage.h \ + sna_display.c \ + sna_driver.c \ + sna_driver.h \ + sna_glyphs.c \ + sna_gradient.c \ + sna_io.c \ + 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_video.c \ + sna_video.h \ + sna_video_overlay.c \ + sna_video_textured.c \ + $(NULL) + +if SNA_GEN2 +libsna_la_SOURCES += \ + gen2_render.c \ + gen2_render.h \ + $(NULL) +endif +if SNA_GEN3 +libsna_la_SOURCES += \ + gen3_render.c \ + gen3_render.h \ + $(NULL) +endif +if SNA_GEN4 +libsna_la_SOURCES += \ + gen4_render.c \ + gen4_render.h \ + $(NULL) +endif +if SNA_GEN5 +libsna_la_SOURCES += \ + gen5_render.c \ + gen5_render.h \ + $(NULL) +endif +if SNA_GEN6 +libsna_la_SOURCES += \ + gen6_render.c \ + gen6_render.h \ + $(NULL) +endif + +if DRI +libsna_la_SOURCES += \ + sna_dri.c \ + $(NULL) +libsna_la_LIBADD += \ + $(DRI_LIBS) \ + $(NULL) +endif + +if XVMC +libsna_la_SOURCES += \ + sna_video_hwmc.h \ + sna_video_hwmc.c \ + $(NULL) +endif + +if DEBUG +libsna_la_SOURCES += \ + kgem_debug.c \ + kgem_debug.h \ + kgem_debug_gen3.c \ + kgem_debug_gen4.c \ + kgem_debug_gen5.c \ + kgem_debug_gen6.c \ + $(NULL) +endif |