glsl: fix heap-buffer-overflow
[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 SConscript.glsl
32
33 TESTS += glsl/glcpp/tests/glcpp-test \
34 glsl/glcpp/tests/glcpp-test-cr-lf \
35 glsl/tests/blob-test \
36 glsl/tests/cache-test \
37 glsl/tests/general-ir-test \
38 glsl/tests/optimization-test \
39 glsl/tests/sampler-types-test \
40 glsl/tests/uniform-initializer-test \
41 glsl/tests/warnings-test
42
43 TESTS_ENVIRONMENT= \
44 export PYTHON2=$(PYTHON2); \
45 export PYTHON_FLAGS=$(PYTHON_FLAGS);
46
47 check_PROGRAMS += \
48 glsl/glcpp/glcpp \
49 glsl/glsl_test \
50 glsl/tests/blob-test \
51 glsl/tests/cache-test \
52 glsl/tests/general-ir-test \
53 glsl/tests/sampler-types-test \
54 glsl/tests/uniform-initializer-test
55
56 noinst_PROGRAMS = glsl_compiler
57
58 glsl_tests_blob_test_SOURCES = \
59 glsl/tests/blob_test.c
60 glsl_tests_blob_test_LDADD = \
61 glsl/libglsl.la
62
63 glsl_tests_cache_test_SOURCES = \
64 glsl/tests/cache_test.c
65 glsl_tests_cache_test_CFLAGS = \
66 $(PTHREAD_CFLAGS)
67 glsl_tests_cache_test_LDADD = \
68 glsl/libglsl.la \
69 $(PTHREAD_LIBS)
70
71 glsl_tests_general_ir_test_SOURCES = \
72 glsl/tests/array_refcount_test.cpp \
73 glsl/tests/builtin_variable_test.cpp \
74 glsl/tests/invalidate_locations_test.cpp \
75 glsl/tests/general_ir_test.cpp \
76 glsl/tests/lower_int64_test.cpp \
77 glsl/tests/opt_add_neg_to_sub_test.cpp \
78 glsl/tests/varyings_test.cpp
79 glsl_tests_general_ir_test_CFLAGS = \
80 $(PTHREAD_CFLAGS)
81 glsl_tests_general_ir_test_LDADD = \
82 $(top_builddir)/src/gtest/libgtest.la \
83 glsl/libglsl.la \
84 glsl/libstandalone.la \
85 $(top_builddir)/src/libglsl_util.la \
86 $(PTHREAD_LIBS)
87
88 glsl_tests_uniform_initializer_test_SOURCES = \
89 glsl/tests/copy_constant_to_storage_tests.cpp \
90 glsl/tests/set_uniform_initializer_tests.cpp \
91 glsl/tests/uniform_initializer_utils.cpp \
92 glsl/tests/uniform_initializer_utils.h
93 glsl_tests_uniform_initializer_test_CFLAGS = \
94 $(PTHREAD_CFLAGS)
95 glsl_tests_uniform_initializer_test_LDADD = \
96 $(top_builddir)/src/gtest/libgtest.la \
97 glsl/libglsl.la \
98 $(top_builddir)/src/libglsl_util.la \
99 $(PTHREAD_LIBS)
100
101 glsl_tests_sampler_types_test_SOURCES = \
102 glsl/tests/sampler_types_test.cpp
103 glsl_tests_sampler_types_test_CFLAGS = \
104 $(PTHREAD_CFLAGS)
105 glsl_tests_sampler_types_test_LDADD = \
106 $(top_builddir)/src/gtest/libgtest.la \
107 glsl/libglsl.la \
108 $(top_builddir)/src/libglsl_util.la \
109 $(PTHREAD_LIBS)
110
111 noinst_LTLIBRARIES += glsl/libglsl.la glsl/libglcpp.la glsl/libstandalone.la
112
113 glsl_libglcpp_la_LIBADD = \
114 $(top_builddir)/src/util/libmesautil.la
115 glsl_libglcpp_la_SOURCES = \
116 glsl/glcpp/glcpp-lex.c \
117 glsl/glcpp/glcpp-parse.c \
118 glsl/glcpp/glcpp-parse.h \
119 $(LIBGLCPP_FILES)
120
121 glsl_glcpp_glcpp_SOURCES = \
122 glsl/glcpp/glcpp.c
123 glsl_glcpp_glcpp_LDADD = \
124 glsl/libglcpp.la \
125 $(top_builddir)/src/libglsl_util.la \
126 -lm
127
128 glsl_libglsl_la_LIBADD = \
129 nir/libnir.la \
130 glsl/libglcpp.la
131
132 glsl_libglsl_la_SOURCES = \
133 $(LIBGLSL_GENERATED_FILES) \
134 $(LIBGLSL_FILES)
135
136 glsl_libstandalone_la_SOURCES = \
137 $(GLSL_COMPILER_CXX_FILES)
138
139 glsl_libstandalone_la_LIBADD = \
140 glsl/libglsl.la \
141 $(top_builddir)/src/libglsl_util.la \
142 $(top_builddir)/src/util/libmesautil.la \
143 $(PTHREAD_LIBS)
144
145 glsl_compiler_SOURCES = \
146 glsl/main.cpp
147
148 glsl_compiler_LDADD = \
149 glsl/libstandalone.la
150
151 glsl_glsl_test_SOURCES = \
152 glsl/test.cpp \
153 glsl/test_optpass.cpp \
154 glsl/test_optpass.h
155
156 glsl_glsl_test_LDADD = \
157 glsl/libglsl.la \
158 glsl/libstandalone.la \
159 $(top_builddir)/src/libglsl_util.la \
160 $(PTHREAD_LIBS)
161
162 # We write our own rules for yacc and lex below. We'd rather use automake,
163 # but automake makes it especially difficult for a number of reasons:
164 #
165 # * < automake-1.12 generates .h files from .yy and .ypp files, but
166 # >=automake-1.12 generates .hh and .hpp files respectively. There's no
167 # good way of making a project that uses C++ yacc files compatible with
168 # both versions of automake. Strong work automake developers.
169 #
170 # * Since we're generating code from .l/.y files in a subdirectory (glcpp/)
171 # we'd like the resulting generated code to also go in glcpp/ for purposes
172 # of distribution. Automake gives no way to do this.
173 #
174 # * Since we're building multiple yacc parsers into one library (and via one
175 # Makefile) we have to use per-target YFLAGS. Using per-target YFLAGS causes
176 # automake to name the resulting generated code as <library-name>_filename.c.
177 # Frankly, that's ugly and we don't want a libglcpp_glcpp_parser.h file.
178
179 # In order to make build output print "LEX" and "YACC", we reproduce the
180 # automake variables below.
181
182 AM_V_LEX = $(am__v_LEX_$(V))
183 am__v_LEX_ = $(am__v_LEX_$(AM_DEFAULT_VERBOSITY))
184 am__v_LEX_0 = @echo " LEX " $@;
185 am__v_LEX_1 =
186
187 AM_V_YACC = $(am__v_YACC_$(V))
188 am__v_YACC_ = $(am__v_YACC_$(AM_DEFAULT_VERBOSITY))
189 am__v_YACC_0 = @echo " YACC " $@;
190 am__v_YACC_1 =
191
192 YACC_GEN = $(AM_V_YACC)$(YACC) $(YFLAGS)
193 LEX_GEN = $(AM_V_LEX)$(LEX) $(LFLAGS)
194
195 glsl/glsl_parser.cpp glsl/glsl_parser.h: glsl/glsl_parser.yy
196 $(MKDIR_GEN)
197 $(YACC_GEN) -o $@ -p "_mesa_glsl_" --defines=$(builddir)/glsl/glsl_parser.h $(srcdir)/glsl/glsl_parser.yy
198
199 glsl/glsl_lexer.cpp: glsl/glsl_lexer.ll
200 $(MKDIR_GEN)
201 $(LEX_GEN) -o $@ $(srcdir)/glsl/glsl_lexer.ll
202
203 glsl/glcpp/glcpp-parse.c glsl/glcpp/glcpp-parse.h: glsl/glcpp/glcpp-parse.y
204 $(MKDIR_GEN)
205 $(YACC_GEN) -o $@ -p "glcpp_parser_" --defines=$(builddir)/glsl/glcpp/glcpp-parse.h $(srcdir)/glsl/glcpp/glcpp-parse.y
206
207 glsl/glcpp/glcpp-lex.c: glsl/glcpp/glcpp-lex.l
208 $(MKDIR_GEN)
209 $(LEX_GEN) -o $@ $(srcdir)/glsl/glcpp/glcpp-lex.l
210
211 glsl/ir_expression_operation.h: glsl/ir_expression_operation.py
212 $(MKDIR_GEN)
213 $(PYTHON_GEN) $(srcdir)/glsl/ir_expression_operation.py enum > $@ || ($(RM) $@; false)
214
215 glsl/ir_expression_operation_constant.h: glsl/ir_expression_operation.py
216 $(MKDIR_GEN)
217 $(PYTHON_GEN) $(srcdir)/glsl/ir_expression_operation.py constant > $@ || ($(RM) $@; false)
218
219 glsl/ir_expression_operation_strings.h: glsl/ir_expression_operation.py
220 $(MKDIR_GEN)
221 $(PYTHON_GEN) $(srcdir)/glsl/ir_expression_operation.py strings > $@ || ($(RM) $@; false)
222
223 # Only the parsers (specifically the header files generated at the same time)
224 # need to be in BUILT_SOURCES. Though if we list the parser headers YACC is
225 # called for the .c/.cpp file and the .h files. By listing the .c/.cpp files
226 # YACC is only executed once for each parser. The rest of the generated code
227 # will be created at the appropriate times according to standard automake
228 # dependency rules.
229 BUILT_SOURCES += \
230 glsl/glsl_parser.cpp \
231 glsl/glsl_lexer.cpp \
232 glsl/ir_expression_operation.h \
233 glsl/ir_expression_operation_constant.h \
234 glsl/ir_expression_operation_strings.h \
235 glsl/glcpp/glcpp-parse.c \
236 glsl/glcpp/glcpp-lex.c
237 CLEANFILES += \
238 glsl/glcpp/glcpp-parse.h \
239 glsl/glsl_parser.h \
240 glsl/glsl_parser.cpp \
241 glsl/glsl_lexer.cpp \
242 glsl/ir_expression_operation.h \
243 glsl/ir_expression_operation_constant.h \
244 glsl/ir_expression_operation_strings.h \
245 glsl/glcpp/glcpp-parse.c \
246 glsl/glcpp/glcpp-lex.c
247
248 clean-local:
249 $(RM) -r subtest-cr subtest-cr-lf subtest-lf subtest-lf-cr
250
251 dist-hook:
252 $(RM) glsl/glcpp/tests/*.out
253 $(RM) glsl/glcpp/tests/subtest*/*.out