freedreno/crashdec: handle section name typos
[mesa.git] / src / freedreno / Android.ir3.mk
1 # Mesa 3-D graphics library
2 #
3 # Copyright (C)
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining a
6 # copy of this software and associated documentation files (the "Software"),
7 # to deal in the Software without restriction, including without limitation
8 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 # and/or sell copies of the Software, and to permit persons to whom the
10 # Software is furnished to do so, subject to the following conditions:
11 #
12 # The above copyright notice and this permission notice shall be included
13 # in all copies or substantial portions of the Software.
14 #
15 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 # DEALINGS IN THE SOFTWARE.
22
23 # Android.mk for libfreedreno_ir3.a
24
25 # ---------------------------------------
26 # Build libfreedreno_ir3
27 # ---------------------------------------
28
29 include $(CLEAR_VARS)
30
31 LOCAL_SRC_FILES := \
32 $(ir3_SOURCES)
33
34 LOCAL_MODULE := libfreedreno_ir3
35
36 LOCAL_MODULE_CLASS := STATIC_LIBRARIES
37
38 intermediates := $(call local-generated-sources-dir)
39
40 LOCAL_C_INCLUDES := \
41 $(MESA_TOP)/src/compiler/nir \
42 $(MESA_TOP)/src/gallium/include \
43 $(MESA_TOP)/src/gallium/auxiliary \
44 $(MESA_TOP)/prebuilt-intermediates/nir \
45 $(MESA_TOP)/src/freedreno/common \
46 $(MESA_TOP)/src/freedreno/ir3 \
47 $(intermediates)/ir3
48
49 # We need libmesa_nir to get NIR's generated include directories.
50 LOCAL_STATIC_LIBRARIES := \
51 libmesa_nir
52
53 LOCAL_GENERATED_SOURCES := \
54 $(MESA_GEN_GLSL_H) \
55 $(MESA_GEN_NIR_H)
56
57 LOCAL_GENERATED_SOURCES += $(addprefix $(intermediates)/, \
58 $(ir3_GENERATED_FILES))
59
60 ir3_lexer_deps := \
61 $(MESA_TOP)/src/freedreno/ir3/ir3_lexer.l
62
63 ir3_nir_imul_deps := \
64 $(MESA_TOP)/src/freedreno/ir3/ir3_nir_imul.py \
65 $(MESA_TOP)/src/compiler/nir/nir_algebraic.py
66
67 ir3_nir_trig_deps := \
68 $(MESA_TOP)/src/freedreno/ir3/ir3_nir_trig.py \
69 $(MESA_TOP)/src/compiler/nir/nir_algebraic.py
70
71 ir3_parser_deps := \
72 $(MESA_TOP)/src/freedreno/ir3/ir3_parser.y
73
74 $(intermediates)/ir3/ir3_lexer.c: $(ir3_lexer_deps)
75 @mkdir -p $(dir $@)
76 @echo "Gen Header: $(PRIVATE_MODULE) <= $(notdir $(@))"
77 $(hide) $(MESA_LEX) -o $@ $<
78
79 $(intermediates)/ir3/ir3_nir_imul.c: $(ir3_nir_imul_deps)
80 @mkdir -p $(dir $@)
81 $(hide) $(MESA_PYTHON2) $< -p $(MESA_TOP)/src/compiler/nir > $@
82
83 $(intermediates)/ir3/ir3_nir_trig.c: $(ir3_nir_trig_deps)
84 @mkdir -p $(dir $@)
85 $(hide) $(MESA_PYTHON2) $< -p $(MESA_TOP)/src/compiler/nir > $@
86
87 $(intermediates)/ir3/ir3_parser.c: $(ir3_parser_deps)
88 @mkdir -p $(dir $@)
89 @echo "Gen Header: $(PRIVATE_MODULE) <= $(notdir $(@))"
90 $(hide) $(BISON) $< --name-prefix=ir3_yy --output=$@
91
92 $(intermediates)/ir3/ir3_parser.h: $(ir3_parser_deps)
93 @mkdir -p $(dir $@)
94 @echo "Gen Header: $(PRIVATE_MODULE) <= $(notdir $(@))"
95 $(hide) $(BISON) $< --name-prefix=ir3_yy --defines=$@
96
97 include $(MESA_COMMON_MK)
98 include $(BUILD_STATIC_LIBRARY)