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 | |
Joe Onorato | bc8abb6 | 2010-01-04 12:57:38 -0800 | [diff] [blame] | 17 | # Tell python not to spam the source tree with .pyc files. This |
| 18 | # only has an effect on python 2.6 and above. |
| 19 | export PYTHONDONTWRITEBYTECODE := 1 |
| 20 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 21 | # Standard source directories. |
| 22 | SRC_DOCS:= $(TOPDIR)docs |
| 23 | # TODO: Enforce some kind of layering; only add include paths |
| 24 | # when a module links against a particular library. |
| 25 | # TODO: See if we can remove most of these from the global list. |
| 26 | SRC_HEADERS := \ |
| 27 | $(TOPDIR)system/core/include \ |
| 28 | $(TOPDIR)hardware/libhardware/include \ |
| 29 | $(TOPDIR)hardware/libhardware_legacy/include \ |
| 30 | $(TOPDIR)hardware/ril/include \ |
| 31 | $(TOPDIR)dalvik/libnativehelper/include \ |
Mathias Agopian | bd118e6 | 2012-03-05 16:04:31 -0800 | [diff] [blame] | 32 | $(TOPDIR)frameworks/native/include \ |
| 33 | $(TOPDIR)frameworks/native/opengl/include \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 34 | $(TOPDIR)frameworks/base/include \ |
| 35 | $(TOPDIR)frameworks/base/opengl/include \ |
Glenn Kasten | fefc17f | 2012-03-13 15:23:33 -0700 | [diff] [blame] | 36 | $(TOPDIR)frameworks/base/native/include \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 37 | $(TOPDIR)external/skia/include |
| 38 | SRC_HOST_HEADERS:=$(TOPDIR)tools/include |
| 39 | SRC_LIBRARIES:= $(TOPDIR)libs |
| 40 | SRC_SERVERS:= $(TOPDIR)servers |
| 41 | SRC_TARGET_DIR := $(TOPDIR)build/target |
| 42 | SRC_API_DIR := $(TOPDIR)frameworks/base/api |
| 43 | |
| 44 | # Some specific paths to tools |
| 45 | SRC_DROIDDOC_DIR := $(TOPDIR)build/tools/droiddoc |
| 46 | |
| 47 | # Various mappings to avoid hard-coding paths all over the place |
| 48 | include $(BUILD_SYSTEM)/pathmap.mk |
| 49 | |
| 50 | # ############################################################### |
| 51 | # Build system internal files |
| 52 | # ############################################################### |
| 53 | |
| 54 | BUILD_COMBOS:= $(BUILD_SYSTEM)/combo |
| 55 | |
| 56 | CLEAR_VARS:= $(BUILD_SYSTEM)/clear_vars.mk |
| 57 | BUILD_HOST_STATIC_LIBRARY:= $(BUILD_SYSTEM)/host_static_library.mk |
| 58 | BUILD_HOST_SHARED_LIBRARY:= $(BUILD_SYSTEM)/host_shared_library.mk |
| 59 | BUILD_STATIC_LIBRARY:= $(BUILD_SYSTEM)/static_library.mk |
| 60 | BUILD_RAW_STATIC_LIBRARY := $(BUILD_SYSTEM)/raw_static_library.mk |
| 61 | BUILD_SHARED_LIBRARY:= $(BUILD_SYSTEM)/shared_library.mk |
| 62 | BUILD_EXECUTABLE:= $(BUILD_SYSTEM)/executable.mk |
| 63 | BUILD_RAW_EXECUTABLE:= $(BUILD_SYSTEM)/raw_executable.mk |
| 64 | BUILD_HOST_EXECUTABLE:= $(BUILD_SYSTEM)/host_executable.mk |
| 65 | BUILD_PACKAGE:= $(BUILD_SYSTEM)/package.mk |
Dima Zavin | f625bf2 | 2010-09-16 00:25:16 -0700 | [diff] [blame] | 66 | BUILD_PHONY_PACKAGE:= $(BUILD_SYSTEM)/phony_package.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 67 | BUILD_HOST_PREBUILT:= $(BUILD_SYSTEM)/host_prebuilt.mk |
| 68 | BUILD_PREBUILT:= $(BUILD_SYSTEM)/prebuilt.mk |
| 69 | BUILD_MULTI_PREBUILT:= $(BUILD_SYSTEM)/multi_prebuilt.mk |
| 70 | BUILD_JAVA_LIBRARY:= $(BUILD_SYSTEM)/java_library.mk |
| 71 | BUILD_STATIC_JAVA_LIBRARY:= $(BUILD_SYSTEM)/static_java_library.mk |
| 72 | BUILD_HOST_JAVA_LIBRARY:= $(BUILD_SYSTEM)/host_java_library.mk |
| 73 | BUILD_DROIDDOC:= $(BUILD_SYSTEM)/droiddoc.mk |
| 74 | BUILD_COPY_HEADERS := $(BUILD_SYSTEM)/copy_headers.mk |
Ying Wang | 4c68174 | 2010-07-20 11:08:47 -0700 | [diff] [blame] | 75 | BUILD_NATIVE_TEST := $(BUILD_SYSTEM)/native_test.mk |
| 76 | BUILD_HOST_NATIVE_TEST := $(BUILD_SYSTEM)/host_native_test.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 77 | |
Brian Muramatsu | 7314933 | 2012-03-02 14:37:08 -0800 | [diff] [blame] | 78 | -include cts/build/config.mk |
| 79 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 80 | # ############################################################### |
| 81 | # Parse out any modifier targets. |
| 82 | # ############################################################### |
| 83 | |
| 84 | # The 'showcommands' goal says to show the full command |
| 85 | # lines being executed, instead of a short message about |
| 86 | # the kind of operation being done. |
| 87 | SHOW_COMMANDS:= $(filter showcommands,$(MAKECMDGOALS)) |
| 88 | |
| 89 | |
| 90 | # ############################################################### |
| 91 | # Set common values |
| 92 | # ############################################################### |
| 93 | |
| 94 | # These can be changed to modify both host and device modules. |
Marco Nelissen | e4aaa36 | 2009-07-13 20:42:49 -0700 | [diff] [blame] | 95 | 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] | 96 | COMMON_RELEASE_CFLAGS:= -DNDEBUG -UDEBUG |
| 97 | |
Marco Nelissen | 7f0a18f | 2009-08-13 11:13:21 -0700 | [diff] [blame] | 98 | COMMON_GLOBAL_CPPFLAGS:= $(COMMON_GLOBAL_CFLAGS) -Wsign-promo |
Marco Nelissen | 73a075d | 2009-07-08 17:51:18 -0700 | [diff] [blame] | 99 | COMMON_RELEASE_CPPFLAGS:= $(COMMON_RELEASE_CFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 100 | |
| 101 | # Set the extensions used for various packages |
| 102 | COMMON_PACKAGE_SUFFIX := .zip |
| 103 | COMMON_JAVA_PACKAGE_SUFFIX := .jar |
| 104 | COMMON_ANDROID_PACKAGE_SUFFIX := .apk |
| 105 | |
| 106 | # list of flags to turn specific warnings in to errors |
Marco Nelissen | bac9a7f | 2009-07-13 17:51:59 -0700 | [diff] [blame] | 107 | 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] | 108 | |
Patrick Scott | f4f85a2 | 2009-06-25 10:38:26 -0400 | [diff] [blame] | 109 | # TODO: do symbol compression |
| 110 | TARGET_COMPRESS_MODULE_SYMBOLS := false |
| 111 | |
Jean-Baptiste Queru | 772a0f6 | 2011-05-18 13:49:08 -0700 | [diff] [blame] | 112 | # Default shell is mksh. Other possible value is ash. |
| 113 | TARGET_SHELL := mksh |
Thorsten Glaser | 2213aab | 2010-06-03 19:57:02 +0200 | [diff] [blame] | 114 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 115 | # ############################################################### |
| 116 | # Include sub-configuration files |
| 117 | # ############################################################### |
| 118 | |
| 119 | # --------------------------------------------------------------- |
| 120 | # Try to include buildspec.mk, which will try to set stuff up. |
| 121 | # If this file doesn't exist, the environemnt variables will |
| 122 | # be used, and if that doesn't work, then the default is an |
| 123 | # arm build |
Ying Wang | d4495e9 | 2011-11-02 13:49:08 -0700 | [diff] [blame] | 124 | ifndef ANDROID_BUILDSPEC |
| 125 | ANDROID_BUILDSPEC := $(TOPDIR)buildspec.mk |
| 126 | endif |
| 127 | -include $(ANDROID_BUILDSPEC) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 128 | |
| 129 | # --------------------------------------------------------------- |
| 130 | # Define most of the global variables. These are the ones that |
| 131 | # are specific to the user's build configuration. |
| 132 | include $(BUILD_SYSTEM)/envsetup.mk |
| 133 | |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 134 | # Boards may be defined under $(SRC_TARGET_DIR)/board/$(TARGET_DEVICE) |
| 135 | # or under vendor/*/$(TARGET_DEVICE). Search in both places, but |
| 136 | # make sure only one exists. |
| 137 | # Real boards should always be associated with an OEM vendor. |
| 138 | board_config_mk := \ |
| 139 | $(strip $(wildcard \ |
| 140 | $(SRC_TARGET_DIR)/board/$(TARGET_DEVICE)/BoardConfig.mk \ |
Jean-Baptiste Queru | 8d05416 | 2010-01-22 13:25:24 -0800 | [diff] [blame] | 141 | device/*/$(TARGET_DEVICE)/BoardConfig.mk \ |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 142 | vendor/*/$(TARGET_DEVICE)/BoardConfig.mk \ |
| 143 | )) |
| 144 | ifeq ($(board_config_mk),) |
| 145 | $(error No config file found for TARGET_DEVICE $(TARGET_DEVICE)) |
| 146 | endif |
| 147 | ifneq ($(words $(board_config_mk)),1) |
| 148 | $(error Multiple board config files for TARGET_DEVICE $(TARGET_DEVICE): $(board_config_mk)) |
| 149 | endif |
| 150 | include $(board_config_mk) |
| 151 | TARGET_DEVICE_DIR := $(patsubst %/,%,$(dir $(board_config_mk))) |
| 152 | board_config_mk := |
| 153 | |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 154 | # pull in device specific kernel headers. Files should be in |
| 155 | # $(TARGET_DEVICE_DIR)/kernel-headers, e.g. |
| 156 | # $(TARGET_DEVICE_DIR)/kernel-headers/linux/ |
| 157 | # $(TARGET_DEVICE_DIR)/kernel-headers/media/ |
| 158 | # $(TARGET_DEVICE_DIR)/kernel-headers/video/ |
| 159 | # etc. |
| 160 | TARGET_DEVICE_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_DEVICE_DIR)/kernel-headers)) |
| 161 | |
Dima Zavin | f926990 | 2012-03-16 09:57:11 -0700 | [diff] [blame^] | 162 | define validate-kernel-headers |
| 163 | $(if $(firstword $(foreach hdr_dir,$(1),\ |
| 164 | $(filter-out kernel-headers,$(notdir $(hdr_dir))))),\ |
| 165 | $(error Kernel header dirs must be end in kernel-headers: $(1))) |
| 166 | endef |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 167 | # also allow the board config to provide additional directories since |
| 168 | # there could be device/oem/base_hw and device/oem/derived_hw |
| 169 | # that both are valid devices but derived_hw needs to use kernel headers |
| 170 | # from base_hw. |
| 171 | TARGET_BOARD_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_BOARD_KERNEL_HEADERS))) |
| 172 | TARGET_BOARD_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_BOARD_KERNEL_HEADERS)) |
Dima Zavin | f926990 | 2012-03-16 09:57:11 -0700 | [diff] [blame^] | 173 | $(call validate-kernel-headers,$(TARGET_BOARD_KERNEL_HEADERS)) |
| 174 | |
| 175 | # then add product-inherited includes, to allow for |
| 176 | # hardware/sivendor/chip/chip.mk to include their own headers |
| 177 | TARGET_PRODUCT_KERNEL_HEADERS := $(strip $(wildcard $(PRODUCT_VENDOR_KERNEL_HEADERS))) |
| 178 | TARGET_PRODUCT_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_PRODUCT_KERNEL_HEADERS)) |
| 179 | $(call validate-kernel-headers,$(TARGET_PRODUCT_KERNEL_HEADERS)) |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 180 | |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 181 | # Clean up/verify variables defined by the board config file. |
| 182 | TARGET_BOOTLOADER_BOARD_NAME := $(strip $(TARGET_BOOTLOADER_BOARD_NAME)) |
| 183 | TARGET_CPU_ABI := $(strip $(TARGET_CPU_ABI)) |
| 184 | ifeq ($(TARGET_CPU_ABI),) |
| 185 | $(error No TARGET_CPU_ABI defined by board config: $(board_config_mk)) |
| 186 | endif |
David 'Digit' Turner | 2edfb71 | 2009-11-06 15:12:00 -0800 | [diff] [blame] | 187 | TARGET_CPU_ABI2 := $(strip $(TARGET_CPU_ABI2)) |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 188 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 189 | # $(1): os/arch |
| 190 | define select-android-config-h |
| 191 | system/core/include/arch/$(1)/AndroidConfig.h |
| 192 | endef |
| 193 | |
| 194 | combo_target := HOST_ |
| 195 | include $(BUILD_SYSTEM)/combo/select.mk |
| 196 | |
| 197 | # on windows, the tools have .exe at the end, and we depend on the |
| 198 | # host config stuff being done first |
| 199 | |
| 200 | combo_target := TARGET_ |
| 201 | include $(BUILD_SYSTEM)/combo/select.mk |
| 202 | |
Ying Wang | df2b4b3 | 2012-01-12 16:38:17 -0800 | [diff] [blame] | 203 | # Compute TARGET_TOOLCHAIN_ROOT from TARGET_TOOLS_PREFIX |
| 204 | # if only TARGET_TOOLS_PREFIX is passed to the make command. |
| 205 | ifndef TARGET_TOOLCHAIN_ROOT |
| 206 | TARGET_TOOLCHAIN_ROOT := $(patsubst %/, %, $(dir $(TARGET_TOOLS_PREFIX))) |
| 207 | TARGET_TOOLCHAIN_ROOT := $(patsubst %/, %, $(dir $(TARGET_TOOLCHAIN_ROOT))) |
| 208 | TARGET_TOOLCHAIN_ROOT := $(wildcard $(TARGET_TOOLCHAIN_ROOT)) |
| 209 | endif |
| 210 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 211 | # Pick a Java compiler. |
| 212 | include $(BUILD_SYSTEM)/combo/javac.mk |
| 213 | |
| 214 | # --------------------------------------------------------------- |
| 215 | # Check that the configuration is current. We check that |
| 216 | # BUILD_ENV_SEQUENCE_NUMBER is current against this value. |
| 217 | # Don't fail if we're called from envsetup, so they have a |
| 218 | # chance to update their environment. |
| 219 | |
| 220 | ifeq (,$(strip $(CALLED_FROM_SETUP))) |
| 221 | ifneq (,$(strip $(BUILD_ENV_SEQUENCE_NUMBER))) |
| 222 | ifneq ($(BUILD_ENV_SEQUENCE_NUMBER),$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)) |
| 223 | $(warning BUILD_ENV_SEQUENCE_NUMBER is set incorrectly.) |
| 224 | $(info *** If you use envsetup/lunch/choosecombo:) |
| 225 | $(info *** - Re-execute envsetup (". envsetup.sh")) |
| 226 | $(info *** - Re-run lunch or choosecombo) |
| 227 | $(info *** If you use buildspec.mk:) |
| 228 | $(info *** - Look at buildspec.mk.default to see what has changed) |
| 229 | $(info *** - Update BUILD_ENV_SEQUENCE_NUMBER to "$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)") |
| 230 | $(error bailing..) |
| 231 | endif |
| 232 | endif |
| 233 | endif |
| 234 | |
| 235 | |
| 236 | # --------------------------------------------------------------- |
| 237 | # Generic tools. |
| 238 | |
| 239 | LEX:= flex |
| 240 | YACC:= bison -d |
| 241 | DOXYGEN:= doxygen |
| 242 | AAPT := $(HOST_OUT_EXECUTABLES)/aapt$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 243 | AIDL := $(HOST_OUT_EXECUTABLES)/aidl$(HOST_EXECUTABLE_SUFFIX) |
Wink Saville | e789083 | 2010-11-05 11:28:51 -0700 | [diff] [blame] | 244 | PROTOC := $(HOST_OUT_EXECUTABLES)/aprotoc$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 245 | ICUDATA := $(HOST_OUT_EXECUTABLES)/icudata$(HOST_EXECUTABLE_SUFFIX) |
| 246 | SIGNAPK_JAR := $(HOST_OUT_JAVA_LIBRARIES)/signapk$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 247 | MKBOOTFS := $(HOST_OUT_EXECUTABLES)/mkbootfs$(HOST_EXECUTABLE_SUFFIX) |
Doug Zongker | 8b70e8c | 2009-05-27 09:14:25 -0700 | [diff] [blame] | 248 | MINIGZIP := $(HOST_OUT_EXECUTABLES)/minigzip$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 249 | MKBOOTIMG := $(HOST_OUT_EXECUTABLES)/mkbootimg$(HOST_EXECUTABLE_SUFFIX) |
| 250 | MKYAFFS2 := $(HOST_OUT_EXECUTABLES)/mkyaffs2image$(HOST_EXECUTABLE_SUFFIX) |
| 251 | APICHECK := $(HOST_OUT_EXECUTABLES)/apicheck$(HOST_EXECUTABLE_SUFFIX) |
| 252 | FS_GET_STATS := $(HOST_OUT_EXECUTABLES)/fs_get_stats$(HOST_EXECUTABLE_SUFFIX) |
| 253 | MKEXT2IMG := $(HOST_OUT_EXECUTABLES)/genext2fs$(HOST_EXECUTABLE_SUFFIX) |
Colin Cross | 9dd4ba8 | 2010-08-03 14:43:15 -0700 | [diff] [blame] | 254 | MAKE_EXT4FS := $(HOST_OUT_EXECUTABLES)/make_ext4fs$(HOST_EXECUTABLE_SUFFIX) |
Ying Wang | 542903a | 2010-11-17 15:40:38 -0800 | [diff] [blame] | 255 | MKEXTUSERIMG := $(HOST_OUT_EXECUTABLES)/mkuserimg.sh |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 256 | MKEXT2BOOTIMG := external/genext2fs/mkbootimg_ext2.sh |
| 257 | MKTARBALL := build/tools/mktarball.sh |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 258 | TUNE2FS := $(HOST_OUT_EXECUTABLES)/tune2fs$(HOST_EXECUTABLE_SUFFIX) |
| 259 | E2FSCK := $(HOST_OUT_EXECUTABLES)/e2fsck$(HOST_EXECUTABLE_SUFFIX) |
Steve Howard | ef5c640 | 2010-05-03 15:01:38 -0700 | [diff] [blame] | 260 | JARJAR := $(HOST_OUT_JAVA_LIBRARIES)/jarjar.jar |
Joe Onorato | 2daa2b3 | 2009-08-30 13:39:24 -0700 | [diff] [blame] | 261 | PROGUARD := external/proguard/bin/proguard.sh |
Doug Zongker | 9bd4962 | 2009-11-30 14:28:59 -0800 | [diff] [blame] | 262 | JAVATAGS := build/tools/java-event-log-tags.py |
Shih-wei Liao | d01fadb | 2010-10-08 16:57:46 -0700 | [diff] [blame] | 263 | LLVM_RS_CC := $(HOST_OUT_EXECUTABLES)/llvm-rs-cc$(HOST_EXECUTABLE_SUFFIX) |
Shih-wei Liao | f7b32bf | 2010-10-11 10:36:42 -0700 | [diff] [blame] | 264 | LLVM_RS_LINK := $(HOST_OUT_EXECUTABLES)/llvm-rs-link$(HOST_EXECUTABLE_SUFFIX) |
Ying Wang | e7874c4 | 2010-09-17 16:36:06 -0700 | [diff] [blame] | 265 | DEXOPT := $(HOST_OUT_EXECUTABLES)/dexopt$(HOST_EXECUTABLE_SUFFIX) |
| 266 | DEXPREOPT := dalvik/tools/dex-preopt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 267 | |
Raphael | 9ca1628 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 268 | # ACP is always for the build OS, not for the host OS |
| 269 | ACP := $(BUILD_OUT_EXECUTABLES)/acp$(BUILD_EXECUTABLE_SUFFIX) |
| 270 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 271 | # dx is java behind a shell script; no .exe necessary. |
| 272 | DX := $(HOST_OUT_EXECUTABLES)/dx |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 273 | ZIPALIGN := $(HOST_OUT_EXECUTABLES)/zipalign$(HOST_EXECUTABLE_SUFFIX) |
| 274 | FINDBUGS := prebuilt/common/findbugs/bin/findbugs |
| 275 | LOCALIZE := $(HOST_OUT_EXECUTABLES)/localize$(HOST_EXECUTABLE_SUFFIX) |
| 276 | EMMA_JAR := external/emma/lib/emma$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 277 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 278 | # Deal with archaic version of bison on Mac OS X. |
| 279 | ifeq ($(filter 1.28,$(shell $(YACC) -V)),) |
| 280 | YACC_HEADER_SUFFIX:= .hpp |
| 281 | else |
| 282 | YACC_HEADER_SUFFIX:= .cpp.h |
| 283 | endif |
| 284 | |
| 285 | # Don't use column under Windows, cygwin or not |
| 286 | ifeq ($(HOST_OS),windows) |
| 287 | COLUMN:= cat |
| 288 | else |
| 289 | COLUMN:= column |
| 290 | endif |
| 291 | |
| 292 | dir := $(shell uname) |
| 293 | ifeq ($(HOST_OS),windows) |
| 294 | dir := $(HOST_OS) |
| 295 | endif |
| 296 | ifeq ($(HOST_OS),darwin) |
| 297 | dir := $(HOST_OS)-$(HOST_ARCH) |
| 298 | endif |
| 299 | OLD_FLEX := prebuilt/$(HOST_PREBUILT_TAG)/flex/flex-2.5.4a$(HOST_EXECUTABLE_SUFFIX) |
| 300 | |
| 301 | ifeq ($(HOST_OS),darwin) |
| 302 | # Mac OS' screwy version of java uses a non-standard directory layout |
| 303 | # and doesn't even seem to have tools.jar. On the other hand, javac seems |
| 304 | # to be able to magically find the classes in there, wherever they are, so |
| 305 | # leave this blank |
| 306 | HOST_JDK_TOOLS_JAR := |
| 307 | else |
| 308 | HOST_JDK_TOOLS_JAR:= $(shell $(BUILD_SYSTEM)/find-jdk-tools-jar.sh) |
Ying Wang | ec5e729 | 2010-04-26 18:36:52 -0700 | [diff] [blame] | 309 | ifeq ($(wildcard $(HOST_JDK_TOOLS_JAR)),) |
Ying Wang | 31a9570 | 2010-09-22 17:45:35 -0700 | [diff] [blame] | 310 | $(error Error: could not find jdk tools.jar, please install JDK6, \ |
Ying Wang | 1613f4f | 2010-09-22 14:11:49 -0700 | [diff] [blame] | 311 | which you can download from java.sun.com) |
Ying Wang | ec5e729 | 2010-04-26 18:36:52 -0700 | [diff] [blame] | 312 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 313 | endif |
| 314 | |
Ying Wang | 053dccb | 2011-05-24 15:46:15 -0700 | [diff] [blame] | 315 | # Is the host JDK 64-bit version? |
| 316 | HOST_JDK_IS_64BIT_VERSION := |
| 317 | ifneq ($(filter 64-Bit, $(shell java -version 2>&1)),) |
| 318 | HOST_JDK_IS_64BIT_VERSION := true |
| 319 | endif |
| 320 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 321 | # It's called md5 on Mac OS and md5sum on Linux |
| 322 | ifeq ($(HOST_OS),darwin) |
| 323 | MD5SUM:=md5 -q |
| 324 | else |
| 325 | MD5SUM:=md5sum |
| 326 | endif |
| 327 | |
Joe Onorato | 2a6e052 | 2011-04-08 17:32:52 -0700 | [diff] [blame] | 328 | APICHECK_CLASSPATH := $(HOST_JDK_TOOLS_JAR) |
| 329 | APICHECK_CLASSPATH := $(APICHECK_CLASSPATH):$(HOST_OUT_JAVA_LIBRARIES)/doclava$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 330 | APICHECK_CLASSPATH := $(APICHECK_CLASSPATH):$(HOST_OUT_JAVA_LIBRARIES)/jsilver$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 331 | APICHECK_COMMAND := $(APICHECK) -JXmx1024m -J"classpath $(APICHECK_CLASSPATH)" |
| 332 | |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 333 | # The default key if not set as LOCAL_CERTIFICATE |
| 334 | ifdef PRODUCT_DEFAULT_DEV_CERTIFICATE |
| 335 | DEFAULT_SYSTEM_DEV_CERTIFICATE := $(PRODUCT_DEFAULT_DEV_CERTIFICATE) |
| 336 | else |
| 337 | DEFAULT_SYSTEM_DEV_CERTIFICATE := build/target/product/security/testkey |
| 338 | endif |
| 339 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 340 | # ############################################################### |
| 341 | # Set up final options. |
| 342 | # ############################################################### |
| 343 | |
| 344 | HOST_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 345 | HOST_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS) |
| 346 | |
| 347 | HOST_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 348 | HOST_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS) |
| 349 | |
| 350 | TARGET_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 351 | TARGET_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS) |
| 352 | |
| 353 | TARGET_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 354 | TARGET_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS) |
| 355 | |
| 356 | HOST_GLOBAL_LD_DIRS += -L$(HOST_OUT_INTERMEDIATE_LIBRARIES) |
| 357 | TARGET_GLOBAL_LD_DIRS += -L$(TARGET_OUT_INTERMEDIATE_LIBRARIES) |
| 358 | |
| 359 | HOST_PROJECT_INCLUDES:= $(SRC_HEADERS) $(SRC_HOST_HEADERS) $(HOST_OUT_HEADERS) |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 360 | TARGET_PROJECT_INCLUDES:= $(SRC_HEADERS) $(TARGET_OUT_HEADERS) \ |
Dima Zavin | f926990 | 2012-03-16 09:57:11 -0700 | [diff] [blame^] | 361 | $(TARGET_DEVICE_KERNEL_HEADERS) $(TARGET_BOARD_KERNEL_HEADERS) \ |
| 362 | $(TARGET_PRODUCT_KERNEL_HEADERS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 363 | |
| 364 | # Many host compilers don't support these flags, so we have to make |
| 365 | # sure to only specify them for the target compilers checked in to |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 366 | # the source tree. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 367 | TARGET_GLOBAL_CFLAGS += $(TARGET_ERROR_FLAGS) |
| 368 | TARGET_GLOBAL_CPPFLAGS += $(TARGET_ERROR_FLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 369 | |
Dave Bort | 9528248 | 2009-04-23 18:44:55 -0700 | [diff] [blame] | 370 | HOST_GLOBAL_CFLAGS += $(HOST_RELEASE_CFLAGS) |
| 371 | HOST_GLOBAL_CPPFLAGS += $(HOST_RELEASE_CPPFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 372 | |
Dave Bort | 9528248 | 2009-04-23 18:44:55 -0700 | [diff] [blame] | 373 | TARGET_GLOBAL_CFLAGS += $(TARGET_RELEASE_CFLAGS) |
| 374 | TARGET_GLOBAL_CPPFLAGS += $(TARGET_RELEASE_CPPFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 375 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 376 | PREBUILT_IS_PRESENT := $(if $(wildcard prebuilt/Android.mk),true) |
| 377 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 378 | # ############################################################### |
| 379 | # Collect a list of the SDK versions that we could compile against |
| 380 | # For use with the LOCAL_SDK_VERSION variable for include $(BUILD_PACKAGE) |
| 381 | # ############################################################### |
| 382 | |
Ying Wang | 9978faf | 2011-11-29 10:24:27 -0800 | [diff] [blame] | 383 | HISTORICAL_SDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/sdk |
Ying Wang | b50bd7f | 2011-11-29 11:20:16 -0800 | [diff] [blame] | 384 | HISTORICAL_NDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/ndk |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 385 | |
| 386 | # Historical SDK version N is stored in $(HISTORICAL_SDK_VERSIONS_ROOT)/N. |
| 387 | # The 'current' version is whatever this source tree is. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 388 | # |
| 389 | # sgrax is the opposite of xargs. It takes the list of args and puts them |
| 390 | # on each line for sort to process. |
| 391 | # 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] | 392 | |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 393 | # Numerically sort a list of numbers |
| 394 | # $(1): the list of numbers to be sorted |
| 395 | define numerically_sort |
| 396 | $(shell function sgrax() { \ |
| 397 | while [ -n "$$1" ] ; do echo $$1 ; shift ; done \ |
| 398 | } ; \ |
| 399 | ( sgrax $(1) | sort -g ) ) |
| 400 | endef |
| 401 | |
| 402 | TARGET_AVAILABLE_SDK_VERSIONS := current $(call numerically_sort,\ |
| 403 | $(patsubst $(HISTORICAL_SDK_VERSIONS_ROOT)/%/android.jar,%, \ |
| 404 | $(wildcard $(HISTORICAL_SDK_VERSIONS_ROOT)/*/android.jar))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 405 | |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 406 | TARGET_AVAILABLE_NDK_VERSIONS := $(call numerically_sort,\ |
| 407 | $(patsubst $(HISTORICAL_NDK_VERSIONS_ROOT)/android-ndk-r%,%, \ |
| 408 | $(wildcard $(HISTORICAL_NDK_VERSIONS_ROOT)/android-ndk-r*))) |
| 409 | |
Joe Onorato | 15ee93b | 2011-04-08 15:03:48 -0700 | [diff] [blame] | 410 | INTERNAL_PLATFORM_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/public_api.txt |
Gary King | 1e80c29 | 2010-03-08 17:16:57 -0800 | [diff] [blame] | 411 | |
Bruce Beare | f1582e5 | 2010-10-14 14:31:48 -0700 | [diff] [blame] | 412 | # This is the standard way to name a directory containing prebuilt target |
| 413 | # objects. E.g., prebuilt/$(TARGET_PREBUILT_TAG)/libc.so |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 414 | TARGET_PREBUILT_TAG := android-$(TARGET_ARCH) |
Bruce Beare | f1582e5 | 2010-10-14 14:31:48 -0700 | [diff] [blame] | 415 | |
Gary King | 1e80c29 | 2010-03-08 17:16:57 -0800 | [diff] [blame] | 416 | include $(BUILD_SYSTEM)/dumpvar.mk |