android: nir: add build rules for nir_builder_opcodes.h
[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-intermediates-dir)
31
32 sources := \
33 glsl_lexer.cpp \
34 glsl_parser.cpp \
35 glcpp/glcpp-lex.c \
36 glcpp/glcpp-parse.c \
37 nir/nir_builder_opcodes.h \
38 nir/nir_constant_expressions.c \
39 nir/nir_opcodes.c \
40 nir/nir_opcodes.h \
41 nir/nir_opt_algebraic.c
42
43 LOCAL_SRC_FILES := $(filter-out $(sources), $(LOCAL_SRC_FILES))
44
45 LOCAL_C_INCLUDES += \
46 $(intermediates) \
47 $(intermediates)/glcpp \
48 $(intermediates)/nir \
49 $(MESA_TOP)/src/glsl/glcpp \
50 $(MESA_TOP)/src/glsl/nir
51
52 LOCAL_EXPORT_C_INCLUDE_DIRS += \
53 $(intermediates)/nir
54
55 sources := $(addprefix $(intermediates)/, $(sources))
56 LOCAL_GENERATED_SOURCES += $(sources)
57
58 define local-l-or-ll-to-c-or-cpp
59 @mkdir -p $(dir $@)
60 @echo "Mesa Lex: $(PRIVATE_MODULE) <= $<"
61 $(hide) $(LEX) --nounistd -o$@ $<
62 endef
63
64 define glsl_local-y-to-c-and-h
65 @mkdir -p $(dir $@)
66 @echo "Mesa Yacc: $(PRIVATE_MODULE) <= $<"
67 $(hide) $(YACC) -o $@ -p "glcpp_parser_" $<
68 endef
69
70 define local-yy-to-cpp-and-h
71 @mkdir -p $(dir $@)
72 @echo "Mesa Yacc: $(PRIVATE_MODULE) <= $<"
73 $(hide) $(YACC) -p "_mesa_glsl_" -o $@ $<
74 touch $(@:$1=$(YACC_HEADER_SUFFIX))
75 echo '#ifndef '$(@F:$1=_h) > $(@:$1=.h)
76 echo '#define '$(@F:$1=_h) >> $(@:$1=.h)
77 cat $(@:$1=$(YACC_HEADER_SUFFIX)) >> $(@:$1=.h)
78 echo '#endif' >> $(@:$1=.h)
79 rm -f $(@:$1=$(YACC_HEADER_SUFFIX))
80 endef
81
82 $(intermediates)/glsl_lexer.cpp: $(LOCAL_PATH)/glsl_lexer.ll
83 $(call local-l-or-ll-to-c-or-cpp)
84
85 $(intermediates)/glsl_parser.cpp: $(LOCAL_PATH)/glsl_parser.yy
86 $(call local-yy-to-cpp-and-h,.cpp)
87
88 $(intermediates)/glcpp/glcpp-lex.c: $(LOCAL_PATH)/glcpp/glcpp-lex.l
89 $(call local-l-or-ll-to-c-or-cpp)
90
91 $(intermediates)/glcpp/glcpp-parse.c: $(LOCAL_PATH)/glcpp/glcpp-parse.y
92 $(call glsl_local-y-to-c-and-h)
93
94 nir_builder_opcodes_gen := $(LOCAL_PATH)/nir/nir_builder_opcodes_h.py
95 nir_builder_opcodes_deps := \
96 $(LOCAL_PATH)/nir/nir_opcodes.py \
97 $(LOCAL_PATH)/nir/nir_builder_opcodes_h.py
98
99 $(intermediates)/nir/nir_builder_opcodes.h: $(nir_builder_opcodes_deps)
100 @mkdir -p $(dir $@)
101 $(hide) $(MESA_PYTHON2) $(nir_builder_opcodes_gen) $< > $@
102
103 nir_constant_expressions_gen := $(LOCAL_PATH)/nir/nir_constant_expressions.py
104 nir_constant_expressions_deps := \
105 $(LOCAL_PATH)/nir/nir_opcodes.py \
106 $(LOCAL_PATH)/nir/nir_constant_expressions.py \
107 $(LOCAL_PATH)/nir/nir_constant_expressions.h
108
109 $(intermediates)/nir/nir_constant_expressions.c: $(nir_constant_expressions_deps)
110 @mkdir -p $(dir $@)
111 $(hide) $(MESA_PYTHON2) $(nir_constant_expressions_gen) $< > $@
112
113 nir_opcodes_h_gen := $(LOCAL_PATH)/nir/nir_opcodes_h.py
114 nir_opcodes_h_deps := \
115 $(LOCAL_PATH)/nir/nir_opcodes.py \
116 $(LOCAL_PATH)/nir/nir_opcodes_h.py
117
118 $(intermediates)/nir/nir_opcodes.h: $(nir_opcodes_h_deps)
119 @mkdir -p $(dir $@)
120 $(hide) $(MESA_PYTHON2) $(nir_opcodes_h_gen) $< > $@
121
122 $(LOCAL_PATH)/nir/nir.h: $(intermediates)/nir/nir_opcodes.h
123
124 nir_opcodes_c_gen := $(LOCAL_PATH)/nir/nir_opcodes_c.py
125 nir_opcodes_c_deps := \
126 $(LOCAL_PATH)/nir/nir_opcodes.py \
127 $(LOCAL_PATH)/nir/nir_opcodes_c.py
128
129 $(intermediates)/nir/nir_opcodes.c: $(nir_opcodes_c_deps)
130 @mkdir -p $(dir $@)
131 $(hide) $(MESA_PYTHON2) $(nir_opcodes_c_gen) $< > $@
132
133 nir_opt_algebraic_gen := $(LOCAL_PATH)/nir/nir_opt_algebraic.py
134 nir_opt_algebraic_deps := \
135 $(LOCAL_PATH)/nir/nir_opt_algebraic.py \
136 $(LOCAL_PATH)/nir/nir_algebraic.py
137
138 $(intermediates)/nir/nir_opt_algebraic.c: $(nir_opt_algebraic_deps)
139 @mkdir -p $(dir $@)
140 $(hide) $(MESA_PYTHON2) $(nir_opt_algebraic_gen) $< > $@