i965/fs: Get rid of an unused variable in emit_barrier()
[mesa.git] / src / glsl / Makefile.am
1 # Copyright © 2012 Jon TURNEY
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 AUTOMAKE_OPTIONS = subdir-objects
23
24 AM_CPPFLAGS = \
25 -I$(top_srcdir)/include \
26 -I$(top_srcdir)/src \
27 -I$(top_srcdir)/src/mapi \
28 -I$(top_srcdir)/src/mesa/ \
29 -I$(top_srcdir)/src/gallium/include \
30 -I$(top_srcdir)/src/gallium/auxiliary \
31 -I$(top_srcdir)/src/glsl/glcpp \
32 -I$(top_srcdir)/src/glsl/nir \
33 -I$(top_srcdir)/src/gtest/include \
34 -I$(top_builddir)/src/glsl/nir \
35 $(DEFINES)
36 AM_CFLAGS = \
37 $(VISIBILITY_CFLAGS) \
38 $(MSVC2013_COMPAT_CFLAGS)
39 AM_CXXFLAGS = \
40 $(VISIBILITY_CXXFLAGS) \
41 $(MSVC2013_COMPAT_CXXFLAGS)
42
43 EXTRA_DIST = tests glcpp/tests README TODO glcpp/README \
44 glsl_lexer.ll \
45 glsl_parser.yy \
46 glcpp/glcpp-lex.l \
47 glcpp/glcpp-parse.y \
48 nir/nir_algebraic.py \
49 nir/nir_builder_opcodes_h.py \
50 nir/nir_constant_expressions.py \
51 nir/nir_opcodes.py \
52 nir/nir_opcodes_c.py \
53 nir/nir_opcodes_h.py \
54 nir/nir_opt_algebraic.py \
55 SConscript
56
57 include Makefile.sources
58
59 TESTS = glcpp/tests/glcpp-test \
60 glcpp/tests/glcpp-test-cr-lf \
61 tests/blob-test \
62 tests/general-ir-test \
63 tests/optimization-test \
64 tests/sampler-types-test \
65 tests/uniform-initializer-test
66
67 TESTS_ENVIRONMENT= \
68 export PYTHON2=$(PYTHON2); \
69 export PYTHON_FLAGS=$(PYTHON_FLAGS);
70
71 noinst_LTLIBRARIES = libnir.la libglsl.la libglcpp.la
72 check_PROGRAMS = \
73 glcpp/glcpp \
74 glsl_test \
75 tests/blob-test \
76 tests/general-ir-test \
77 tests/sampler-types-test \
78 tests/uniform-initializer-test
79
80 noinst_PROGRAMS = glsl_compiler
81
82 tests_blob_test_SOURCES = \
83 tests/blob_test.c
84 tests_blob_test_LDADD = \
85 $(top_builddir)/src/glsl/libglsl.la
86
87 tests_general_ir_test_SOURCES = \
88 standalone_scaffolding.cpp \
89 tests/builtin_variable_test.cpp \
90 tests/invalidate_locations_test.cpp \
91 tests/general_ir_test.cpp \
92 tests/varyings_test.cpp
93 tests_general_ir_test_CFLAGS = \
94 $(PTHREAD_CFLAGS)
95 tests_general_ir_test_LDADD = \
96 $(top_builddir)/src/gtest/libgtest.la \
97 $(top_builddir)/src/glsl/libglsl.la \
98 $(top_builddir)/src/libglsl_util.la \
99 $(PTHREAD_LIBS)
100
101 tests_uniform_initializer_test_SOURCES = \
102 tests/copy_constant_to_storage_tests.cpp \
103 tests/set_uniform_initializer_tests.cpp \
104 tests/uniform_initializer_utils.cpp \
105 tests/uniform_initializer_utils.h
106 tests_uniform_initializer_test_CFLAGS = \
107 $(PTHREAD_CFLAGS)
108 tests_uniform_initializer_test_LDADD = \
109 $(top_builddir)/src/gtest/libgtest.la \
110 $(top_builddir)/src/glsl/libglsl.la \
111 $(top_builddir)/src/libglsl_util.la \
112 $(PTHREAD_LIBS)
113
114 tests_sampler_types_test_SOURCES = \
115 tests/sampler_types_test.cpp
116 tests_sampler_types_test_CFLAGS = \
117 $(PTHREAD_CFLAGS)
118 tests_sampler_types_test_LDADD = \
119 $(top_builddir)/src/gtest/libgtest.la \
120 $(top_builddir)/src/glsl/libglsl.la \
121 $(top_builddir)/src/libglsl_util.la \
122 $(PTHREAD_LIBS)
123
124 libglcpp_la_LIBADD = \
125 $(top_builddir)/src/util/libmesautil.la
126 libglcpp_la_SOURCES = \
127 glcpp/glcpp-lex.c \
128 glcpp/glcpp-parse.c \
129 glcpp/glcpp-parse.h \
130 $(LIBGLCPP_FILES)
131
132 glcpp_glcpp_SOURCES = \
133 glcpp/glcpp.c
134 glcpp_glcpp_LDADD = \
135 libglcpp.la \
136 $(top_builddir)/src/libglsl_util.la \
137 -lm
138
139 libglsl_la_LIBADD = libglcpp.la
140 libglsl_la_SOURCES = \
141 glsl_lexer.cpp \
142 glsl_parser.cpp \
143 glsl_parser.h \
144 $(LIBGLSL_FILES) \
145 $(NIR_FILES)
146
147 libnir_la_SOURCES = \
148 glsl_types.cpp \
149 builtin_types.cpp \
150 glsl_symbol_table.cpp \
151 $(NIR_FILES)
152
153 glsl_compiler_SOURCES = \
154 $(GLSL_COMPILER_CXX_FILES)
155
156 glsl_compiler_LDADD = \
157 libglsl.la \
158 $(top_builddir)/src/libglsl_util.la \
159 $(PTHREAD_LIBS)
160
161 glsl_test_SOURCES = \
162 standalone_scaffolding.cpp \
163 test.cpp \
164 test_optpass.cpp \
165 test_optpass.h
166
167 glsl_test_LDADD = \
168 libglsl.la \
169 $(top_builddir)/src/libglsl_util.la \
170 $(PTHREAD_LIBS)
171
172 # We write our own rules for yacc and lex below. We'd rather use automake,
173 # but automake makes it especially difficult for a number of reasons:
174 #
175 # * < automake-1.12 generates .h files from .yy and .ypp files, but
176 # >=automake-1.12 generates .hh and .hpp files respectively. There's no
177 # good way of making a project that uses C++ yacc files compatible with
178 # both versions of automake. Strong work automake developers.
179 #
180 # * Since we're generating code from .l/.y files in a subdirectory (glcpp/)
181 # we'd like the resulting generated code to also go in glcpp/ for purposes
182 # of distribution. Automake gives no way to do this.
183 #
184 # * Since we're building multiple yacc parsers into one library (and via one
185 # Makefile) we have to use per-target YFLAGS. Using per-target YFLAGS causes
186 # automake to name the resulting generated code as <library-name>_filename.c.
187 # Frankly, that's ugly and we don't want a libglcpp_glcpp_parser.h file.
188
189 # In order to make build output print "LEX" and "YACC", we reproduce the
190 # automake variables below.
191
192 AM_V_LEX = $(am__v_LEX_$(V))
193 am__v_LEX_ = $(am__v_LEX_$(AM_DEFAULT_VERBOSITY))
194 am__v_LEX_0 = @echo " LEX " $@;
195 am__v_LEX_1 =
196
197 AM_V_YACC = $(am__v_YACC_$(V))
198 am__v_YACC_ = $(am__v_YACC_$(AM_DEFAULT_VERBOSITY))
199 am__v_YACC_0 = @echo " YACC " $@;
200 am__v_YACC_1 =
201
202 glsl_parser.cpp glsl_parser.h: glsl_parser.yy
203 $(AM_V_YACC) $(YACC) $(YFLAGS) -o $@ -p "_mesa_glsl_" --defines=$(builddir)/glsl_parser.h $<
204
205 glsl_lexer.cpp: glsl_lexer.ll
206 $(AM_V_LEX) $(LEX) $(LFLAGS) -o $@ $<
207
208 glcpp/glcpp-parse.c glcpp/glcpp-parse.h: glcpp/glcpp-parse.y
209 $(AM_V_at)$(MKDIR_P) glcpp
210 $(AM_V_YACC) $(YACC) $(YFLAGS) -o $@ -p "glcpp_parser_" --defines=$(builddir)/glcpp/glcpp-parse.h $<
211
212 glcpp/glcpp-lex.c: glcpp/glcpp-lex.l
213 $(AM_V_at)$(MKDIR_P) glcpp
214 $(AM_V_LEX) $(LEX) $(LFLAGS) -o $@ $<
215
216 # Only the parsers (specifically the header files generated at the same time)
217 # need to be in BUILT_SOURCES. Though if we list the parser headers YACC is
218 # called for the .c/.cpp file and the .h files. By listing the .c/.cpp files
219 # YACC is only executed once for each parser. The rest of the generated code
220 # will be created at the appropriate times according to standard automake
221 # dependency rules.
222 BUILT_SOURCES = \
223 glsl_parser.cpp \
224 glsl_lexer.cpp \
225 glcpp/glcpp-parse.c \
226 glcpp/glcpp-lex.c \
227 nir/nir_builder_opcodes.h \
228 nir/nir_constant_expressions.c \
229 nir/nir_opcodes.c \
230 nir/nir_opcodes.h \
231 nir/nir_opt_algebraic.c
232 CLEANFILES = \
233 glcpp/glcpp-parse.h \
234 glsl_parser.h \
235 $(BUILT_SOURCES)
236
237 clean-local:
238 $(RM) -r subtest-cr subtest-cr-lf subtest-lf subtest-lf-cr
239
240 dist-hook:
241 $(RM) glcpp/tests/*.out
242 $(RM) glcpp/tests/subtest*/*.out
243
244 nir/nir_builder_opcodes.h: nir/nir_opcodes.py nir/nir_builder_opcodes_h.py
245 $(AM_V_at)$(MKDIR_P) nir
246 $(AM_V_GEN)$(PYTHON2) $(PYTHON_FLAGS) $(srcdir)/nir/nir_builder_opcodes_h.py > $@
247
248 nir/nir_constant_expressions.c: nir/nir_opcodes.py nir/nir_constant_expressions.py nir/nir_constant_expressions.h
249 $(AM_V_at)$(MKDIR_P) nir
250 $(AM_V_GEN)$(PYTHON2) $(PYTHON_FLAGS) $(srcdir)/nir/nir_constant_expressions.py > $@
251
252 nir/nir_opcodes.h: nir/nir_opcodes.py nir/nir_opcodes_h.py
253 $(AM_V_at)$(MKDIR_P) nir
254 $(AM_V_GEN)$(PYTHON2) $(PYTHON_FLAGS) $(srcdir)/nir/nir_opcodes_h.py > $@
255
256 nir/nir_opcodes.c: nir/nir_opcodes.py nir/nir_opcodes_c.py
257 $(AM_V_at)$(MKDIR_P) nir
258 $(AM_V_GEN)$(PYTHON2) $(PYTHON_FLAGS) $(srcdir)/nir/nir_opcodes_c.py > $@
259
260 nir/nir_opt_algebraic.c: nir/nir_opt_algebraic.py nir/nir_algebraic.py
261 $(AM_V_at)$(MKDIR_P) nir
262 $(AM_V_GEN)$(PYTHON2) $(PYTHON_FLAGS) $(srcdir)/nir/nir_opt_algebraic.py > $@