blob: 600b37a52e62fa455e389f51e8297142a04891b3 [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#
Chia-I Wu64492982011-08-31 12:31:02 +080026# classic drivers: i915 i965
Edward O'Callaghand77fa312017-02-02 00:56:14 +110027# gallium drivers: swrast freedreno i915g nouveau r300g r600g radeonsi vc4 virgl vmwgfx
Chia-I Wuc9b21d92011-08-17 11:07:01 +080028#
Chia-I Wu099faee2011-08-19 17:11:34 +080029# The main target is libGLES_mesa. For each classic driver enabled, a DRI
30# module will also be built. DRI modules will be loaded by libGLES_mesa.
Chia-I Wuc9b21d92011-08-17 11:07:01 +080031
32MESA_TOP := $(call my-dir)
Chad Versace56c6cdc2012-12-20 14:14:51 -080033
34MESA_ANDROID_MAJOR_VERSION := $(word 1, $(subst ., , $(PLATFORM_VERSION)))
Chad Versace56c6cdc2012-12-20 14:14:51 -080035
Rob Herring8949edf2016-02-24 12:56:28 -060036MESA_DRI_MODULE_REL_PATH := dri
37MESA_DRI_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/$(MESA_DRI_MODULE_REL_PATH)
38MESA_DRI_MODULE_UNSTRIPPED_PATH := $(TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)/$(MESA_DRI_MODULE_REL_PATH)
39
Chia-I Wuc9b21d92011-08-17 11:07:01 +080040MESA_COMMON_MK := $(MESA_TOP)/Android.common.mk
41MESA_PYTHON2 := python
42
Rob Herring3f097392017-05-03 14:35:20 -050043# Lists to convert driver names to boolean variables
44# in form of <driver name>.<boolean make variable>
45classic_drivers := i915.HAVE_I915_DRI i965.HAVE_I965_DRI
46gallium_drivers := \
47 swrast.HAVE_GALLIUM_SOFTPIPE \
48 freedreno.HAVE_GALLIUM_FREEDRENO \
49 i915g.HAVE_GALLIUM_I915 \
50 nouveau.HAVE_GALLIUM_NOUVEAU \
51 r300g.HAVE_GALLIUM_R300 \
52 r600g.HAVE_GALLIUM_R600 \
53 radeonsi.HAVE_GALLIUM_RADEONSI \
54 vmwgfx.HAVE_GALLIUM_VMWGFX \
55 vc4.HAVE_GALLIUM_VC4 \
56 virgl.HAVE_GALLIUM_VIRGL
Chia-I Wuc9b21d92011-08-17 11:07:01 +080057
Rob Herring4c0c3712017-05-03 14:35:21 -050058ifeq ($(BOARD_GPU_DRIVERS),all)
59MESA_BUILD_CLASSIC := $(filter HAVE_%, $(subst ., , $(classic_drivers)))
60MESA_BUILD_GALLIUM := $(filter HAVE_%, $(subst ., , $(gallium_drivers)))
61else
Rob Herring3f097392017-05-03 14:35:20 -050062# Warn if we have any invalid driver names
63$(foreach d, $(BOARD_GPU_DRIVERS), \
64 $(if $(findstring $(d).,$(classic_drivers) $(gallium_drivers)), \
65 , \
66 $(warning invalid GPU driver: $(d)) \
67 ) \
68)
69MESA_BUILD_CLASSIC := $(strip $(foreach d, $(BOARD_GPU_DRIVERS), $(patsubst $(d).%,%, $(filter $(d).%, $(classic_drivers)))))
70MESA_BUILD_GALLIUM := $(strip $(foreach d, $(BOARD_GPU_DRIVERS), $(patsubst $(d).%,%, $(filter $(d).%, $(gallium_drivers)))))
Rob Herring4c0c3712017-05-03 14:35:21 -050071endif
Rob Herring3f097392017-05-03 14:35:20 -050072$(foreach d, $(MESA_BUILD_CLASSIC) $(MESA_BUILD_GALLIUM), $(eval $(d) := true))
Chia-I Wuc9b21d92011-08-17 11:07:01 +080073
74# host and target must be the same arch to generate matypes.h
75ifeq ($(TARGET_ARCH),$(HOST_ARCH))
76MESA_ENABLE_ASM := true
77else
78MESA_ENABLE_ASM := false
79endif
80
Rob Herring3f097392017-05-03 14:35:20 -050081ifneq ($(filter true, $(HAVE_GALLIUM_RADEONSI)),)
82MESA_ENABLE_LLVM := true
Chia-I Wuc9b21d92011-08-17 11:07:01 +080083endif
84
Rob Herring26aee6f2017-05-03 14:35:24 -050085define mesa-build-with-llvm
86 $(if $(filter $(MESA_ANDROID_MAJOR_VERSION), 4 5), \
87 $(warning Unsupported LLVM version in Android $(MESA_ANDROID_MAJOR_VERSION)),) \
88 $(if $(filter 6,$(MESA_ANDROID_MAJOR_VERSION)), \
89 $(eval LOCAL_CFLAGS += -DHAVE_LLVM=0x0307 -DMESA_LLVM_VERSION_PATCH=0) \
90 $(eval LOCAL_STATIC_LIBRARIES += libLLVMCore) \
91 $(eval LOCAL_C_INCLUDES += external/llvm/include external/llvm/device/include),) \
92 $(if $(filter 7,$(MESA_ANDROID_MAJOR_VERSION)), \
93 $(eval LOCAL_CFLAGS += -DHAVE_LLVM=0x0308 -DMESA_LLVM_VERSION_PATCH=0) \
94 $(eval LOCAL_STATIC_LIBRARIES += libLLVMCore) \
95 $(eval LOCAL_C_INCLUDES += external/llvm/include external/llvm/device/include),)
96endef
97
Chia-I Wu4d3d6f72011-11-26 11:06:02 +080098# add subdirectories
Chia-I Wu2a77dc02011-08-17 11:24:11 +080099SUBDIRS := \
Rob Herringbdfa6352016-05-03 21:02:42 -0500100 src/gbm \
Emil Velikov8c2e7fd2014-01-10 23:36:16 +0000101 src/loader \
Chia-I Wuee41fc82011-08-17 12:10:12 +0800102 src/mapi \
Emil Velikov1a882fd2016-01-18 10:47:13 +0200103 src/compiler \
Chia-I Wuee40f182011-08-17 11:31:36 +0800104 src/mesa \
Tomasz Figad703abf2014-09-27 16:19:59 +0200105 src/util \
Emil Velikov1040a862015-07-14 00:28:10 +0100106 src/egl \
Mauro Rossi6b9d7e62016-09-13 01:15:16 +0200107 src/amd \
Mauro Rossicd18bbe2016-08-27 17:19:34 +0200108 src/intel \
Mauro Rossi3f2cb692017-02-28 01:24:41 +0100109 src/mesa/drivers/dri \
110 src/vulkan
Chia-I Wu099faee2011-08-19 17:11:34 +0800111
Rob Herringdbbf7a82016-04-28 14:02:01 -0500112INC_DIRS := $(call all-named-subdir-makefiles,$(SUBDIRS))
Rob Herringdbbf7a82016-04-28 14:02:01 -0500113INC_DIRS += $(call all-named-subdir-makefiles,src/gallium)
Rob Herringdbbf7a82016-04-28 14:02:01 -0500114include $(INC_DIRS)