ir3: Validate bindless samp_tex correctly
[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/ir3 \
46 $(intermediates)/ir3
47
48 # We need libmesa_nir to get NIR's generated include directories.
49 LOCAL_STATIC_LIBRARIES := \
50 libmesa_nir
51
52 LOCAL_GENERATED_SOURCES := \
53 $(MESA_GEN_GLSL_H) \
54 $(MESA_GEN_NIR_H)
55
56 LOCAL_GENERATED_SOURCES += $(addprefix $(intermediates)/, \
57 $(ir3_GENERATED_FILES))
58
59 ir3_lexer_deps := \
60 $(MESA_TOP)/src/freedreno/ir3/ir3_lexer.l
61
62 ir3_nir_imul_deps := \
63 $(MESA_TOP)/src/freedreno/ir3/ir3_nir_imul.py \
64 $(MESA_TOP)/src/compiler/nir/nir_algebraic.py
65
66 ir3_nir_trig_deps := \
67 $(MESA_TOP)/src/freedreno/ir3/ir3_nir_trig.py \
68 $(MESA_TOP)/src/compiler/nir/nir_algebraic.py
69
70 ir3_parser_deps := \
71 $(MESA_TOP)/src/freedreno/ir3/ir3_parser.y
72
73 $(intermediates)/ir3/ir3_lexer.c: $(ir3_lexer_deps)
74 @mkdir -p $(dir $@)
75 @echo "Gen Header: $(PRIVATE_MODULE) <= $(notdir $(@))"
76 $(hide) $(MESA_LEX) -o $@ $<
77
78 $(intermediates)/ir3/ir3_nir_imul.c: $(ir3_nir_imul_deps)
79 @mkdir -p $(dir $@)
80 $(hide) $(MESA_PYTHON2) $< -p $(MESA_TOP)/src/compiler/nir > $@
81
82 $(intermediates)/ir3/ir3_nir_trig.c: $(ir3_nir_trig_deps)
83 @mkdir -p $(dir $@)
84 $(hide) $(MESA_PYTHON2) $< -p $(MESA_TOP)/src/compiler/nir > $@
85
86 $(intermediates)/ir3/ir3_parser.c: $(ir3_parser_deps)
87 @mkdir -p $(dir $@)
88 @echo "Gen Header: $(PRIVATE_MODULE) <= $(notdir $(@))"
89 $(hide) $(BISON) $< --name-prefix=ir3_yy --output=$@
90
91 $(intermediates)/ir3/ir3_parser.h: $(ir3_parser_deps)
92 @mkdir -p $(dir $@)
93 @echo "Gen Header: $(PRIVATE_MODULE) <= $(notdir $(@))"
94 $(hide) $(BISON) $< --name-prefix=ir3_yy --defines=$@
95
96 include $(MESA_COMMON_MK)
97 include $(BUILD_STATIC_LIBRARY)