OSDN Git Service

03ea564cf34808db6b3df97d1d2a1b6a4ea727db
[android-x86/external-mesa.git] / src / mesa / drivers / dri / common / Android.mk
1 #
2 # Mesa 3-D graphics library
3 #
4 # Copyright (C) 2011 Intel Corporation
5 #
6 # Permission is hereby granted, free of charge, to any person obtaining a
7 # copy of this software and associated documentation files (the "Software"),
8 # to deal in the Software without restriction, including without limitation
9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 # and/or sell copies of the Software, and to permit persons to whom the
11 # Software is furnished to do so, subject to the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 # DEALINGS IN THE SOFTWARE.
23 #
24
25 #
26 # Build libmesa_dri_common
27 #
28
29 LOCAL_PATH := $(call my-dir)
30 include $(CLEAR_VARS)
31
32 include $(LOCAL_PATH)/Makefile.sources
33
34 LOCAL_MODULE := libmesa_dri_common
35 LOCAL_MODULE_CLASS := STATIC_LIBRARIES
36
37 intermediates := $(call local-intermediates-dir)
38
39 LOCAL_C_INCLUDES := \
40     $(intermediates) \
41     $(MESA_DRI_C_INCLUDES)
42
43 # swrast only
44 ifeq ($(MESA_GPU_DRIVERS),swrast)
45 LOCAL_CFLAGS := -D__NOT_HAVE_DRM_H
46 else
47 LOCAL_SHARED_LIBRARIES := libdrm
48 endif
49
50 LOCAL_SRC_FILES := $(DRI_COMMON_FILES)
51
52 LOCAL_GENERATED_SOURCES := \
53     $(intermediates)/xmlpool/options.h
54
55 #
56 # Generate options.h from gettext translations.
57 #
58
59 MESA_DRI_OPTIONS_LANGS := de es nl fr sv
60 POT := $(intermediates)/xmlpool.pot
61
62 $(POT): $(LOCAL_PATH)/xmlpool/t_options.h
63         @mkdir -p $(dir $@)
64         xgettext -L C --from-code utf-8 -o $@ $<
65
66 $(intermediates)/xmlpool/%.po: $(LOCAL_PATH)/xmlpool/%.po $(POT)
67         lang=$(basename $(notdir $@)); \
68         mkdir -p $(dir $@); \
69         if [ -f $< ]; then \
70                 msgmerge -o $@ $^; \
71         else \
72                 msginit -i $(POT) \
73                         -o $@ \
74                         --locale=$$lang \
75                         --no-translator; \
76                 sed -i -e 's/charset=.*\\n/charset=UTF-8\\n/' $@; \
77         fi
78
79 $(intermediates)/xmlpool/%/LC_MESSAGES/options.mo: $(intermediates)/xmlpool/%.po
80         mkdir -p $(dir $@)
81         msgfmt -o $@ $<
82
83 $(intermediates)/xmlpool/options.h: PRIVATE_SCRIPT := $(LOCAL_PATH)/xmlpool/gen_xmlpool.py
84 $(intermediates)/xmlpool/options.h: PRIVATE_LOCALEDIR := $(intermediates)/xmlpool
85 $(intermediates)/xmlpool/options.h: PRIVATE_TEMPLATE_HEADER := $(LOCAL_PATH)/xmlpool/t_options.h
86 $(intermediates)/xmlpool/options.h: PRIVATE_MO_FILES := $(MESA_DRI_OPTIONS_LANGS:%=$(intermediates)/xmlpool/%/LC_MESSAGES/options.mo)
87 .SECONDEXPANSION:
88 $(intermediates)/xmlpool/options.h: $$(PRIVATE_SCRIPT) $$(PRIVATE_TEMPLATE_HEADER) $$(PRIVATE_MO_FILES)
89         mkdir -p $(dir $@)
90         mkdir -p $(PRIVATE_LOCALEDIR)
91         $(MESA_PYTHON2) $(PRIVATE_SCRIPT) $(PRIVATE_TEMPLATE_HEADER) \
92                 $(PRIVATE_LOCALEDIR) $(MESA_DRI_OPTIONS_LANGS) > $@
93
94 include $(MESA_COMMON_MK)
95 include $(BUILD_STATIC_LIBRARY)
96
97 #
98 # Build libmesa_megadriver_stub
99 #
100
101 include $(CLEAR_VARS)
102 include $(LOCAL_PATH)/Makefile.sources
103
104 LOCAL_MODULE := libmesa_megadriver_stub
105 LOCAL_MODULE_CLASS := STATIC_LIBRARIES
106 LOCAL_C_INCLUDES := \
107     $(MESA_DRI_C_INCLUDES)
108
109 # swrast only
110 ifeq ($(MESA_GPU_DRIVERS),swrast)
111 LOCAL_CFLAGS := -D__NOT_HAVE_DRM_H
112 else
113 LOCAL_SHARED_LIBRARIES := libdrm
114 endif
115
116 LOCAL_SRC_FILES := $(megadriver_stub_FILES)
117
118 include $(MESA_COMMON_MK)
119 include $(BUILD_STATIC_LIBRARY)