Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 1 | # 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 Wu | 6449298 | 2011-08-31 12:31:02 +0800 | [diff] [blame] | 26 | # classic drivers: i915 i965 |
Rob Herring | 7ee8954 | 2015-12-17 09:45:50 -0600 | [diff] [blame] | 27 | # gallium drivers: swrast freedreno i915g ilo nouveau r300g r600g radeonsi vc4 virgl vmwgfx |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 28 | # |
Chia-I Wu | 099faee | 2011-08-19 17:11:34 +0800 | [diff] [blame] | 29 | # 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 Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 31 | |
| 32 | MESA_TOP := $(call my-dir) |
Chad Versace | 56c6cdc | 2012-12-20 14:14:51 -0800 | [diff] [blame] | 33 | |
| 34 | MESA_ANDROID_MAJOR_VERSION := $(word 1, $(subst ., , $(PLATFORM_VERSION))) |
| 35 | MESA_ANDROID_MINOR_VERSION := $(word 2, $(subst ., , $(PLATFORM_VERSION))) |
| 36 | MESA_ANDROID_VERSION := $(MESA_ANDROID_MAJOR_VERSION).$(MESA_ANDROID_MINOR_VERSION) |
Chih-Wei Huang | b0e33c2 | 2015-04-04 05:01:22 +0800 | [diff] [blame] | 37 | ifeq ($(filter 1 2 3 4,$(MESA_ANDROID_MAJOR_VERSION)),) |
| 38 | MESA_LOLLIPOP_BUILD := true |
| 39 | else |
| 40 | define local-generated-sources-dir |
| 41 | $(call local-intermediates-dir) |
| 42 | endef |
| 43 | endif |
Chad Versace | 56c6cdc | 2012-12-20 14:14:51 -0800 | [diff] [blame] | 44 | |
Rob Herring | 8949edf | 2016-02-24 12:56:28 -0600 | [diff] [blame] | 45 | MESA_DRI_MODULE_REL_PATH := dri |
| 46 | MESA_DRI_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/$(MESA_DRI_MODULE_REL_PATH) |
| 47 | MESA_DRI_MODULE_UNSTRIPPED_PATH := $(TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)/$(MESA_DRI_MODULE_REL_PATH) |
| 48 | |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 49 | MESA_COMMON_MK := $(MESA_TOP)/Android.common.mk |
| 50 | MESA_PYTHON2 := python |
| 51 | |
Chia-I Wu | 6449298 | 2011-08-31 12:31:02 +0800 | [diff] [blame] | 52 | classic_drivers := i915 i965 |
Rob Herring | 7ee8954 | 2015-12-17 09:45:50 -0600 | [diff] [blame] | 53 | gallium_drivers := swrast freedreno i915g ilo nouveau r300g r600g radeonsi vmwgfx vc4 virgl |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 54 | |
Chia-I Wu | 09b5f1f | 2011-08-25 21:36:19 +0800 | [diff] [blame] | 55 | MESA_GPU_DRIVERS := $(strip $(BOARD_GPU_DRIVERS)) |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 56 | |
| 57 | # warn about invalid drivers |
| 58 | invalid_drivers := $(filter-out \ |
| 59 | $(classic_drivers) $(gallium_drivers), $(MESA_GPU_DRIVERS)) |
| 60 | ifneq ($(invalid_drivers),) |
| 61 | $(warning invalid GPU drivers: $(invalid_drivers)) |
| 62 | # tidy up |
| 63 | MESA_GPU_DRIVERS := $(filter-out $(invalid_drivers), $(MESA_GPU_DRIVERS)) |
| 64 | endif |
| 65 | |
| 66 | # host and target must be the same arch to generate matypes.h |
| 67 | ifeq ($(TARGET_ARCH),$(HOST_ARCH)) |
| 68 | MESA_ENABLE_ASM := true |
| 69 | else |
| 70 | MESA_ENABLE_ASM := false |
| 71 | endif |
| 72 | |
| 73 | ifneq ($(filter $(classic_drivers), $(MESA_GPU_DRIVERS)),) |
| 74 | MESA_BUILD_CLASSIC := true |
| 75 | else |
| 76 | MESA_BUILD_CLASSIC := false |
| 77 | endif |
| 78 | |
| 79 | ifneq ($(filter $(gallium_drivers), $(MESA_GPU_DRIVERS)),) |
| 80 | MESA_BUILD_GALLIUM := true |
| 81 | else |
| 82 | MESA_BUILD_GALLIUM := false |
| 83 | endif |
| 84 | |
Chih-Wei Huang | 1842832 | 2015-05-20 11:25:34 +0800 | [diff] [blame] | 85 | MESA_ENABLE_LLVM := $(if $(filter radeonsi,$(MESA_GPU_DRIVERS)),true,false) |
| 86 | |
Chia-I Wu | 4d3d6f7 | 2011-11-26 11:06:02 +0800 | [diff] [blame] | 87 | # add subdirectories |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 88 | ifneq ($(strip $(MESA_GPU_DRIVERS)),) |
| 89 | |
Chia-I Wu | 2a77dc0 | 2011-08-17 11:24:11 +0800 | [diff] [blame] | 90 | SUBDIRS := \ |
Rob Herring | bdfa635 | 2016-05-03 21:02:42 -0500 | [diff] [blame] | 91 | src/gbm \ |
Emil Velikov | 8c2e7fd | 2014-01-10 23:36:16 +0000 | [diff] [blame] | 92 | src/loader \ |
Chia-I Wu | ee41fc8 | 2011-08-17 12:10:12 +0800 | [diff] [blame] | 93 | src/mapi \ |
Emil Velikov | 1a882fd | 2016-01-18 10:47:13 +0200 | [diff] [blame] | 94 | src/compiler \ |
Chia-I Wu | ee40f18 | 2011-08-17 11:31:36 +0800 | [diff] [blame] | 95 | src/mesa \ |
Tomasz Figa | d703abf | 2014-09-27 16:19:59 +0200 | [diff] [blame] | 96 | src/util \ |
Emil Velikov | 1040a86 | 2015-07-14 00:28:10 +0100 | [diff] [blame] | 97 | src/egl \ |
Mauro Rossi | 6b9d7e6 | 2016-09-13 01:15:16 +0200 | [diff] [blame] | 98 | src/amd \ |
Mauro Rossi | cd18bbe | 2016-08-27 17:19:34 +0200 | [diff] [blame] | 99 | src/intel \ |
Chad Versace | 34349d4 | 2011-08-26 16:00:33 -0700 | [diff] [blame] | 100 | src/mesa/drivers/dri |
Chia-I Wu | 099faee | 2011-08-19 17:11:34 +0800 | [diff] [blame] | 101 | |
Rob Herring | dbbf7a8 | 2016-04-28 14:02:01 -0500 | [diff] [blame] | 102 | INC_DIRS := $(call all-named-subdir-makefiles,$(SUBDIRS)) |
| 103 | |
Chia-I Wu | 688db6e | 2011-08-17 11:38:00 +0800 | [diff] [blame] | 104 | ifeq ($(strip $(MESA_BUILD_GALLIUM)),true) |
Rob Herring | dbbf7a8 | 2016-04-28 14:02:01 -0500 | [diff] [blame] | 105 | INC_DIRS += $(call all-named-subdir-makefiles,src/gallium) |
Chia-I Wu | 688db6e | 2011-08-17 11:38:00 +0800 | [diff] [blame] | 106 | endif |
| 107 | |
Rob Herring | dbbf7a8 | 2016-04-28 14:02:01 -0500 | [diff] [blame] | 108 | include $(INC_DIRS) |
Chia-I Wu | 688db6e | 2011-08-17 11:38:00 +0800 | [diff] [blame] | 109 | |
Chia-I Wu | 4d3d6f7 | 2011-11-26 11:06:02 +0800 | [diff] [blame] | 110 | endif |