glsl: Optimize min/max expression trees
[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/glsl/glcpp \
28 -I$(top_srcdir)/src/gtest/include \
29 $(DEFINES)
30 AM_CFLAGS = $(VISIBILITY_CFLAGS)
31 AM_CXXFLAGS = $(VISIBILITY_CXXFLAGS)
32
33 include Makefile.sources
34
35 TESTS = glcpp/tests/glcpp-test \
36 glcpp/tests/glcpp-test-cr-lf \
37 tests/general-ir-test \
38 tests/optimization-test \
39 tests/sampler-types-test \
40 tests/uniform-initializer-test
41
42 TESTS_ENVIRONMENT= \
43 export PYTHON2=$(PYTHON2); \
44 export PYTHON_FLAGS=$(PYTHON_FLAGS);
45
46 noinst_LTLIBRARIES = libglsl.la libglcpp.la
47 check_PROGRAMS = \
48 glcpp/glcpp \
49 glsl_test \
50 tests/general-ir-test \
51 tests/sampler-types-test \
52 tests/uniform-initializer-test
53
54 noinst_PROGRAMS = glsl_compiler
55
56 tests_general_ir_test_SOURCES = \
57 $(top_srcdir)/src/mesa/main/imports.c \
58 $(top_srcdir)/src/mesa/program/prog_hash_table.c\
59 $(top_srcdir)/src/mesa/program/symbol_table.c \
60 $(GLSL_SRCDIR)/standalone_scaffolding.cpp \
61 tests/builtin_variable_test.cpp \
62 tests/invalidate_locations_test.cpp \
63 tests/general_ir_test.cpp \
64 tests/varyings_test.cpp \
65 tests/common.c
66 tests_general_ir_test_CFLAGS = \
67 $(PTHREAD_CFLAGS)
68 tests_general_ir_test_LDADD = \
69 $(top_builddir)/src/gtest/libgtest.la \
70 $(top_builddir)/src/glsl/libglsl.la \
71 $(PTHREAD_LIBS)
72
73 tests_uniform_initializer_test_SOURCES = \
74 $(top_srcdir)/src/mesa/main/imports.c \
75 $(top_srcdir)/src/mesa/program/prog_hash_table.c\
76 $(top_srcdir)/src/mesa/program/symbol_table.c \
77 tests/copy_constant_to_storage_tests.cpp \
78 tests/set_uniform_initializer_tests.cpp \
79 tests/uniform_initializer_utils.cpp \
80 tests/common.c
81 tests_uniform_initializer_test_CFLAGS = \
82 $(PTHREAD_CFLAGS)
83 tests_uniform_initializer_test_LDADD = \
84 $(top_builddir)/src/gtest/libgtest.la \
85 $(top_builddir)/src/glsl/libglsl.la \
86 $(PTHREAD_LIBS)
87
88 tests_sampler_types_test_SOURCES = \
89 $(top_srcdir)/src/mesa/program/prog_hash_table.c\
90 $(top_srcdir)/src/mesa/program/symbol_table.c \
91 tests/sampler_types_test.cpp \
92 tests/common.c
93 tests_sampler_types_test_CFLAGS = \
94 $(PTHREAD_CFLAGS)
95 tests_sampler_types_test_LDADD = \
96 $(top_builddir)/src/gtest/libgtest.la \
97 $(top_builddir)/src/glsl/libglsl.la \
98 $(PTHREAD_LIBS)
99
100 libglcpp_la_LIBADD = \
101 $(top_builddir)/src/util/libmesautil.la
102 libglcpp_la_SOURCES = \
103 glcpp/glcpp-lex.c \
104 glcpp/glcpp-parse.c \
105 $(LIBGLCPP_FILES)
106
107 glcpp_glcpp_SOURCES = \
108 glcpp/glcpp.c \
109 tests/common.c \
110 $(top_srcdir)/src/mesa/program/prog_hash_table.c
111 glcpp_glcpp_LDADD = \
112 libglcpp.la \
113 -lm
114
115 libglsl_la_LIBADD = libglcpp.la
116 libglsl_la_SOURCES = \
117 glsl_lexer.cpp \
118 glsl_parser.cpp \
119 $(LIBGLSL_FILES)
120
121 glsl_compiler_SOURCES = \
122 $(top_srcdir)/src/mesa/main/imports.c \
123 $(top_srcdir)/src/mesa/program/prog_hash_table.c \
124 $(top_srcdir)/src/mesa/program/symbol_table.c \
125 $(GLSL_COMPILER_CXX_FILES)
126
127 glsl_compiler_LDADD = \
128 libglsl.la \
129 $(PTHREAD_LIBS)
130
131 glsl_test_SOURCES = \
132 $(top_srcdir)/src/mesa/main/imports.c \
133 $(top_srcdir)/src/mesa/program/prog_hash_table.c \
134 $(top_srcdir)/src/mesa/program/symbol_table.c \
135 $(GLSL_SRCDIR)/standalone_scaffolding.cpp \
136 tests/common.c \
137 test.cpp \
138 test_optpass.cpp
139
140 glsl_test_LDADD = libglsl.la
141
142 # We write our own rules for yacc and lex below. We'd rather use automake,
143 # but automake makes it especially difficult for a number of reasons:
144 #
145 # * < automake-1.12 generates .h files from .yy and .ypp files, but
146 # >=automake-1.12 generates .hh and .hpp files respectively. There's no
147 # good way of making a project that uses C++ yacc files compatible with
148 # both versions of automake. Strong work automake developers.
149 #
150 # * Since we're generating code from .l/.y files in a subdirectory (glcpp/)
151 # we'd like the resulting generated code to also go in glcpp/ for purposes
152 # of distribution. Automake gives no way to do this.
153 #
154 # * Since we're building multiple yacc parsers into one library (and via one
155 # Makefile) we have to use per-target YFLAGS. Using per-target YFLAGS causes
156 # automake to name the resulting generated code as <library-name>_filename.c.
157 # Frankly, that's ugly and we don't want a libglcpp_glcpp_parser.h file.
158
159 # In order to make build output print "LEX" and "YACC", we reproduce the
160 # automake variables below.
161
162 AM_V_LEX = $(am__v_LEX_$(V))
163 am__v_LEX_ = $(am__v_LEX_$(AM_DEFAULT_VERBOSITY))
164 am__v_LEX_0 = @echo " LEX " $@;
165 am__v_LEX_1 =
166
167 AM_V_YACC = $(am__v_YACC_$(V))
168 am__v_YACC_ = $(am__v_YACC_$(AM_DEFAULT_VERBOSITY))
169 am__v_YACC_0 = @echo " YACC " $@;
170 am__v_YACC_1 =
171
172 glsl_parser.cpp glsl_parser.h: glsl_parser.yy
173 $(AM_V_YACC) $(YACC) $(YFLAGS) -o $@ -p "_mesa_glsl_" --defines=$(GLSL_BUILDDIR)/glsl_parser.h $<
174
175 glsl_lexer.cpp: glsl_lexer.ll
176 $(AM_V_LEX) $(LEX) $(LFLAGS) -o $@ $<
177
178 glcpp/glcpp-parse.c glcpp/glcpp-parse.h: glcpp/glcpp-parse.y
179 $(AM_V_at)$(MKDIR_P) glcpp
180 $(AM_V_YACC) $(YACC) $(YFLAGS) -o $@ -p "glcpp_parser_" --defines=$(GLSL_BUILDDIR)/glcpp/glcpp-parse.h $<
181
182 glcpp/glcpp-lex.c: glcpp/glcpp-lex.l
183 $(AM_V_at)$(MKDIR_P) glcpp
184 $(AM_V_LEX) $(LEX) $(LFLAGS) -o $@ $<
185
186 # Only the parsers (specifically the header files generated at the same time)
187 # need to be in BUILT_SOURCES. Though if we list the parser headers YACC is
188 # called for the .c/.cpp file and the .h files. By listing the .c/.cpp files
189 # YACC is only executed once for each parser. The rest of the generated code
190 # will be created at the appropriate times according to standard automake
191 # dependency rules.
192 BUILT_SOURCES = \
193 glsl_parser.cpp \
194 glsl_lexer.cpp \
195 glcpp/glcpp-parse.c \
196 glcpp/glcpp-lex.c
197 CLEANFILES = \
198 glcpp/glcpp-parse.h \
199 glsl_parser.h \
200 $(BUILT_SOURCES)