OSDN Git Service

e161bd8e885566b989b2aef8d1fdd398eae6114f
[android-x86/external-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_constant_expressions.c \
38         nir/nir_opcodes.c \
39         nir/nir_opcodes.h \
40         nir/nir_opt_algebraic.c
41
42 LOCAL_SRC_FILES := $(filter-out $(sources), $(LOCAL_SRC_FILES))
43
44 LOCAL_C_INCLUDES += \
45         $(intermediates) \
46         $(intermediates)/glcpp \
47         $(intermediates)/nir \
48         $(MESA_TOP)/src/glsl/glcpp \
49         $(MESA_TOP)/src/glsl/nir
50
51 LOCAL_EXPORT_C_INCLUDE_DIRS += \
52         $(intermediates)/nir
53
54 sources := $(addprefix $(intermediates)/, $(sources))
55 LOCAL_GENERATED_SOURCES += $(sources)
56
57 define local-l-or-ll-to-c-or-cpp
58         @mkdir -p $(dir $@)
59         @echo "Mesa Lex: $(PRIVATE_MODULE) <= $<"
60         $(hide) $(LEX) --nounistd -o$@ $<
61 endef
62
63 define glsl_local-y-to-c-and-h
64         @mkdir -p $(dir $@)
65         @echo "Mesa Yacc: $(PRIVATE_MODULE) <= $<"
66         $(hide) $(YACC) -o $@ -p "glcpp_parser_" $<
67 endef
68
69 define local-yy-to-cpp-and-h
70         @mkdir -p $(dir $@)
71         @echo "Mesa Yacc: $(PRIVATE_MODULE) <= $<"
72         $(hide) $(YACC) -p "_mesa_glsl_" -o $@ $<
73         touch $(@:$1=$(YACC_HEADER_SUFFIX))
74         echo '#ifndef '$(@F:$1=_h) > $(@:$1=.h)
75         echo '#define '$(@F:$1=_h) >> $(@:$1=.h)
76         cat $(@:$1=$(YACC_HEADER_SUFFIX)) >> $(@:$1=.h)
77         echo '#endif' >> $(@:$1=.h)
78         rm -f $(@:$1=$(YACC_HEADER_SUFFIX))
79 endef
80
81 $(intermediates)/glsl_lexer.cpp: $(LOCAL_PATH)/glsl_lexer.ll
82         $(call local-l-or-ll-to-c-or-cpp)
83
84 $(intermediates)/glsl_parser.cpp: $(LOCAL_PATH)/glsl_parser.yy
85         $(call local-yy-to-cpp-and-h,.cpp)
86
87 $(intermediates)/glcpp/glcpp-lex.c: $(LOCAL_PATH)/glcpp/glcpp-lex.l
88         $(call local-l-or-ll-to-c-or-cpp)
89
90 $(intermediates)/glcpp/glcpp-parse.c: $(LOCAL_PATH)/glcpp/glcpp-parse.y
91         $(call glsl_local-y-to-c-and-h)
92
93 nir_constant_expressions_gen := $(LOCAL_PATH)/nir/nir_constant_expressions.py
94 nir_constant_expressions_deps := \
95         $(LOCAL_PATH)/nir/nir_opcodes.py \
96         $(LOCAL_PATH)/nir/nir_constant_expressions.py \
97         $(LOCAL_PATH)/nir/nir_constant_expressions.h
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) $< > $@