nir: rename nir_var_shared to nir_var_mem_shared
[mesa.git] / src / compiler / Makefile.glsl.am
1 #
2 # Copyright © 2012 Jon TURNEY
3 # Copyright (C) 2015 Intel Corporation
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining a
6 # copy of this software and associated documentation files (the "Software"),
7 # to deal in the Software without restriction, including without limitation
8 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 # and/or sell copies of the Software, and to permit persons to whom the
10 # Software is furnished to do so, subject to the following conditions:
11 #
12 # The above copyright notice and this permission notice (including the next
13 # paragraph) shall be included in all copies or substantial portions of the
14 # Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 # IN THE SOFTWARE.
23
24 EXTRA_DIST += glsl/tests glsl/glcpp/tests glsl/README \
25 glsl/TODO glsl/glcpp/README \
26 glsl/glsl_lexer.ll \
27 glsl/glsl_parser.yy \
28 glsl/ir_expression_operation.py \
29 glsl/glcpp/glcpp-lex.l \
30 glsl/glcpp/glcpp-parse.y \
31 glsl/xxd.py \
32 SConscript.glsl
33
34 TESTS += glsl/glcpp/tests/glcpp-test.sh \
35 glsl/tests/blob-test \
36 glsl/tests/cache-test \
37 glsl/tests/general-ir-test \
38 glsl/tests/optimization-test.sh \
39 glsl/tests/sampler-types-test \
40 glsl/tests/uniform-initializer-test \
41 glsl/tests/warnings-test.sh
42
43 TESTS_ENVIRONMENT= \
44 export abs_builddir=$(abs_builddir); \
45 export PYTHON=$(PYTHON); \
46 export PYTHON_FLAGS=$(PYTHON_FLAGS);
47
48 check_PROGRAMS += \
49 glsl/glcpp/glcpp \
50 glsl/glsl_test \
51 glsl/tests/blob-test \
52 glsl/tests/cache-test \
53 glsl/tests/general-ir-test \
54 glsl/tests/sampler-types-test \
55 glsl/tests/uniform-initializer-test
56
57 noinst_PROGRAMS += glsl_compiler
58
59 glsl_tests_blob_test_SOURCES = \
60 glsl/tests/blob_test.c
61 glsl_tests_blob_test_LDADD = \
62 glsl/libglsl.la
63
64 glsl_tests_cache_test_SOURCES = \
65 glsl/tests/cache_test.c
66 glsl_tests_cache_test_CFLAGS = \
67 $(PTHREAD_CFLAGS)
68 glsl_tests_cache_test_LDADD = \
69 glsl/libglsl.la \
70 $(PTHREAD_LIBS) \
71 $(CLOCK_LIB)
72
73 glsl_tests_general_ir_test_SOURCES = \
74 glsl/tests/array_refcount_test.cpp \
75 glsl/tests/builtin_variable_test.cpp \
76 glsl/tests/invalidate_locations_test.cpp \
77 glsl/tests/general_ir_test.cpp \
78 glsl/tests/lower_int64_test.cpp \
79 glsl/tests/opt_add_neg_to_sub_test.cpp \
80 glsl/tests/varyings_test.cpp
81 glsl_tests_general_ir_test_CFLAGS = \
82 $(PTHREAD_CFLAGS)
83 glsl_tests_general_ir_test_LDADD = \
84 $(top_builddir)/src/gtest/libgtest.la \
85 glsl/libglsl.la \
86 glsl/libstandalone.la \
87 $(top_builddir)/src/libglsl_util.la \
88 $(PTHREAD_LIBS) \
89 $(CLOCK_LIB)
90
91 glsl_tests_uniform_initializer_test_SOURCES = \
92 glsl/tests/copy_constant_to_storage_tests.cpp \
93 glsl/tests/set_uniform_initializer_tests.cpp \
94 glsl/tests/uniform_initializer_utils.cpp \
95 glsl/tests/uniform_initializer_utils.h
96 glsl_tests_uniform_initializer_test_CFLAGS = \
97 $(PTHREAD_CFLAGS)
98 glsl_tests_uniform_initializer_test_LDADD = \
99 $(top_builddir)/src/gtest/libgtest.la \
100 glsl/libglsl.la \
101 $(top_builddir)/src/libglsl_util.la \
102 $(PTHREAD_LIBS)
103
104 glsl_tests_sampler_types_test_SOURCES = \
105 glsl/tests/sampler_types_test.cpp
106 glsl_tests_sampler_types_test_CFLAGS = \
107 $(PTHREAD_CFLAGS)
108 glsl_tests_sampler_types_test_LDADD = \
109 $(top_builddir)/src/gtest/libgtest.la \
110 glsl/libglsl.la \
111 $(top_builddir)/src/libglsl_util.la \
112 $(PTHREAD_LIBS)
113
114 noinst_LTLIBRARIES += glsl/libglsl.la glsl/libglcpp.la glsl/libstandalone.la
115
116 glsl_libglcpp_la_LIBADD = \
117 $(top_builddir)/src/util/libmesautil.la
118 glsl_libglcpp_la_SOURCES = \
119 glsl/glcpp/glcpp-lex.c \
120 glsl/glcpp/glcpp-parse.c \
121 glsl/glcpp/glcpp-parse.h \
122 $(LIBGLCPP_FILES)
123
124 glsl_glcpp_glcpp_SOURCES = \
125 glsl/glcpp/glcpp.c
126 glsl_glcpp_glcpp_LDADD = \
127 glsl/libglcpp.la \
128 $(top_builddir)/src/libglsl_util.la \
129 -lm
130
131 glsl_libglsl_la_LIBADD = \
132 nir/libnir.la \
133 glsl/libglcpp.la
134
135 glsl_libglsl_la_SOURCES = \
136 $(LIBGLSL_GENERATED_FILES) \
137 $(LIBGLSL_FILES) \
138 $(LIBGLSL_SHADER_CACHE_FILES)
139
140 glsl_libstandalone_la_SOURCES = \
141 $(GLSL_COMPILER_CXX_FILES)
142
143 glsl_libstandalone_la_LIBADD = \
144 glsl/libglsl.la \
145 $(top_builddir)/src/libglsl_util.la \
146 $(top_builddir)/src/util/libmesautil.la \
147 $(PTHREAD_LIBS)
148
149 glsl_compiler_SOURCES = \
150 glsl/main.cpp
151
152 glsl_compiler_LDADD = \
153 glsl/libstandalone.la \
154 $(CLOCK_LIB)
155
156 glsl_glsl_test_SOURCES = \
157 glsl/test.cpp \
158 glsl/test_optpass.cpp \
159 glsl/test_optpass.h
160
161 glsl_glsl_test_LDADD = \
162 glsl/libglsl.la \
163 glsl/libstandalone.la \
164 $(top_builddir)/src/libglsl_util.la \
165 $(PTHREAD_LIBS) \
166 $(CLOCK_LIB)
167
168 # We write our own rules for yacc and lex below. We'd rather use automake,
169 # but automake makes it especially difficult for a number of reasons:
170 #
171 # * < automake-1.12 generates .h files from .yy and .ypp files, but
172 # >=automake-1.12 generates .hh and .hpp files respectively. There's no
173 # good way of making a project that uses C++ yacc files compatible with
174 # both versions of automake. Strong work automake developers.
175 #
176 # * Since we're generating code from .l/.y files in a subdirectory (glcpp/)
177 # we'd like the resulting generated code to also go in glcpp/ for purposes
178 # of distribution. Automake gives no way to do this.
179 #
180 # * Since we're building multiple yacc parsers into one library (and via one
181 # Makefile) we have to use per-target YFLAGS. Using per-target YFLAGS causes
182 # automake to name the resulting generated code as <library-name>_filename.c.
183 # Frankly, that's ugly and we don't want a libglcpp_glcpp_parser.h file.
184
185 # In order to make build output print "LEX" and "YACC", we reproduce the
186 # automake variables below.
187
188 AM_V_LEX = $(am__v_LEX_$(V))
189 am__v_LEX_ = $(am__v_LEX_$(AM_DEFAULT_VERBOSITY))
190 am__v_LEX_0 = @echo " LEX " $@;
191 am__v_LEX_1 =
192
193 AM_V_YACC = $(am__v_YACC_$(V))
194 am__v_YACC_ = $(am__v_YACC_$(AM_DEFAULT_VERBOSITY))
195 am__v_YACC_0 = @echo " YACC " $@;
196 am__v_YACC_1 =
197
198 YACC_GEN = $(AM_V_YACC)$(YACC) $(YFLAGS)
199 LEX_GEN = $(AM_V_LEX)$(LEX) $(LFLAGS)
200
201 glsl/glsl_parser.cpp glsl/glsl_parser.h: glsl/glsl_parser.yy
202 $(MKDIR_GEN)
203 $(YACC_GEN) -o $@ -p "_mesa_glsl_" --defines=$(builddir)/glsl/glsl_parser.h $(srcdir)/glsl/glsl_parser.yy
204
205 glsl/glsl_lexer.cpp: glsl/glsl_lexer.ll
206 $(MKDIR_GEN)
207 $(LEX_GEN) -o $@ $(srcdir)/glsl/glsl_lexer.ll
208
209 glsl/glcpp/glcpp-parse.c glsl/glcpp/glcpp-parse.h: glsl/glcpp/glcpp-parse.y
210 $(MKDIR_GEN)
211 $(YACC_GEN) -o $@ -p "glcpp_parser_" --defines=$(builddir)/glsl/glcpp/glcpp-parse.h $(srcdir)/glsl/glcpp/glcpp-parse.y
212
213 glsl/glcpp/glcpp-lex.c: glsl/glcpp/glcpp-lex.l
214 $(MKDIR_GEN)
215 $(LEX_GEN) -o $@ $(srcdir)/glsl/glcpp/glcpp-lex.l
216
217 glsl/ir_expression_operation.h: glsl/ir_expression_operation.py
218 $(MKDIR_GEN)
219 $(PYTHON_GEN) $(srcdir)/glsl/ir_expression_operation.py enum > $@ || ($(RM) $@; false)
220
221 glsl/ir_expression_operation_constant.h: glsl/ir_expression_operation.py
222 $(MKDIR_GEN)
223 $(PYTHON_GEN) $(srcdir)/glsl/ir_expression_operation.py constant > $@ || ($(RM) $@; false)
224
225 glsl/ir_expression_operation_strings.h: glsl/ir_expression_operation.py
226 $(MKDIR_GEN)
227 $(PYTHON_GEN) $(srcdir)/glsl/ir_expression_operation.py strings > $@ || ($(RM) $@; false)
228
229 glsl/float64_glsl.h: glsl/xxd.py glsl/float64.glsl
230 $(MKDIR_GEN)
231 $(PYTHON_GEN) $(srcdir)/glsl/xxd.py $(srcdir)/glsl/float64.glsl $@ -n float64_source || ($(RM) $@; false)
232
233 # Only the parsers (specifically the header files generated at the same time)
234 # need to be in BUILT_SOURCES. Though if we list the parser headers YACC is
235 # called for the .c/.cpp file and the .h files. By listing the .c/.cpp files
236 # YACC is only executed once for each parser. The rest of the generated code
237 # will be created at the appropriate times according to standard automake
238 # dependency rules.
239 BUILT_SOURCES += \
240 glsl/float64_glsl.h \
241 glsl/glsl_parser.cpp \
242 glsl/glsl_lexer.cpp \
243 glsl/ir_expression_operation.h \
244 glsl/ir_expression_operation_constant.h \
245 glsl/ir_expression_operation_strings.h \
246 glsl/glcpp/glcpp-parse.c \
247 glsl/glcpp/glcpp-lex.c
248 CLEANFILES += \
249 glsl/float64_glsl.h \
250 glsl/glcpp/glcpp-parse.h \
251 glsl/glsl_parser.h \
252 glsl/glsl_parser.cpp \
253 glsl/glsl_lexer.cpp \
254 glsl/ir_expression_operation.h \
255 glsl/ir_expression_operation_constant.h \
256 glsl/ir_expression_operation_strings.h \
257 glsl/glcpp/glcpp-parse.c \
258 glsl/glcpp/glcpp-lex.c
259
260 clean-local:
261 $(RM) glsl/tests/lower_jumps/*.opt_test
262 $(RM) glsl/tests/lower_jumps/*.expected
263 $(RM) glsl/tests/lower_jumps/*.out
264 $(RM) glsl/tests/warnings/*.out
265 $(RM) glsl/glcpp/tests/*.out
266 $(RM) -r glsl/glcpp/tests/subtest*/
267 $(RM) -r subtest-cr subtest-cr-lf subtest-lf subtest-lf-cr
268
269 dist-hook:
270 $(RM) glsl/glcpp/tests/*.out
271 $(RM) glsl/glcpp/tests/subtest*/*.out