mesa/src/intel/Makefile.isl.am
Tapani Pälli 864cc419eb intel/isl: move tiled_memcpy static libs from i965 to isl
Patch moves intel_tiled_memcpy[_sse41] libraries to isl, renames some
functions and types and makes the required build system changes for
meson, automake and Android. No functional changes are introduced.

v2: code cleanups, move isl_get_memcpy_type to i965 (Jason)
v3: move isl_mem_copy_fn to priv header, cleanups (Jason, Dylan)

Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Acked-by: Kenneth Graunke <kenneth@whitecape.org>
2019-01-10 08:02:30 +02:00

109 lines
4.2 KiB
Text

# Copyright 2015-2016 Intel Corporation
#
# 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
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# 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 NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS 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.
ISL_GEN_LIBS = \
isl/libisl-gen4.la \
isl/libisl-gen5.la \
isl/libisl-gen6.la \
isl/libisl-gen7.la \
isl/libisl-gen75.la \
isl/libisl-gen8.la \
isl/libisl-gen9.la \
isl/libisl-gen10.la \
isl/libisl-gen11.la \
$(NULL)
noinst_LTLIBRARIES += $(ISL_GEN_LIBS) \
isl/libisl.la \
libisl_tiled_memcpy.la \
libisl_tiled_memcpy_sse41.la
isl_libisl_la_LIBADD = $(ISL_GEN_LIBS) \
libisl_tiled_memcpy.la \
libisl_tiled_memcpy_sse41.la
isl_libisl_la_SOURCES = $(ISL_FILES) $(ISL_GENERATED_FILES)
libisl_tiled_memcpy_la_SOURCES = $(ISL_TILED_MEMCPY_FILES)
libisl_tiled_memcpy_la_CFLAGS = $(AM_CFLAGS)
libisl_tiled_memcpy_sse41_la_SOURCES = $(ISL_TILED_MEMCPY_SSE41_FILES)
libisl_tiled_memcpy_sse41_la_CFLAGS = $(AM_CFLAGS) $(SSE41_CFLAGS)
isl_tiled_memcpy_normal.c: $(ISL_TILED_MEMCPY_DEP_FILES)
isl_tiled_memcpy_sse41.c: $(ISL_TILED_MEMCPY_DEP_FILES)
isl_libisl_gen4_la_SOURCES = $(ISL_GEN4_FILES)
isl_libisl_gen4_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=40
isl_libisl_gen5_la_SOURCES = $(ISL_GEN5_FILES)
isl_libisl_gen5_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=50
isl_libisl_gen6_la_SOURCES = $(ISL_GEN6_FILES)
isl_libisl_gen6_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=60
isl_libisl_gen7_la_SOURCES = $(ISL_GEN7_FILES)
isl_libisl_gen7_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=70
isl_libisl_gen75_la_SOURCES = $(ISL_GEN75_FILES)
isl_libisl_gen75_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=75
isl_libisl_gen8_la_SOURCES = $(ISL_GEN8_FILES)
isl_libisl_gen8_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=80
isl_libisl_gen9_la_SOURCES = $(ISL_GEN9_FILES)
isl_libisl_gen9_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=90
isl_libisl_gen10_la_SOURCES = $(ISL_GEN10_FILES)
isl_libisl_gen10_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=100
isl_libisl_gen11_la_SOURCES = $(ISL_GEN11_FILES)
isl_libisl_gen11_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=110
BUILT_SOURCES += $(ISL_GENERATED_FILES)
isl/isl_format_layout.c: isl/gen_format_layout.py \
isl/isl_format_layout.csv
$(MKDIR_GEN)
$(PYTHON_GEN) $(srcdir)/isl/gen_format_layout.py \
--csv $(srcdir)/isl/isl_format_layout.csv --out $@
# ----------------------------------------------------------------------------
# Tests
# ----------------------------------------------------------------------------
check_PROGRAMS += isl/tests/isl_surf_get_image_offset_test
TESTS += $(check_PROGRAMS)
isl_tests_isl_surf_get_image_offset_test_LDADD = \
dev/libintel_dev.la \
isl/libisl.la \
$(top_builddir)/src/util/libmesautil.la \
-lm
# ----------------------------------------------------------------------------
EXTRA_DIST += \
isl/gen_format_layout.py \
isl/isl_format_layout.csv \
isl/README \
$(ISL_TILED_MEMCPY_DEP_FILES)