nir/lower_vec_to_movs: Better report channels handled by insert_mov
[mesa.git] / src / compiler / 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)/nir \
36 $(MESA_TOP)/src/compiler/nir
37
38 LOCAL_EXPORT_C_INCLUDE_DIRS += \
39 $(intermediates)/nir \
40 $(MESA_TOP)/src/compiler/nir
41
42 LOCAL_GENERATED_SOURCES += $(addprefix $(intermediates)/, \
43 $(NIR_GENERATED_FILES))
44
45
46 nir_builder_opcodes_gen := $(LOCAL_PATH)/nir/nir_builder_opcodes_h.py
47 nir_builder_opcodes_deps := \
48 $(LOCAL_PATH)/nir/nir_opcodes.py \
49 $(LOCAL_PATH)/nir/nir_builder_opcodes_h.py
50
51 $(intermediates)/nir/nir_builder_opcodes.h: $(nir_builder_opcodes_deps)
52 @mkdir -p $(dir $@)
53 $(hide) $(MESA_PYTHON2) $(nir_builder_opcodes_gen) $< > $@
54
55 nir_constant_expressions_gen := $(LOCAL_PATH)/nir/nir_constant_expressions.py
56 nir_constant_expressions_deps := \
57 $(LOCAL_PATH)/nir/nir_opcodes.py \
58 $(LOCAL_PATH)/nir/nir_constant_expressions.py
59
60 $(intermediates)/nir/nir_constant_expressions.c: $(nir_constant_expressions_deps)
61 @mkdir -p $(dir $@)
62 $(hide) $(MESA_PYTHON2) $(nir_constant_expressions_gen) $< > $@
63
64 nir_opcodes_h_gen := $(LOCAL_PATH)/nir/nir_opcodes_h.py
65 nir_opcodes_h_deps := \
66 $(LOCAL_PATH)/nir/nir_opcodes.py \
67 $(LOCAL_PATH)/nir/nir_opcodes_h.py
68
69 $(intermediates)/nir/nir_opcodes.h: $(nir_opcodes_h_deps)
70 @mkdir -p $(dir $@)
71 $(hide) $(MESA_PYTHON2) $(nir_opcodes_h_gen) $< > $@
72
73 $(LOCAL_PATH)/nir/nir.h: $(intermediates)/nir/nir_opcodes.h
74
75 nir_opcodes_c_gen := $(LOCAL_PATH)/nir/nir_opcodes_c.py
76 nir_opcodes_c_deps := \
77 $(LOCAL_PATH)/nir/nir_opcodes.py \
78 $(LOCAL_PATH)/nir/nir_opcodes_c.py
79
80 $(intermediates)/nir/nir_opcodes.c: $(nir_opcodes_c_deps)
81 @mkdir -p $(dir $@)
82 $(hide) $(MESA_PYTHON2) $(nir_opcodes_c_gen) $< > $@
83
84 nir_opt_algebraic_gen := $(LOCAL_PATH)/nir/nir_opt_algebraic.py
85 nir_opt_algebraic_deps := \
86 $(LOCAL_PATH)/nir/nir_opt_algebraic.py \
87 $(LOCAL_PATH)/nir/nir_algebraic.py
88
89 $(intermediates)/nir/nir_opt_algebraic.c: $(nir_opt_algebraic_deps)
90 @mkdir -p $(dir $@)
91 $(hide) $(MESA_PYTHON2) $(nir_opt_algebraic_gen) $< > $@