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