blob: 0d9475fa9a866f80588b30e74de7a416b536793d [file] [log] [blame]
Chia-I Wuc9b21d92011-08-17 11:07:01 +08001# Mesa 3-D graphics library
2#
3# Copyright (C) 2010-2011 Chia-I Wu <olvaffe@gmail.com>
4# Copyright (C) 2010-2011 LunarG Inc.
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# BOARD_GPU_DRIVERS should be defined. The valid values are
25#
26# classic drivers:
27# gallium drivers: swrast
28#
29# The main target is libGLES_mesa. There is no classic drivers yet.
30
31MESA_TOP := $(call my-dir)
32MESA_COMMON_MK := $(MESA_TOP)/Android.common.mk
33MESA_PYTHON2 := python
34
35DRM_TOP := external/drm
36DRM_GRALLOC_TOP := hardware/drm_gralloc
37
38classic_drivers :=
39gallium_drivers := swrast
40
41MESA_GPU_DRIVERS := $(BOARD_GPU_DRIVERS)
42
43# warn about invalid drivers
44invalid_drivers := $(filter-out \
45 $(classic_drivers) $(gallium_drivers), $(MESA_GPU_DRIVERS))
46ifneq ($(invalid_drivers),)
47$(warning invalid GPU drivers: $(invalid_drivers))
48# tidy up
49MESA_GPU_DRIVERS := $(filter-out $(invalid_drivers), $(MESA_GPU_DRIVERS))
50endif
51
52# host and target must be the same arch to generate matypes.h
53ifeq ($(TARGET_ARCH),$(HOST_ARCH))
54MESA_ENABLE_ASM := true
55else
56MESA_ENABLE_ASM := false
57endif
58
59ifneq ($(filter $(classic_drivers), $(MESA_GPU_DRIVERS)),)
60MESA_BUILD_CLASSIC := true
61else
62MESA_BUILD_CLASSIC := false
63endif
64
65ifneq ($(filter $(gallium_drivers), $(MESA_GPU_DRIVERS)),)
66MESA_BUILD_GALLIUM := true
67else
68MESA_BUILD_GALLIUM := false
69endif
70
71ifneq ($(strip $(MESA_GPU_DRIVERS)),)
72
Chia-I Wu2a77dc02011-08-17 11:24:11 +080073SUBDIRS := \
Chia-I Wuee40f182011-08-17 11:31:36 +080074 src/mesa \
Chia-I Wu2a77dc02011-08-17 11:24:11 +080075 src/egl/main
Chia-I Wu688db6e2011-08-17 11:38:00 +080076
77ifeq ($(strip $(MESA_BUILD_GALLIUM)),true)
78SUBDIRS += src/gallium
79endif
80
Chia-I Wuc9b21d92011-08-17 11:07:01 +080081# ---------------------------------------
82# Build libGLES_mesa
83# ---------------------------------------
84
85LOCAL_PATH := $(MESA_TOP)
86
87include $(CLEAR_VARS)
88
89LOCAL_SRC_FILES :=
90LOCAL_CFLAGS :=
91LOCAL_C_INCLUDES :=
92
93LOCAL_MODULE := libGLES_mesa
94LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/egl
95
96include $(MESA_COMMON_MK)
97include $(BUILD_SHARED_LIBRARY)
98
Chia-I Wu688db6e2011-08-17 11:38:00 +080099mkfiles := $(patsubst %,$(MESA_TOP)/%/Android.mk,$(SUBDIRS))
Chia-I Wu2a77dc02011-08-17 11:24:11 +0800100include $(mkfiles)
Chia-I Wu688db6e2011-08-17 11:38:00 +0800101
Chia-I Wuc9b21d92011-08-17 11:07:01 +0800102endif # MESA_GPU_DRIVERS