The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | # This is included by the top-level Makefile. |
| 2 | # It sets up standard variables based on the |
| 3 | # current configuration and platform, which |
| 4 | # are not specific to what is being built. |
| 5 | |
Ying Wang | 6714dbc | 2010-03-30 16:42:15 -0700 | [diff] [blame] | 6 | # Only use ANDROID_BUILD_SHELL to wrap around bash. |
| 7 | # DO NOT use other shells such as zsh. |
Ying Wang | 2ce495a | 2010-03-30 12:55:13 -0700 | [diff] [blame] | 8 | ifdef ANDROID_BUILD_SHELL |
| 9 | SHELL := $(ANDROID_BUILD_SHELL) |
| 10 | else |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 11 | # Use bash, not whatever shell somebody has installed as /bin/sh |
| 12 | # This is repeated from main.mk, since envsetup.sh runs this file |
| 13 | # directly. |
| 14 | SHELL := /bin/bash |
Ying Wang | 2ce495a | 2010-03-30 12:55:13 -0700 | [diff] [blame] | 15 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 16 | |
Ying Wang | 157a5e1 | 2012-09-27 13:26:25 -0700 | [diff] [blame] | 17 | # Utility variables. |
| 18 | empty := |
| 19 | space := $(empty) $(empty) |
| 20 | comma := , |
| 21 | |
Joe Onorato | bc8abb6 | 2010-01-04 12:57:38 -0800 | [diff] [blame] | 22 | # Tell python not to spam the source tree with .pyc files. This |
| 23 | # only has an effect on python 2.6 and above. |
| 24 | export PYTHONDONTWRITEBYTECODE := 1 |
| 25 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 26 | # Standard source directories. |
| 27 | SRC_DOCS:= $(TOPDIR)docs |
| 28 | # TODO: Enforce some kind of layering; only add include paths |
| 29 | # when a module links against a particular library. |
| 30 | # TODO: See if we can remove most of these from the global list. |
| 31 | SRC_HEADERS := \ |
| 32 | $(TOPDIR)system/core/include \ |
| 33 | $(TOPDIR)hardware/libhardware/include \ |
| 34 | $(TOPDIR)hardware/libhardware_legacy/include \ |
| 35 | $(TOPDIR)hardware/ril/include \ |
Elliott Hughes | 89898df | 2012-05-03 16:37:40 -0700 | [diff] [blame] | 36 | $(TOPDIR)libnativehelper/include \ |
Mathias Agopian | bd118e6 | 2012-03-05 16:04:31 -0800 | [diff] [blame] | 37 | $(TOPDIR)frameworks/native/include \ |
| 38 | $(TOPDIR)frameworks/native/opengl/include \ |
James Dong | c49ee71 | 2012-03-23 18:46:42 -0700 | [diff] [blame] | 39 | $(TOPDIR)frameworks/av/include \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 40 | $(TOPDIR)frameworks/base/include \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 41 | $(TOPDIR)external/skia/include |
| 42 | SRC_HOST_HEADERS:=$(TOPDIR)tools/include |
| 43 | SRC_LIBRARIES:= $(TOPDIR)libs |
| 44 | SRC_SERVERS:= $(TOPDIR)servers |
| 45 | SRC_TARGET_DIR := $(TOPDIR)build/target |
Ying Wang | 19cc22b | 2012-12-04 15:07:34 -0800 | [diff] [blame] | 46 | SRC_API_DIR := $(TOPDIR)prebuilts/sdk/api |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 47 | |
| 48 | # Some specific paths to tools |
| 49 | SRC_DROIDDOC_DIR := $(TOPDIR)build/tools/droiddoc |
| 50 | |
| 51 | # Various mappings to avoid hard-coding paths all over the place |
| 52 | include $(BUILD_SYSTEM)/pathmap.mk |
| 53 | |
| 54 | # ############################################################### |
| 55 | # Build system internal files |
| 56 | # ############################################################### |
| 57 | |
| 58 | BUILD_COMBOS:= $(BUILD_SYSTEM)/combo |
| 59 | |
| 60 | CLEAR_VARS:= $(BUILD_SYSTEM)/clear_vars.mk |
| 61 | BUILD_HOST_STATIC_LIBRARY:= $(BUILD_SYSTEM)/host_static_library.mk |
| 62 | BUILD_HOST_SHARED_LIBRARY:= $(BUILD_SYSTEM)/host_shared_library.mk |
| 63 | BUILD_STATIC_LIBRARY:= $(BUILD_SYSTEM)/static_library.mk |
| 64 | BUILD_RAW_STATIC_LIBRARY := $(BUILD_SYSTEM)/raw_static_library.mk |
| 65 | BUILD_SHARED_LIBRARY:= $(BUILD_SYSTEM)/shared_library.mk |
| 66 | BUILD_EXECUTABLE:= $(BUILD_SYSTEM)/executable.mk |
| 67 | BUILD_RAW_EXECUTABLE:= $(BUILD_SYSTEM)/raw_executable.mk |
| 68 | BUILD_HOST_EXECUTABLE:= $(BUILD_SYSTEM)/host_executable.mk |
| 69 | BUILD_PACKAGE:= $(BUILD_SYSTEM)/package.mk |
Dima Zavin | f625bf2 | 2010-09-16 00:25:16 -0700 | [diff] [blame] | 70 | BUILD_PHONY_PACKAGE:= $(BUILD_SYSTEM)/phony_package.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 71 | BUILD_HOST_PREBUILT:= $(BUILD_SYSTEM)/host_prebuilt.mk |
| 72 | BUILD_PREBUILT:= $(BUILD_SYSTEM)/prebuilt.mk |
| 73 | BUILD_MULTI_PREBUILT:= $(BUILD_SYSTEM)/multi_prebuilt.mk |
| 74 | BUILD_JAVA_LIBRARY:= $(BUILD_SYSTEM)/java_library.mk |
| 75 | BUILD_STATIC_JAVA_LIBRARY:= $(BUILD_SYSTEM)/static_java_library.mk |
| 76 | BUILD_HOST_JAVA_LIBRARY:= $(BUILD_SYSTEM)/host_java_library.mk |
| 77 | BUILD_DROIDDOC:= $(BUILD_SYSTEM)/droiddoc.mk |
| 78 | BUILD_COPY_HEADERS := $(BUILD_SYSTEM)/copy_headers.mk |
Ying Wang | 4c68174 | 2010-07-20 11:08:47 -0700 | [diff] [blame] | 79 | BUILD_NATIVE_TEST := $(BUILD_SYSTEM)/native_test.mk |
| 80 | BUILD_HOST_NATIVE_TEST := $(BUILD_SYSTEM)/host_native_test.mk |
Ying Wang | 13d6950 | 2012-11-01 17:22:33 -0700 | [diff] [blame] | 81 | BUILD_NOTICE_FILE := $(BUILD_SYSTEM)/notice_files.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 82 | |
Brian Muramatsu | 7314933 | 2012-03-02 14:37:08 -0800 | [diff] [blame] | 83 | -include cts/build/config.mk |
| 84 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 85 | # ############################################################### |
| 86 | # Parse out any modifier targets. |
| 87 | # ############################################################### |
| 88 | |
| 89 | # The 'showcommands' goal says to show the full command |
| 90 | # lines being executed, instead of a short message about |
| 91 | # the kind of operation being done. |
| 92 | SHOW_COMMANDS:= $(filter showcommands,$(MAKECMDGOALS)) |
| 93 | |
| 94 | |
| 95 | # ############################################################### |
| 96 | # Set common values |
| 97 | # ############################################################### |
| 98 | |
| 99 | # These can be changed to modify both host and device modules. |
Marco Nelissen | e4aaa36 | 2009-07-13 20:42:49 -0700 | [diff] [blame] | 100 | COMMON_GLOBAL_CFLAGS:= -DANDROID -fmessage-length=0 -W -Wall -Wno-unused -Winit-self -Wpointer-arith |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 101 | COMMON_RELEASE_CFLAGS:= -DNDEBUG -UDEBUG |
| 102 | |
Marco Nelissen | 7f0a18f | 2009-08-13 11:13:21 -0700 | [diff] [blame] | 103 | COMMON_GLOBAL_CPPFLAGS:= $(COMMON_GLOBAL_CFLAGS) -Wsign-promo |
Marco Nelissen | 73a075d | 2009-07-08 17:51:18 -0700 | [diff] [blame] | 104 | COMMON_RELEASE_CPPFLAGS:= $(COMMON_RELEASE_CFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 105 | |
| 106 | # Set the extensions used for various packages |
| 107 | COMMON_PACKAGE_SUFFIX := .zip |
| 108 | COMMON_JAVA_PACKAGE_SUFFIX := .jar |
| 109 | COMMON_ANDROID_PACKAGE_SUFFIX := .apk |
| 110 | |
| 111 | # list of flags to turn specific warnings in to errors |
Marco Nelissen | bac9a7f | 2009-07-13 17:51:59 -0700 | [diff] [blame] | 112 | TARGET_ERROR_FLAGS := -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 113 | |
Patrick Scott | f4f85a2 | 2009-06-25 10:38:26 -0400 | [diff] [blame] | 114 | # TODO: do symbol compression |
| 115 | TARGET_COMPRESS_MODULE_SYMBOLS := false |
| 116 | |
Jean-Baptiste Queru | 772a0f6 | 2011-05-18 13:49:08 -0700 | [diff] [blame] | 117 | # Default shell is mksh. Other possible value is ash. |
| 118 | TARGET_SHELL := mksh |
Thorsten Glaser | 2213aab | 2010-06-03 19:57:02 +0200 | [diff] [blame] | 119 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 120 | # ############################################################### |
| 121 | # Include sub-configuration files |
| 122 | # ############################################################### |
| 123 | |
| 124 | # --------------------------------------------------------------- |
| 125 | # Try to include buildspec.mk, which will try to set stuff up. |
Brian Carlstrom | 1aeee8b | 2013-06-27 12:02:46 -0700 | [diff] [blame] | 126 | # If this file doesn't exist, the environment variables will |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 127 | # be used, and if that doesn't work, then the default is an |
| 128 | # arm build |
Ying Wang | d4495e9 | 2011-11-02 13:49:08 -0700 | [diff] [blame] | 129 | ifndef ANDROID_BUILDSPEC |
| 130 | ANDROID_BUILDSPEC := $(TOPDIR)buildspec.mk |
| 131 | endif |
| 132 | -include $(ANDROID_BUILDSPEC) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 133 | |
| 134 | # --------------------------------------------------------------- |
| 135 | # Define most of the global variables. These are the ones that |
| 136 | # are specific to the user's build configuration. |
| 137 | include $(BUILD_SYSTEM)/envsetup.mk |
| 138 | |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 139 | # Boards may be defined under $(SRC_TARGET_DIR)/board/$(TARGET_DEVICE) |
| 140 | # or under vendor/*/$(TARGET_DEVICE). Search in both places, but |
| 141 | # make sure only one exists. |
| 142 | # Real boards should always be associated with an OEM vendor. |
| 143 | board_config_mk := \ |
| 144 | $(strip $(wildcard \ |
| 145 | $(SRC_TARGET_DIR)/board/$(TARGET_DEVICE)/BoardConfig.mk \ |
Guilhem IMBERTON | 58570e7 | 2012-10-04 14:26:57 +0200 | [diff] [blame] | 146 | $(shell test -d device && find device -maxdepth 4 -path '*/$(TARGET_DEVICE)/BoardConfig.mk') \ |
| 147 | $(shell test -d vendor && find vendor -maxdepth 4 -path '*/$(TARGET_DEVICE)/BoardConfig.mk') \ |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 148 | )) |
| 149 | ifeq ($(board_config_mk),) |
| 150 | $(error No config file found for TARGET_DEVICE $(TARGET_DEVICE)) |
| 151 | endif |
| 152 | ifneq ($(words $(board_config_mk)),1) |
| 153 | $(error Multiple board config files for TARGET_DEVICE $(TARGET_DEVICE): $(board_config_mk)) |
| 154 | endif |
| 155 | include $(board_config_mk) |
Raghu Gandham | 8da4310 | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 156 | ifeq ($(TARGET_ARCH),) |
| 157 | $(error TARGET_ARCH not defined by board config: $(board_config_mk)) |
| 158 | endif |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 159 | TARGET_DEVICE_DIR := $(patsubst %/,%,$(dir $(board_config_mk))) |
| 160 | board_config_mk := |
| 161 | |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 162 | # Perhaps we should move this block to build/core/Makefile, |
| 163 | # once we don't have TARGET_NO_KERNEL reference in AndroidBoard.mk/Android.mk. |
| 164 | ifneq ($(strip $(TARGET_NO_BOOTLOADER)),true) |
| 165 | INSTALLED_BOOTLOADER_MODULE := $(PRODUCT_OUT)/bootloader |
| 166 | ifeq ($(strip $(TARGET_BOOTLOADER_IS_2ND)),true) |
| 167 | INSTALLED_2NDBOOTLOADER_TARGET := $(PRODUCT_OUT)/2ndbootloader |
| 168 | else |
| 169 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 170 | endif |
| 171 | else |
| 172 | INSTALLED_BOOTLOADER_MODULE := |
| 173 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 174 | endif # TARGET_NO_BOOTLOADER |
| 175 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
| 176 | INSTALLED_KERNEL_TARGET := $(PRODUCT_OUT)/kernel |
| 177 | else |
| 178 | INSTALLED_KERNEL_TARGET := |
| 179 | endif |
| 180 | |
| 181 | |
Dima Zavin | 06e758a | 2012-03-30 10:45:38 -0700 | [diff] [blame] | 182 | # The build system exposes several variables for where to find the kernel |
| 183 | # headers: |
| 184 | # TARGET_DEVICE_KERNEL_HEADERS is automatically created for the current |
| 185 | # device being built. It is set as $(TARGET_DEVICE_DIR)/kernel-headers, |
| 186 | # e.g. device/samsung/tuna/kernel-headers. This directory is not |
| 187 | # explicitly set by anyone, the build system always adds this subdir. |
| 188 | # |
| 189 | # TARGET_BOARD_KERNEL_HEADERS is specified by the BoardConfig.mk file |
| 190 | # to allow other directories to be included. This is useful if there's |
| 191 | # some common place where a few headers are being kept for a group |
| 192 | # of devices. For example, device/<vendor>/common/kernel-headers could |
| 193 | # contain some headers for several of <vendor>'s devices. |
| 194 | # |
| 195 | # TARGET_PRODUCT_KERNEL_HEADERS is generated by the product inheritance |
| 196 | # graph. This allows architecture products to provide headers for the |
| 197 | # devices using that architecture. For example, |
| 198 | # hardware/ti/omap4xxx/omap4.mk will specify |
| 199 | # PRODUCT_VENDOR_KERNEL_HEADERS variable that specify where the omap4 |
| 200 | # specific headers are, e.g. hardware/ti/omap4xxx/kernel-headers. |
| 201 | # The build system then combines all the values specified by all the |
| 202 | # PRODUCT_VENDOR_KERNEL_HEADERS directives in the product inheritance |
| 203 | # tree and then exports a TARGET_PRODUCT_KERNEL_HEADERS variable. |
| 204 | # |
| 205 | # The layout of subdirs in any of the kernel-headers dir should mirror the |
| 206 | # layout of the kernel include/ directory. For example, |
| 207 | # device/samsung/tuna/kernel-headers/linux/, |
| 208 | # hardware/ti/omap4xxx/kernel-headers/media/, |
| 209 | # etc. |
| 210 | # |
| 211 | # NOTE: These directories MUST contain post-processed headers using the |
| 212 | # bionic/libc/kernel/clean_header.py tool. Additionally, the original kernel |
| 213 | # headers must also be checked in, but in a different subdirectory. By |
| 214 | # convention, the originals should be checked into original-kernel-headers |
| 215 | # directory of the same parent dir. For example, |
| 216 | # device/samsung/tuna/kernel-headers <----- post-processed |
| 217 | # device/samsung/tuna/original-kernel-headers <----- originals |
| 218 | # |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 219 | TARGET_DEVICE_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_DEVICE_DIR)/kernel-headers)) |
| 220 | |
Dima Zavin | f926990 | 2012-03-16 09:57:11 -0700 | [diff] [blame] | 221 | define validate-kernel-headers |
| 222 | $(if $(firstword $(foreach hdr_dir,$(1),\ |
| 223 | $(filter-out kernel-headers,$(notdir $(hdr_dir))))),\ |
| 224 | $(error Kernel header dirs must be end in kernel-headers: $(1))) |
| 225 | endef |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 226 | # also allow the board config to provide additional directories since |
| 227 | # there could be device/oem/base_hw and device/oem/derived_hw |
| 228 | # that both are valid devices but derived_hw needs to use kernel headers |
| 229 | # from base_hw. |
| 230 | TARGET_BOARD_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_BOARD_KERNEL_HEADERS))) |
| 231 | TARGET_BOARD_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_BOARD_KERNEL_HEADERS)) |
Dima Zavin | f926990 | 2012-03-16 09:57:11 -0700 | [diff] [blame] | 232 | $(call validate-kernel-headers,$(TARGET_BOARD_KERNEL_HEADERS)) |
| 233 | |
| 234 | # then add product-inherited includes, to allow for |
| 235 | # hardware/sivendor/chip/chip.mk to include their own headers |
| 236 | TARGET_PRODUCT_KERNEL_HEADERS := $(strip $(wildcard $(PRODUCT_VENDOR_KERNEL_HEADERS))) |
| 237 | TARGET_PRODUCT_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_PRODUCT_KERNEL_HEADERS)) |
| 238 | $(call validate-kernel-headers,$(TARGET_PRODUCT_KERNEL_HEADERS)) |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 239 | |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 240 | # Clean up/verify variables defined by the board config file. |
| 241 | TARGET_BOOTLOADER_BOARD_NAME := $(strip $(TARGET_BOOTLOADER_BOARD_NAME)) |
| 242 | TARGET_CPU_ABI := $(strip $(TARGET_CPU_ABI)) |
| 243 | ifeq ($(TARGET_CPU_ABI),) |
| 244 | $(error No TARGET_CPU_ABI defined by board config: $(board_config_mk)) |
| 245 | endif |
David 'Digit' Turner | 2edfb71 | 2009-11-06 15:12:00 -0800 | [diff] [blame] | 246 | TARGET_CPU_ABI2 := $(strip $(TARGET_CPU_ABI2)) |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 247 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 248 | # $(1): os/arch |
| 249 | define select-android-config-h |
Ying Wang | 5bdf305 | 2012-09-20 10:06:33 -0700 | [diff] [blame] | 250 | build/core/combo/include/arch/$(1)/AndroidConfig.h |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 251 | endef |
| 252 | |
| 253 | combo_target := HOST_ |
| 254 | include $(BUILD_SYSTEM)/combo/select.mk |
| 255 | |
| 256 | # on windows, the tools have .exe at the end, and we depend on the |
| 257 | # host config stuff being done first |
| 258 | |
| 259 | combo_target := TARGET_ |
| 260 | include $(BUILD_SYSTEM)/combo/select.mk |
| 261 | |
Ying Wang | df2b4b3 | 2012-01-12 16:38:17 -0800 | [diff] [blame] | 262 | # Compute TARGET_TOOLCHAIN_ROOT from TARGET_TOOLS_PREFIX |
| 263 | # if only TARGET_TOOLS_PREFIX is passed to the make command. |
| 264 | ifndef TARGET_TOOLCHAIN_ROOT |
| 265 | TARGET_TOOLCHAIN_ROOT := $(patsubst %/, %, $(dir $(TARGET_TOOLS_PREFIX))) |
| 266 | TARGET_TOOLCHAIN_ROOT := $(patsubst %/, %, $(dir $(TARGET_TOOLCHAIN_ROOT))) |
| 267 | TARGET_TOOLCHAIN_ROOT := $(wildcard $(TARGET_TOOLCHAIN_ROOT)) |
| 268 | endif |
| 269 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 270 | # Pick a Java compiler. |
| 271 | include $(BUILD_SYSTEM)/combo/javac.mk |
| 272 | |
| 273 | # --------------------------------------------------------------- |
| 274 | # Check that the configuration is current. We check that |
| 275 | # BUILD_ENV_SEQUENCE_NUMBER is current against this value. |
| 276 | # Don't fail if we're called from envsetup, so they have a |
| 277 | # chance to update their environment. |
| 278 | |
| 279 | ifeq (,$(strip $(CALLED_FROM_SETUP))) |
| 280 | ifneq (,$(strip $(BUILD_ENV_SEQUENCE_NUMBER))) |
| 281 | ifneq ($(BUILD_ENV_SEQUENCE_NUMBER),$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)) |
| 282 | $(warning BUILD_ENV_SEQUENCE_NUMBER is set incorrectly.) |
| 283 | $(info *** If you use envsetup/lunch/choosecombo:) |
| 284 | $(info *** - Re-execute envsetup (". envsetup.sh")) |
| 285 | $(info *** - Re-run lunch or choosecombo) |
| 286 | $(info *** If you use buildspec.mk:) |
| 287 | $(info *** - Look at buildspec.mk.default to see what has changed) |
| 288 | $(info *** - Update BUILD_ENV_SEQUENCE_NUMBER to "$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)") |
| 289 | $(error bailing..) |
| 290 | endif |
| 291 | endif |
| 292 | endif |
| 293 | |
| 294 | |
| 295 | # --------------------------------------------------------------- |
| 296 | # Generic tools. |
| 297 | |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 298 | LEX := flex |
| 299 | # The default PKGDATADIR built in the prebuilt bison is a relative path |
| 300 | # external/bison/data. |
| 301 | # To run bison from elsewhere you need to set up enviromental variable |
| 302 | # BISON_PKGDATADIR. |
| 303 | BISON_PKGDATADIR := $(PWD)/external/bison/data |
Ying Wang | dd75a03 | 2013-04-05 18:51:32 -0700 | [diff] [blame] | 304 | BISON := prebuilts/misc/$(BUILD_OS)-$(BUILD_ARCH)/bison/bison |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 305 | YACC := $(BISON) -d |
| 306 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 307 | DOXYGEN:= doxygen |
| 308 | AAPT := $(HOST_OUT_EXECUTABLES)/aapt$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 309 | AIDL := $(HOST_OUT_EXECUTABLES)/aidl$(HOST_EXECUTABLE_SUFFIX) |
Wink Saville | e789083 | 2010-11-05 11:28:51 -0700 | [diff] [blame] | 310 | PROTOC := $(HOST_OUT_EXECUTABLES)/aprotoc$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 311 | SIGNAPK_JAR := $(HOST_OUT_JAVA_LIBRARIES)/signapk$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 312 | MKBOOTFS := $(HOST_OUT_EXECUTABLES)/mkbootfs$(HOST_EXECUTABLE_SUFFIX) |
Doug Zongker | 8b70e8c | 2009-05-27 09:14:25 -0700 | [diff] [blame] | 313 | MINIGZIP := $(HOST_OUT_EXECUTABLES)/minigzip$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 314 | MKBOOTIMG := $(HOST_OUT_EXECUTABLES)/mkbootimg$(HOST_EXECUTABLE_SUFFIX) |
| 315 | MKYAFFS2 := $(HOST_OUT_EXECUTABLES)/mkyaffs2image$(HOST_EXECUTABLE_SUFFIX) |
| 316 | APICHECK := $(HOST_OUT_EXECUTABLES)/apicheck$(HOST_EXECUTABLE_SUFFIX) |
| 317 | FS_GET_STATS := $(HOST_OUT_EXECUTABLES)/fs_get_stats$(HOST_EXECUTABLE_SUFFIX) |
| 318 | MKEXT2IMG := $(HOST_OUT_EXECUTABLES)/genext2fs$(HOST_EXECUTABLE_SUFFIX) |
Colin Cross | 9dd4ba8 | 2010-08-03 14:43:15 -0700 | [diff] [blame] | 319 | MAKE_EXT4FS := $(HOST_OUT_EXECUTABLES)/make_ext4fs$(HOST_EXECUTABLE_SUFFIX) |
Ying Wang | 542903a | 2010-11-17 15:40:38 -0800 | [diff] [blame] | 320 | MKEXTUSERIMG := $(HOST_OUT_EXECUTABLES)/mkuserimg.sh |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 321 | MKEXT2BOOTIMG := external/genext2fs/mkbootimg_ext2.sh |
Ying Wang | 69e9b4d | 2012-11-26 18:10:23 -0800 | [diff] [blame] | 322 | SIMG2IMG := $(HOST_OUT_EXECUTABLES)/simg2img$(HOST_EXECUTABLE_SUFFIX) |
| 323 | E2FSCK := $(HOST_OUT_EXECUTABLES)/e2fsck$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 324 | MKTARBALL := build/tools/mktarball.sh |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 325 | TUNE2FS := $(HOST_OUT_EXECUTABLES)/tune2fs$(HOST_EXECUTABLE_SUFFIX) |
| 326 | E2FSCK := $(HOST_OUT_EXECUTABLES)/e2fsck$(HOST_EXECUTABLE_SUFFIX) |
Steve Howard | ef5c640 | 2010-05-03 15:01:38 -0700 | [diff] [blame] | 327 | JARJAR := $(HOST_OUT_JAVA_LIBRARIES)/jarjar.jar |
Joe Onorato | 2daa2b3 | 2009-08-30 13:39:24 -0700 | [diff] [blame] | 328 | PROGUARD := external/proguard/bin/proguard.sh |
Doug Zongker | 9bd4962 | 2009-11-30 14:28:59 -0800 | [diff] [blame] | 329 | JAVATAGS := build/tools/java-event-log-tags.py |
Shih-wei Liao | d01fadb | 2010-10-08 16:57:46 -0700 | [diff] [blame] | 330 | LLVM_RS_CC := $(HOST_OUT_EXECUTABLES)/llvm-rs-cc$(HOST_EXECUTABLE_SUFFIX) |
Stephen Hines | e719f28 | 2012-11-28 16:52:41 -0800 | [diff] [blame] | 331 | BCC_COMPAT := $(HOST_OUT_EXECUTABLES)/bcc_compat$(HOST_EXECUTABLE_SUFFIX) |
Ying Wang | e7874c4 | 2010-09-17 16:36:06 -0700 | [diff] [blame] | 332 | DEXOPT := $(HOST_OUT_EXECUTABLES)/dexopt$(HOST_EXECUTABLE_SUFFIX) |
| 333 | DEXPREOPT := dalvik/tools/dex-preopt |
Ying Wang | 0d570a7 | 2012-06-18 18:45:40 -0700 | [diff] [blame] | 334 | LINT := prebuilts/sdk/tools/lint |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 335 | |
Raphael | 9ca1628 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 336 | # ACP is always for the build OS, not for the host OS |
| 337 | ACP := $(BUILD_OUT_EXECUTABLES)/acp$(BUILD_EXECUTABLE_SUFFIX) |
| 338 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 339 | # dx is java behind a shell script; no .exe necessary. |
| 340 | DX := $(HOST_OUT_EXECUTABLES)/dx |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 341 | ZIPALIGN := $(HOST_OUT_EXECUTABLES)/zipalign$(HOST_EXECUTABLE_SUFFIX) |
| 342 | FINDBUGS := prebuilt/common/findbugs/bin/findbugs |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 343 | EMMA_JAR := external/emma/lib/emma$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 344 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 345 | YACC_HEADER_SUFFIX:= .hpp |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 346 | |
| 347 | # Don't use column under Windows, cygwin or not |
| 348 | ifeq ($(HOST_OS),windows) |
| 349 | COLUMN:= cat |
| 350 | else |
| 351 | COLUMN:= column |
| 352 | endif |
| 353 | |
Jean-Baptiste Queru | 30f6db7 | 2012-04-29 11:50:18 -0700 | [diff] [blame] | 354 | OLD_FLEX := prebuilts/misc/$(HOST_PREBUILT_TAG)/flex/flex-2.5.4a$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 355 | |
| 356 | ifeq ($(HOST_OS),darwin) |
| 357 | # Mac OS' screwy version of java uses a non-standard directory layout |
| 358 | # and doesn't even seem to have tools.jar. On the other hand, javac seems |
| 359 | # to be able to magically find the classes in there, wherever they are, so |
| 360 | # leave this blank |
| 361 | HOST_JDK_TOOLS_JAR := |
| 362 | else |
| 363 | HOST_JDK_TOOLS_JAR:= $(shell $(BUILD_SYSTEM)/find-jdk-tools-jar.sh) |
Ying Wang | ec5e729 | 2010-04-26 18:36:52 -0700 | [diff] [blame] | 364 | ifeq ($(wildcard $(HOST_JDK_TOOLS_JAR)),) |
Ying Wang | 31a9570 | 2010-09-22 17:45:35 -0700 | [diff] [blame] | 365 | $(error Error: could not find jdk tools.jar, please install JDK6, \ |
Ying Wang | 1613f4f | 2010-09-22 14:11:49 -0700 | [diff] [blame] | 366 | which you can download from java.sun.com) |
Ying Wang | ec5e729 | 2010-04-26 18:36:52 -0700 | [diff] [blame] | 367 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 368 | endif |
| 369 | |
Ying Wang | 053dccb | 2011-05-24 15:46:15 -0700 | [diff] [blame] | 370 | # Is the host JDK 64-bit version? |
| 371 | HOST_JDK_IS_64BIT_VERSION := |
| 372 | ifneq ($(filter 64-Bit, $(shell java -version 2>&1)),) |
| 373 | HOST_JDK_IS_64BIT_VERSION := true |
| 374 | endif |
| 375 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 376 | # It's called md5 on Mac OS and md5sum on Linux |
| 377 | ifeq ($(HOST_OS),darwin) |
| 378 | MD5SUM:=md5 -q |
| 379 | else |
| 380 | MD5SUM:=md5sum |
| 381 | endif |
| 382 | |
Joe Onorato | 2a6e052 | 2011-04-08 17:32:52 -0700 | [diff] [blame] | 383 | APICHECK_CLASSPATH := $(HOST_JDK_TOOLS_JAR) |
| 384 | APICHECK_CLASSPATH := $(APICHECK_CLASSPATH):$(HOST_OUT_JAVA_LIBRARIES)/doclava$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 385 | APICHECK_CLASSPATH := $(APICHECK_CLASSPATH):$(HOST_OUT_JAVA_LIBRARIES)/jsilver$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 386 | APICHECK_COMMAND := $(APICHECK) -JXmx1024m -J"classpath $(APICHECK_CLASSPATH)" |
| 387 | |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 388 | # The default key if not set as LOCAL_CERTIFICATE |
| 389 | ifdef PRODUCT_DEFAULT_DEV_CERTIFICATE |
| 390 | DEFAULT_SYSTEM_DEV_CERTIFICATE := $(PRODUCT_DEFAULT_DEV_CERTIFICATE) |
| 391 | else |
| 392 | DEFAULT_SYSTEM_DEV_CERTIFICATE := build/target/product/security/testkey |
| 393 | endif |
| 394 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 395 | # ############################################################### |
| 396 | # Set up final options. |
| 397 | # ############################################################### |
| 398 | |
| 399 | HOST_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 400 | HOST_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS) |
| 401 | |
| 402 | HOST_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 403 | HOST_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS) |
| 404 | |
| 405 | TARGET_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 406 | TARGET_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS) |
| 407 | |
| 408 | TARGET_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 409 | TARGET_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS) |
| 410 | |
| 411 | HOST_GLOBAL_LD_DIRS += -L$(HOST_OUT_INTERMEDIATE_LIBRARIES) |
| 412 | TARGET_GLOBAL_LD_DIRS += -L$(TARGET_OUT_INTERMEDIATE_LIBRARIES) |
| 413 | |
| 414 | HOST_PROJECT_INCLUDES:= $(SRC_HEADERS) $(SRC_HOST_HEADERS) $(HOST_OUT_HEADERS) |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 415 | TARGET_PROJECT_INCLUDES:= $(SRC_HEADERS) $(TARGET_OUT_HEADERS) \ |
Dima Zavin | 8e4042c | 2012-03-30 10:24:31 -0700 | [diff] [blame] | 416 | $(TARGET_DEVICE_KERNEL_HEADERS) $(TARGET_BOARD_KERNEL_HEADERS) \ |
| 417 | $(TARGET_PRODUCT_KERNEL_HEADERS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 418 | |
| 419 | # Many host compilers don't support these flags, so we have to make |
| 420 | # sure to only specify them for the target compilers checked in to |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 421 | # the source tree. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 422 | TARGET_GLOBAL_CFLAGS += $(TARGET_ERROR_FLAGS) |
| 423 | TARGET_GLOBAL_CPPFLAGS += $(TARGET_ERROR_FLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 424 | |
Dave Bort | 9528248 | 2009-04-23 18:44:55 -0700 | [diff] [blame] | 425 | HOST_GLOBAL_CFLAGS += $(HOST_RELEASE_CFLAGS) |
| 426 | HOST_GLOBAL_CPPFLAGS += $(HOST_RELEASE_CPPFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 427 | |
Dave Bort | 9528248 | 2009-04-23 18:44:55 -0700 | [diff] [blame] | 428 | TARGET_GLOBAL_CFLAGS += $(TARGET_RELEASE_CFLAGS) |
| 429 | TARGET_GLOBAL_CPPFLAGS += $(TARGET_RELEASE_CPPFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 430 | |
Mike Lockwood | c73018c | 2013-08-06 16:07:13 -0700 | [diff] [blame] | 431 | # allow overriding default Java libraries on a per-target basis |
| 432 | ifeq ($(TARGET_DEFAULT_JAVA_LIBRARIES),) |
| 433 | TARGET_DEFAULT_JAVA_LIBRARIES := core core-junit ext framework framework2 |
| 434 | endif |
| 435 | |
yroussel | 1319005 | 2012-01-12 16:09:06 +0100 | [diff] [blame] | 436 | # define llvm tools and global flags |
| 437 | include $(BUILD_SYSTEM)/llvm_config.mk |
| 438 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 439 | # ############################################################### |
| 440 | # Collect a list of the SDK versions that we could compile against |
| 441 | # For use with the LOCAL_SDK_VERSION variable for include $(BUILD_PACKAGE) |
| 442 | # ############################################################### |
| 443 | |
Ying Wang | 9978faf | 2011-11-29 10:24:27 -0800 | [diff] [blame] | 444 | HISTORICAL_SDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/sdk |
Ying Wang | b50bd7f | 2011-11-29 11:20:16 -0800 | [diff] [blame] | 445 | HISTORICAL_NDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/ndk |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 446 | |
| 447 | # Historical SDK version N is stored in $(HISTORICAL_SDK_VERSIONS_ROOT)/N. |
| 448 | # The 'current' version is whatever this source tree is. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 449 | # |
| 450 | # sgrax is the opposite of xargs. It takes the list of args and puts them |
| 451 | # on each line for sort to process. |
| 452 | # sort -g is a numeric sort, so 1 2 3 10 instead of 1 10 2 3. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 453 | |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 454 | # Numerically sort a list of numbers |
| 455 | # $(1): the list of numbers to be sorted |
| 456 | define numerically_sort |
| 457 | $(shell function sgrax() { \ |
| 458 | while [ -n "$$1" ] ; do echo $$1 ; shift ; done \ |
| 459 | } ; \ |
| 460 | ( sgrax $(1) | sort -g ) ) |
| 461 | endef |
| 462 | |
Ying Wang | a1ff629 | 2012-05-10 18:07:33 -0700 | [diff] [blame] | 463 | TARGET_AVAILABLE_SDK_VERSIONS := $(call numerically_sort,\ |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 464 | $(patsubst $(HISTORICAL_SDK_VERSIONS_ROOT)/%/android.jar,%, \ |
| 465 | $(wildcard $(HISTORICAL_SDK_VERSIONS_ROOT)/*/android.jar))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 466 | |
Joe Onorato | 15ee93b | 2011-04-08 15:03:48 -0700 | [diff] [blame] | 467 | INTERNAL_PLATFORM_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/public_api.txt |
Gary King | 1e80c29 | 2010-03-08 17:16:57 -0800 | [diff] [blame] | 468 | |
Bruce Beare | f1582e5 | 2010-10-14 14:31:48 -0700 | [diff] [blame] | 469 | # This is the standard way to name a directory containing prebuilt target |
| 470 | # objects. E.g., prebuilt/$(TARGET_PREBUILT_TAG)/libc.so |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 471 | TARGET_PREBUILT_TAG := android-$(TARGET_ARCH) |
Bruce Beare | f1582e5 | 2010-10-14 14:31:48 -0700 | [diff] [blame] | 472 | |
Tim Murray | 1a6f09a | 2013-03-05 11:07:15 -0800 | [diff] [blame] | 473 | # Set up RS prebuilt variables for compatibility library |
| 474 | |
| 475 | RS_PREBUILT_CLCORE := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/libclcore.bc |
| 476 | RS_PREBUILT_LIBPATH := -L prebuilts/ndk/8/platforms/android-9/arch-$(TARGET_ARCH)/usr/lib |
| 477 | RS_PREBUILT_COMPILER_RT := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/libcompiler_rt.a |
| 478 | |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 479 | include $(BUILD_SYSTEM)/dumpvar.mk |