Added few more stubs so that control reaches to DestroyDevice().
[mesa.git] / src / util / Android.mk
1 # Mesa 3-D graphics library
2 #
3 # Copyright (C) 2014 Tomasz Figa <tomasz.figa@gmail.com>
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 LOCAL_PATH := $(call my-dir)
24
25 include $(LOCAL_PATH)/Makefile.sources
26
27 # ---------------------------------------
28 # Build libmesa_util
29 # ---------------------------------------
30
31 include $(CLEAR_VARS)
32
33 LOCAL_SRC_FILES := \
34 $(MESA_UTIL_FILES) \
35 $(XMLCONFIG_FILES)
36
37 LOCAL_MODULE := libmesa_util
38
39 LOCAL_MODULE_CLASS := STATIC_LIBRARIES
40
41 intermediates := $(call local-generated-sources-dir)
42
43 LOCAL_C_INCLUDES := \
44 external/zlib \
45 $(MESA_TOP)/src/mesa \
46 $(MESA_TOP)/src/mapi \
47 $(MESA_TOP)/src/gallium/include \
48 $(MESA_TOP)/src/gallium/auxiliary \
49 $(MESA_TOP)/src/util/format \
50 $(intermediates)/format
51
52 # If Android version >=8 MESA should static link libexpat else should dynamic link
53 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 27; echo $$?), 0)
54 LOCAL_STATIC_LIBRARIES := \
55 libexpat
56 else
57 LOCAL_SHARED_LIBRARIES := \
58 libexpat
59 endif
60
61 LOCAL_SHARED_LIBRARIES += liblog
62
63 # Generated sources
64
65 LOCAL_EXPORT_C_INCLUDE_DIRS := $(intermediates)
66
67 UTIL_GENERATED_SOURCES := $(addprefix $(intermediates)/,$(MESA_UTIL_GENERATED_FILES))
68 LOCAL_GENERATED_SOURCES := $(UTIL_GENERATED_SOURCES)
69
70 format_srgb_gen := $(LOCAL_PATH)/format_srgb.py
71
72 $(intermediates)/format_srgb.c: $(format_srgb_gen)
73 @mkdir -p $(dir $@)
74 $(hide) $(MESA_PYTHON2) $(format_srgb_gen) $< > $@
75
76 u_format_gen := $(LOCAL_PATH)/format/u_format_table.py
77 u_format_deps := $(LOCAL_PATH)/format/u_format.csv \
78 $(LOCAL_PATH)/format/u_format_pack.py \
79 $(LOCAL_PATH)/format/u_format_parse.py
80
81 $(intermediates)/format/u_format_pack.h: $(u_format_deps)
82 @mkdir -p $(dir $@)
83 $(hide) $(MESA_PYTHON2) $(u_format_gen) --header $< > $@
84
85 $(intermediates)/format/u_format_table.c: $(u_format_deps)
86 @mkdir -p $(dir $@)
87 $(hide) $(MESA_PYTHON2) $(u_format_gen) $< > $@
88
89 include $(MESA_COMMON_MK)
90 include $(BUILD_STATIC_LIBRARY)