blob: 71140df02c63a296cb9fcbe411acc9d906910ea9 [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 Herring3f097392017-05-03 14:35:20 -050058# Warn if we have any invalid driver names
59$(foreach d, $(BOARD_GPU_DRIVERS), \
60 $(if $(findstring $(d).,$(classic_drivers) $(gallium_drivers)), \
61 , \
62 $(warning invalid GPU driver: $(d)) \
63 ) \
64)
65MESA_BUILD_CLASSIC := $(strip $(foreach d, $(BOARD_GPU_DRIVERS), $(patsubst $(d).%,%, $(filter $(d).%, $(classic_drivers)))))
66MESA_BUILD_GALLIUM := $(strip $(foreach d, $(BOARD_GPU_DRIVERS), $(patsubst $(d).%,%, $(filter $(d).%, $(gallium_drivers)))))
67$(foreach d, $(MESA_BUILD_CLASSIC) $(MESA_BUILD_GALLIUM), $(eval $(d) := true))
Chia-I Wuc9b21d92011-08-17 11:07:01 +080068
69# host and target must be the same arch to generate matypes.h
70ifeq ($(TARGET_ARCH),$(HOST_ARCH))
71MESA_ENABLE_ASM := true
72else
73MESA_ENABLE_ASM := false
74endif
75
Rob Herring3f097392017-05-03 14:35:20 -050076ifneq ($(filter true, $(HAVE_GALLIUM_RADEONSI)),)
77MESA_ENABLE_LLVM := true
Chia-I Wuc9b21d92011-08-17 11:07:01 +080078endif
79
Chia-I Wu4d3d6f72011-11-26 11:06:02 +080080# add subdirectories
Chia-I Wu2a77dc02011-08-17 11:24:11 +080081SUBDIRS := \
Rob Herringbdfa6352016-05-03 21:02:42 -050082 src/gbm \
Emil Velikov8c2e7fd2014-01-10 23:36:16 +000083 src/loader \
Chia-I Wuee41fc82011-08-17 12:10:12 +080084 src/mapi \
Emil Velikov1a882fd2016-01-18 10:47:13 +020085 src/compiler \
Chia-I Wuee40f182011-08-17 11:31:36 +080086 src/mesa \
Tomasz Figad703abf2014-09-27 16:19:59 +020087 src/util \
Emil Velikov1040a862015-07-14 00:28:10 +010088 src/egl \
Mauro Rossi6b9d7e62016-09-13 01:15:16 +020089 src/amd \
Mauro Rossicd18bbe2016-08-27 17:19:34 +020090 src/intel \
Mauro Rossi3f2cb692017-02-28 01:24:41 +010091 src/mesa/drivers/dri \
92 src/vulkan
Chia-I Wu099faee2011-08-19 17:11:34 +080093
Rob Herringdbbf7a82016-04-28 14:02:01 -050094INC_DIRS := $(call all-named-subdir-makefiles,$(SUBDIRS))
Rob Herringdbbf7a82016-04-28 14:02:01 -050095INC_DIRS += $(call all-named-subdir-makefiles,src/gallium)
Rob Herringdbbf7a82016-04-28 14:02:01 -050096include $(INC_DIRS)