android: freedreno/ir3: add missing generated sources and rules
[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/ir3_lexer.c ir3/ir3_parser.c ir3/ir3_parser.h)
58
59 ir3_lexer_deps := \
60 $(MESA_TOP)/src/freedreno/ir3/ir3_lexer.l
61
62 ir3_parser_deps := \
63 $(MESA_TOP)/src/freedreno/ir3/ir3_parser.y
64
65 $(intermediates)/ir3/ir3_lexer.c: $(ir3_lexer_deps)
66 @mkdir -p $(dir $@)
67 @echo "Gen Header: $(PRIVATE_MODULE) <= $(notdir $(@))"
68 $(hide) flex -o $@ $<
69
70 $(intermediates)/ir3/ir3_parser.c: $(ir3_parser_deps)
71 @mkdir -p $(dir $@)
72 @echo "Gen Header: $(PRIVATE_MODULE) <= $(notdir $(@))"
73 $(hide) bison $< --name-prefix=ir3_yy --output=$@
74
75 $(intermediates)/ir3/ir3_parser.h: $(ir3_parser_deps)
76 @mkdir -p $(dir $@)
77 @echo "Gen Header: $(PRIVATE_MODULE) <= $(notdir $(@))"
78 $(hide) bison $< --name-prefix=ir3_yy --defines=$@
79
80 include $(MESA_COMMON_MK)
81 include $(BUILD_STATIC_LIBRARY)