automake: silence folder creation
[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/invalidate_locations_test.cpp \
64 tests/general_ir_test.cpp
65 tests_general_ir_test_CFLAGS = \
66 $(PTHREAD_CFLAGS)
67 tests_general_ir_test_LDADD = \
68 $(top_builddir)/src/gtest/libgtest.la \
69 $(top_builddir)/src/glsl/libglsl.la \
70 $(PTHREAD_LIBS)
71
72 tests_uniform_initializer_test_SOURCES = \
73 $(top_srcdir)/src/mesa/main/hash_table.c \
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_uniform_initializer_test_CFLAGS = \
81 $(PTHREAD_CFLAGS)
82 tests_uniform_initializer_test_LDADD = \
83 $(top_builddir)/src/gtest/libgtest.la \
84 $(top_builddir)/src/glsl/libglsl.la \
85 $(PTHREAD_LIBS)
86
87 tests_ralloc_test_SOURCES = \
88 tests/ralloc_test.cpp \
89 $(top_builddir)/src/glsl/ralloc.c
90 tests_ralloc_test_CFLAGS = $(PTHREAD_CFLAGS)
91 tests_ralloc_test_LDADD = \
92 $(top_builddir)/src/gtest/libgtest.la \
93 $(PTHREAD_LIBS)
94
95 tests_sampler_types_test_SOURCES = \
96 $(top_srcdir)/src/mesa/program/prog_hash_table.c\
97 $(top_srcdir)/src/mesa/program/symbol_table.c \
98 tests/sampler_types_test.cpp
99 tests_sampler_types_test_CFLAGS = \
100 $(PTHREAD_CFLAGS)
101 tests_sampler_types_test_LDADD = \
102 $(top_builddir)/src/gtest/libgtest.la \
103 $(top_builddir)/src/glsl/libglsl.la \
104 $(PTHREAD_LIBS)
105
106 libglcpp_la_SOURCES = \
107 glcpp/glcpp-lex.c \
108 glcpp/glcpp-parse.c \
109 $(LIBGLCPP_FILES)
110
111 glcpp_glcpp_SOURCES = \
112 glcpp/glcpp.c \
113 $(top_srcdir)/src/mesa/program/prog_hash_table.c
114 glcpp_glcpp_LDADD = \
115 libglcpp.la \
116 -lm
117
118 libglsl_la_LIBADD = libglcpp.la
119 libglsl_la_SOURCES = \
120 glsl_lexer.cpp \
121 glsl_parser.cpp \
122 $(LIBGLSL_FILES)
123
124 glsl_compiler_SOURCES = \
125 $(top_srcdir)/src/mesa/main/hash_table.c \
126 $(top_srcdir)/src/mesa/main/imports.c \
127 $(top_srcdir)/src/mesa/program/prog_hash_table.c \
128 $(top_srcdir)/src/mesa/program/symbol_table.c \
129 $(GLSL_COMPILER_CXX_FILES)
130
131 glsl_compiler_LDADD = libglsl.la
132
133 glsl_test_SOURCES = \
134 $(top_srcdir)/src/mesa/main/hash_table.c \
135 $(top_srcdir)/src/mesa/main/imports.c \
136 $(top_srcdir)/src/mesa/program/prog_hash_table.c \
137 $(top_srcdir)/src/mesa/program/symbol_table.c \
138 $(GLSL_SRCDIR)/standalone_scaffolding.cpp \
139 test.cpp \
140 test_optpass.cpp
141
142 glsl_test_LDADD = libglsl.la
143
144 # We write our own rules for yacc and lex below. We'd rather use automake,
145 # but automake makes it especially difficult for a number of reasons:
146 #
147 # * < automake-1.12 generates .h files from .yy and .ypp files, but
148 # >=automake-1.12 generates .hh and .hpp files respectively. There's no
149 # good way of making a project that uses C++ yacc files compatible with
150 # both versions of automake. Strong work automake developers.
151 #
152 # * Since we're generating code from .l/.y files in a subdirectory (glcpp/)
153 # we'd like the resulting generated code to also go in glcpp/ for purposes
154 # of distribution. Automake gives no way to do this.
155 #
156 # * Since we're building multiple yacc parsers into one library (and via one
157 # Makefile) we have to use per-target YFLAGS. Using per-target YFLAGS causes
158 # automake to name the resulting generated code as <library-name>_filename.c.
159 # Frankly, that's ugly and we don't want a libglcpp_glcpp_parser.h file.
160
161 # In order to make build output print "LEX" and "YACC", we reproduce the
162 # automake variables below.
163
164 AM_V_LEX = $(am__v_LEX_$(V))
165 am__v_LEX_ = $(am__v_LEX_$(AM_DEFAULT_VERBOSITY))
166 am__v_LEX_0 = @echo " LEX " $@;
167 am__v_LEX_1 =
168
169 AM_V_YACC = $(am__v_YACC_$(V))
170 am__v_YACC_ = $(am__v_YACC_$(AM_DEFAULT_VERBOSITY))
171 am__v_YACC_0 = @echo " YACC " $@;
172 am__v_YACC_1 =
173
174 glsl_parser.cpp glsl_parser.h: glsl_parser.yy
175 $(AM_V_YACC) $(YACC) $(YFLAGS) -o $@ -p "_mesa_glsl_" --defines=$(GLSL_BUILDDIR)/glsl_parser.h $<
176
177 glsl_lexer.cpp: glsl_lexer.ll
178 $(AM_V_LEX) $(LEX) $(LFLAGS) -o $@ $<
179
180 glcpp/glcpp-parse.c glcpp/glcpp-parse.h: glcpp/glcpp-parse.y
181 $(AM_V_at)$(MKDIR_P) $(GLSL_BUILDDIR)/glcpp
182 $(AM_V_YACC) $(YACC) $(YFLAGS) -o $@ -p "glcpp_parser_" --defines=$(GLSL_BUILDDIR)/glcpp/glcpp-parse.h $<
183
184 glcpp/glcpp-lex.c: glcpp/glcpp-lex.l
185 $(AM_V_at)$(MKDIR_P) $(GLSL_BUILDDIR)/glcpp
186 $(AM_V_LEX) $(LEX) $(LFLAGS) -o $@ $<
187
188 # Only the parsers (specifically the header files generated at the same time)
189 # need to be in BUILT_SOURCES. Though if we list the parser headers YACC is
190 # called for the .c/.cpp file and the .h files. By listing the .c/.cpp files
191 # YACC is only executed once for each parser. The rest of the generated code
192 # will be created at the appropriate times according to standard automake
193 # dependency rules.
194 BUILT_SOURCES = \
195 glsl_parser.cpp \
196 glsl_lexer.cpp \
197 glcpp/glcpp-parse.c \
198 glcpp/glcpp-lex.c
199 CLEANFILES = \
200 glcpp/glcpp-parse.h \
201 glsl_parser.h \
202 $(BUILT_SOURCES)