OSDN Git Service

Merge remote-tracking branch 'mesa/12.0' into marshmallow-x86
[android-x86/external-mesa.git] / src / intel / isl / Makefile.am
1 # Copyright 2015-2016 Intel Corporation
2 #
3 # Permission is hereby granted, free of charge, to any person obtaining a
4 # copy of this software and associated documentation files (the "Software"),
5 # to deal in the Software without restriction, including without limitation
6 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
7 # and/or sell copies of the Software, and to permit persons to whom the
8 # Software is furnished to do so, subject to the following conditions:
9 #
10 # The above copyright notice and this permission notice (including the next
11 # paragraph) shall be included in all copies or substantial portions of the
12 # Software.
13 #
14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
20 # IN THE SOFTWARE.
21
22 include Makefile.sources
23
24 ISL_GEN_LIBS =                                           \
25         libisl-gen7.la                                   \
26         libisl-gen75.la                                  \
27         libisl-gen8.la                                   \
28         libisl-gen9.la                                   \
29         $(NULL)
30
31 noinst_LTLIBRARIES = $(ISL_GEN_LIBS) libisl.la
32
33 # The gallium includes are for the util/u_math.h include from main/macros.h
34 AM_CPPFLAGS = \
35         $(INTEL_CFLAGS) \
36         $(VALGRIND_CFLAGS) \
37         $(DEFINES) \
38         -I$(top_srcdir)/include \
39         -I$(top_builddir)/src \
40         -I$(top_srcdir)/src \
41         -I$(top_builddir)/src/intel \
42         -I$(top_srcdir)/src/intel \
43         -I$(top_srcdir)/src/mapi \
44         -I$(top_srcdir)/src/mesa \
45         -I$(top_srcdir)/src/mesa/drivers/dri/i965 \
46         -I$(top_srcdir)/src/gallium/auxiliary \
47         -I$(top_srcdir)/src/gallium/include
48
49 AM_CFLAGS = \
50         $(VISIBILITY_CFLAGS) \
51         -Wno-override-init
52
53 libisl_la_LIBADD = $(ISL_GEN_LIBS)
54
55 libisl_la_SOURCES = $(ISL_FILES) $(ISL_GENERATED_FILES)
56
57 libisl_gen7_la_SOURCES = $(ISL_GEN7_FILES)
58 libisl_gen7_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=70
59
60 libisl_gen75_la_SOURCES = $(ISL_GEN75_FILES)
61 libisl_gen75_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=75
62
63 libisl_gen8_la_SOURCES = $(ISL_GEN8_FILES)
64 libisl_gen8_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=80
65
66 libisl_gen9_la_SOURCES = $(ISL_GEN9_FILES)
67 libisl_gen9_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=90
68
69 BUILT_SOURCES = $(ISL_GENERATED_FILES)
70
71 PYTHON_GEN = $(AM_V_GEN)$(PYTHON2) $(PYTHON_FLAGS)
72
73 isl_format_layout.c: gen_format_layout.py \
74                      isl_format_layout.csv
75         $(PYTHON_GEN) $(srcdir)/gen_format_layout.py \
76             --csv $(srcdir)/isl_format_layout.csv --out $@
77
78 # ----------------------------------------------------------------------------
79 #  Tests
80 # ----------------------------------------------------------------------------
81
82 check_PROGRAMS = tests/isl_surf_get_image_offset_test
83
84 TESTS = $(check_PROGRAMS)
85
86 tests_isl_surf_get_image_offset_test_LDADD = \
87         libisl.la \
88         $(top_builddir)/src/mesa/drivers/dri/i965/libi965_compiler.la \
89         -lm
90
91 # ----------------------------------------------------------------------------
92
93 EXTRA_DIST = \
94         gen_format_layout.py \
95         isl_format_layout.csv \
96         README