radeonsi: use radeonsi_clamp_div_by_zero for SPECviewperf13, Road Redemption
[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_C_INCLUDES := \
38 external/zlib \
39 $(MESA_TOP)/src/mesa \
40 $(MESA_TOP)/src/mapi \
41 $(MESA_TOP)/src/gallium/include \
42 $(MESA_TOP)/src/gallium/auxiliary \
43 $(MESA_TOP)/src/util/format
44
45 # If Android version >=8 MESA should static link libexpat else should dynamic link
46 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 27; echo $$?), 0)
47 LOCAL_STATIC_LIBRARIES := \
48 libexpat
49 else
50 LOCAL_SHARED_LIBRARIES := \
51 libexpat
52 endif
53
54 LOCAL_SHARED_LIBRARIES += liblog
55
56 LOCAL_MODULE := libmesa_util
57
58 # Generated sources
59
60 LOCAL_MODULE_CLASS := STATIC_LIBRARIES
61
62 intermediates := $(call local-generated-sources-dir)
63
64 LOCAL_EXPORT_C_INCLUDE_DIRS := $(intermediates)
65
66 UTIL_GENERATED_SOURCES := $(addprefix $(intermediates)/,$(MESA_UTIL_GENERATED_FILES))
67 LOCAL_GENERATED_SOURCES := $(UTIL_GENERATED_SOURCES)
68
69 format_srgb_gen := $(LOCAL_PATH)/format_srgb.py
70
71 $(intermediates)/format_srgb.c: $(format_srgb_gen)
72 @mkdir -p $(dir $@)
73 $(hide) $(MESA_PYTHON2) $(format_srgb_gen) $< > $@
74
75 u_format_gen := $(LOCAL_PATH)/format/u_format_table.py
76 u_format_deps := $(LOCAL_PATH)/format/u_format.csv \
77 $(LOCAL_PATH)/format/u_format_pack.py \
78 $(LOCAL_PATH)/format/u_format_parse.py
79
80 $(intermediates)/format/u_format_pack.h: $(u_format_deps)
81 @mkdir -p $(dir $@)
82 $(hide) $(MESA_PYTHON2) $(u_format_gen) --header $< > $@
83
84 $(intermediates)/format/u_format_table.c: $(u_format_deps)
85 @mkdir -p $(dir $@)
86 $(hide) $(MESA_PYTHON2) $(u_format_gen) $< > $@
87
88 include $(MESA_COMMON_MK)
89 include $(BUILD_STATIC_LIBRARY)