118 lines
2.8 KiB
Makefile
118 lines
2.8 KiB
Makefile
# 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 DEBUG
|
|
AM_CFLAGS += @VALGRIND_CFLAGS@
|
|
endif
|
|
|
|
noinst_LTLIBRARIES = libsna.la
|
|
libsna_la_LIBADD = @UDEV_LIBS@ -lm @DRM_LIBS@ brw/libbrw.la fb/libfb.la
|
|
|
|
libsna_la_SOURCES = \
|
|
blt.c \
|
|
compiler.h \
|
|
kgem.c \
|
|
kgem.h \
|
|
rop.h \
|
|
sna.h \
|
|
sna_accel.c \
|
|
sna_blt.c \
|
|
sna_composite.c \
|
|
sna_damage.c \
|
|
sna_damage.h \
|
|
sna_display.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_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_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)
|
|
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
|