glsl: Don't lower_variable_index_to_cond_assign for shared variables
[mesa.git] / src / glsl / Android.gen.mk
1 # Mesa 3-D graphics library
2 #
3 # Copyright (C) 2010-2011 Chia-I Wu <olvaffe@gmail.com>
4 # Copyright (C) 2010-2011 LunarG Inc.
5 #
6 # Permission is hereby granted, free of charge, to any person obtaining a
7 # copy of this software and associated documentation files (the "Software"),
8 # to deal in the Software without restriction, including without limitation
9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 # and/or sell copies of the Software, and to permit persons to whom the
11 # Software is furnished to do so, subject to the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 # DEALINGS IN THE SOFTWARE.
23
24 # included by glsl Android.mk for source generation
25
26 ifeq ($(LOCAL_MODULE_CLASS),)
27 LOCAL_MODULE_CLASS := STATIC_LIBRARIES
28 endif
29
30 intermediates := $(call local-generated-sources-dir)
31
32 LOCAL_SRC_FILES := $(LOCAL_SRC_FILES)
33
34 LOCAL_C_INCLUDES += \
35 $(intermediates)/glcpp \
36 $(intermediates)/nir \
37 $(MESA_TOP)/src/glsl/glcpp \
38 $(MESA_TOP)/src/glsl/nir
39
40 LOCAL_EXPORT_C_INCLUDE_DIRS += \
41 $(intermediates)/nir \
42 $(MESA_TOP)/src/glsl/nir
43
44 LOCAL_GENERATED_SOURCES += $(addprefix $(intermediates)/, \
45 $(LIBGLCPP_GENERATED_FILES) \
46 $(NIR_GENERATED_FILES) \
47 $(LIBGLSL_GENERATED_CXX_FILES))
48
49 define local-l-or-ll-to-c-or-cpp
50 @mkdir -p $(dir $@)
51 @echo "Mesa Lex: $(PRIVATE_MODULE) <= $<"
52 $(hide) $(LEX) --nounistd -o$@ $<
53 endef
54
55 define glsl_local-y-to-c-and-h
56 @mkdir -p $(dir $@)
57 @echo "Mesa Yacc: $(PRIVATE_MODULE) <= $<"
58 $(hide) $(YACC) -o $@ -p "glcpp_parser_" $<
59 endef
60
61 define local-yy-to-cpp-and-h
62 @mkdir -p $(dir $@)
63 @echo "Mesa Yacc: $(PRIVATE_MODULE) <= $<"
64 $(hide) $(YACC) -p "_mesa_glsl_" -o $@ $<
65 touch $(@:$1=$(YACC_HEADER_SUFFIX))
66 echo '#ifndef '$(@F:$1=_h) > $(@:$1=.h)
67 echo '#define '$(@F:$1=_h) >> $(@:$1=.h)
68 cat $(@:$1=$(YACC_HEADER_SUFFIX)) >> $(@:$1=.h)
69 echo '#endif' >> $(@:$1=.h)
70 rm -f $(@:$1=$(YACC_HEADER_SUFFIX))
71 endef
72
73 $(intermediates)/glsl_lexer.cpp: $(LOCAL_PATH)/glsl_lexer.ll
74 $(call local-l-or-ll-to-c-or-cpp)
75
76 $(intermediates)/glsl_parser.cpp: $(LOCAL_PATH)/glsl_parser.yy
77 $(call local-yy-to-cpp-and-h,.cpp)
78
79 $(intermediates)/glcpp/glcpp-lex.c: $(LOCAL_PATH)/glcpp/glcpp-lex.l
80 $(call local-l-or-ll-to-c-or-cpp)
81
82 $(intermediates)/glcpp/glcpp-parse.c: $(LOCAL_PATH)/glcpp/glcpp-parse.y
83 $(call glsl_local-y-to-c-and-h)
84
85 nir_builder_opcodes_gen := $(LOCAL_PATH)/nir/nir_builder_opcodes_h.py
86 nir_builder_opcodes_deps := \
87 $(LOCAL_PATH)/nir/nir_opcodes.py \
88 $(LOCAL_PATH)/nir/nir_builder_opcodes_h.py
89
90 $(intermediates)/nir/nir_builder_opcodes.h: $(nir_builder_opcodes_deps)
91 @mkdir -p $(dir $@)
92 $(hide) $(MESA_PYTHON2) $(nir_builder_opcodes_gen) $< > $@
93
94 nir_constant_expressions_gen := $(LOCAL_PATH)/nir/nir_constant_expressions.py
95 nir_constant_expressions_deps := \
96 $(LOCAL_PATH)/nir/nir_opcodes.py \
97 $(LOCAL_PATH)/nir/nir_constant_expressions.py
98
99 $(intermediates)/nir/nir_constant_expressions.c: $(nir_constant_expressions_deps)
100 @mkdir -p $(dir $@)
101 $(hide) $(MESA_PYTHON2) $(nir_constant_expressions_gen) $< > $@
102
103 nir_opcodes_h_gen := $(LOCAL_PATH)/nir/nir_opcodes_h.py
104 nir_opcodes_h_deps := \
105 $(LOCAL_PATH)/nir/nir_opcodes.py \
106 $(LOCAL_PATH)/nir/nir_opcodes_h.py
107
108 $(intermediates)/nir/nir_opcodes.h: $(nir_opcodes_h_deps)
109 @mkdir -p $(dir $@)
110 $(hide) $(MESA_PYTHON2) $(nir_opcodes_h_gen) $< > $@
111
112 $(LOCAL_PATH)/nir/nir.h: $(intermediates)/nir/nir_opcodes.h
113
114 nir_opcodes_c_gen := $(LOCAL_PATH)/nir/nir_opcodes_c.py
115 nir_opcodes_c_deps := \
116 $(LOCAL_PATH)/nir/nir_opcodes.py \
117 $(LOCAL_PATH)/nir/nir_opcodes_c.py
118
119 $(intermediates)/nir/nir_opcodes.c: $(nir_opcodes_c_deps)
120 @mkdir -p $(dir $@)
121 $(hide) $(MESA_PYTHON2) $(nir_opcodes_c_gen) $< > $@
122
123 nir_opt_algebraic_gen := $(LOCAL_PATH)/nir/nir_opt_algebraic.py
124 nir_opt_algebraic_deps := \
125 $(LOCAL_PATH)/nir/nir_opt_algebraic.py \
126 $(LOCAL_PATH)/nir/nir_algebraic.py
127
128 $(intermediates)/nir/nir_opt_algebraic.c: $(nir_opt_algebraic_deps)
129 @mkdir -p $(dir $@)
130 $(hide) $(MESA_PYTHON2) $(nir_opt_algebraic_gen) $< > $@