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