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