isl: automake: don't explicitly EXTRA_DIST the tests folder
[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 SUBDIRS = .
23
24
25 ISL_GEN_LIBS = \
26 libisl-gen7.la \
27 libisl-gen75.la \
28 libisl-gen8.la \
29 libisl-gen9.la \
30 $(NULL)
31
32 noinst_LTLIBRARIES = $(ISL_GEN_LIBS) libisl.la
33
34 # The gallium includes are for the util/u_math.h include from main/macros.h
35 AM_CPPFLAGS = \
36 $(INTEL_CFLAGS) \
37 $(VALGRIND_CFLAGS) \
38 $(DEFINES) \
39 -I$(top_srcdir)/include \
40 -I$(top_srcdir)/src \
41 -I$(top_srcdir)/src/intel \
42 -I$(top_srcdir)/src/mapi \
43 -I$(top_srcdir)/src/mesa \
44 -I$(top_srcdir)/src/mesa/drivers/dri/common \
45 -I$(top_srcdir)/src/mesa/drivers/dri/i965 \
46 -I$(top_srcdir)/src/gallium/auxiliary \
47 -I$(top_srcdir)/src/gallium/include \
48 -I$(top_builddir)/src \
49 -I$(top_builddir)/src/intel
50
51 libisl_la_CFLAGS = $(CFLAGS) -Wno-override-init
52
53 libisl_la_LIBADD = $(ISL_GEN_LIBS)
54
55 libisl_la_SOURCES = \
56 isl.c \
57 isl.h \
58 isl_format.c \
59 isl_format_layout.c \
60 isl_gen4.c \
61 isl_gen4.h \
62 isl_gen6.c \
63 isl_gen6.h \
64 isl_priv.h \
65 isl_storage_image.c \
66 $(NULL)
67
68 libisl_gen7_la_SOURCES = \
69 isl_gen7.c \
70 isl_gen7.h \
71 isl_surface_state.c \
72 $(NULL)
73 libisl_gen7_la_CFLAGS = $(libisl_la_CFLAGS) -DGEN_VERSIONx10=70
74
75 libisl_gen75_la_SOURCES = \
76 isl_surface_state.c \
77 $(NULL)
78 libisl_gen75_la_CFLAGS = $(libisl_la_CFLAGS) -DGEN_VERSIONx10=75
79
80 libisl_gen8_la_SOURCES = \
81 isl_gen8.c \
82 isl_gen8.h \
83 isl_surface_state.c \
84 $(NULL)
85 libisl_gen8_la_CFLAGS = $(libisl_la_CFLAGS) -DGEN_VERSIONx10=80
86
87 libisl_gen9_la_SOURCES = \
88 isl_gen9.c \
89 isl_gen9.h \
90 isl_surface_state.c \
91 $(NULL)
92 libisl_gen9_la_CFLAGS = $(libisl_la_CFLAGS) -DGEN_VERSIONx10=90
93
94 BUILT_SOURCES = \
95 isl_format_layout.c
96
97 isl_format_layout.c: isl_format_layout_gen.bash \
98 isl_format_layout.csv
99 $(AM_V_GEN)$(srcdir)/isl_format_layout_gen.bash \
100 <$(srcdir)/isl_format_layout.csv >$@
101
102 # ----------------------------------------------------------------------------
103 # Tests
104 # ----------------------------------------------------------------------------
105
106 TESTS = tests/isl_surf_get_image_offset_test
107
108 check_PROGRAMS = $(TESTS)
109
110 # Link tests to lib965_compiler.la for brw_get_device_info().
111 tests_ldadd = \
112 libisl.la \
113 $(top_builddir)/src/mesa/drivers/dri/i965/libi965_compiler.la \
114 -lm
115
116 tests_isl_surf_get_image_offset_test_SOURCES = \
117 tests/isl_surf_get_image_offset_test.c
118 tests_isl_surf_get_image_offset_test_LDADD = $(tests_ldadd)
119
120 # ----------------------------------------------------------------------------
121
122 include $(top_srcdir)/install-lib-links.mk
123
124 EXTRA_DIST = \
125 isl_format_layout_gen.bash \
126 isl_format_layout.csv \
127 README