74f863ab69718b155f9d726748feb4588d5a1894
[mesa.git] / src / intel / isl / Makefile.am
1 # Copyright 2015 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 libisl_la_CFLAGS = $(CFLAGS) -Wno-override-init
50
51 libisl_la_LIBADD = $(ISL_GEN_LIBS)
52
53 libisl_la_SOURCES = $(ISL_FILES) $(ISL_GENERATED_FILES)
54
55 libisl_gen7_la_SOURCES = $(ISL_GEN7_FILES)
56 libisl_gen7_la_CFLAGS = $(libisl_la_CFLAGS) -DGEN_VERSIONx10=70
57
58 libisl_gen75_la_SOURCES = $(ISL_GEN75_FILES)
59 libisl_gen75_la_CFLAGS = $(libisl_la_CFLAGS) -DGEN_VERSIONx10=75
60
61 libisl_gen8_la_SOURCES = $(ISL_GEN8_FILES)
62 libisl_gen8_la_CFLAGS = $(libisl_la_CFLAGS) -DGEN_VERSIONx10=80
63
64 libisl_gen9_la_SOURCES = $(ISL_GEN9_FILES)
65 libisl_gen9_la_CFLAGS = $(libisl_la_CFLAGS) -DGEN_VERSIONx10=90
66
67 BUILT_SOURCES = $(ISL_GENERATED_FILES)
68
69 isl_format_layout.c: isl_format_layout_gen.bash \
70 isl_format_layout.csv
71 $(AM_V_GEN)$(srcdir)/isl_format_layout_gen.bash \
72 <$(srcdir)/isl_format_layout.csv >$@
73
74 # ----------------------------------------------------------------------------
75 # Tests
76 # ----------------------------------------------------------------------------
77
78 check_PROGRAMS = tests/isl_surf_get_image_offset_test
79
80 TESTS = $(check_PROGRAMS)
81
82 tests_isl_surf_get_image_offset_test_LDADD = \
83 libisl.la \
84 $(top_builddir)/src/mesa/drivers/dri/i965/libi965_compiler.la \
85 -lm
86
87 # ----------------------------------------------------------------------------
88
89 EXTRA_DIST = \
90 isl_format_layout_gen.bash \
91 isl_format_layout.csv \
92 README