2010-03-31 07:42:15 +08:00
|
|
|
# Only use ANDROID_BUILD_SHELL to wrap around bash.
|
|
|
|
# DO NOT use other shells such as zsh.
|
2010-03-31 03:55:13 +08:00
|
|
|
ifdef ANDROID_BUILD_SHELL
|
|
|
|
SHELL := $(ANDROID_BUILD_SHELL)
|
|
|
|
else
|
2009-03-04 11:28:42 +08:00
|
|
|
# Use bash, not whatever shell somebody has installed as /bin/sh
|
|
|
|
# This is repeated in config.mk, since envsetup.sh runs that file
|
|
|
|
# directly.
|
|
|
|
SHELL := /bin/bash
|
2010-03-31 03:55:13 +08:00
|
|
|
endif
|
2009-03-04 11:28:42 +08:00
|
|
|
|
|
|
|
# this turns off the suffix rules built into make
|
|
|
|
.SUFFIXES:
|
|
|
|
|
2011-06-23 05:18:57 +08:00
|
|
|
# this turns off the RCS / SCCS implicit rules of GNU Make
|
|
|
|
% : RCS/%,v
|
|
|
|
% : RCS/%
|
|
|
|
% : %,v
|
|
|
|
% : s.%
|
|
|
|
% : SCCS/s.%
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
# If a rule fails, delete $@.
|
|
|
|
.DELETE_ON_ERROR:
|
|
|
|
|
|
|
|
# Figure out where we are.
|
|
|
|
#TOP := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)))
|
|
|
|
#TOP := $(patsubst %/,%,$(TOP))
|
|
|
|
|
|
|
|
# TOPDIR is the normal variable you should use, because
|
|
|
|
# if we are executing relative to the current directory
|
|
|
|
# it can be "", whereas TOP must be "." which causes
|
|
|
|
# pattern matching probles when make strips off the
|
|
|
|
# trailing "./" from paths in various places.
|
|
|
|
#ifeq ($(TOP),.)
|
|
|
|
#TOPDIR :=
|
|
|
|
#else
|
|
|
|
#TOPDIR := $(TOP)/
|
|
|
|
#endif
|
|
|
|
|
2011-12-20 05:37:55 +08:00
|
|
|
# Check for broken versions of make.
|
|
|
|
# (Allow any version under Cygwin since we don't actually build the platform there.)
|
|
|
|
ifeq (,$(findstring CYGWIN,$(shell uname -sm)))
|
2013-10-17 01:36:32 +08:00
|
|
|
ifneq (1,$(strip $(shell expr $(MAKE_VERSION) \>= 3.81)))
|
2009-03-04 11:28:42 +08:00
|
|
|
$(warning ********************************************************************************)
|
|
|
|
$(warning * You are using version $(MAKE_VERSION) of make.)
|
2013-10-17 01:36:32 +08:00
|
|
|
$(warning * Android can only be built by versions 3.81 and higher.)
|
2012-04-20 05:53:27 +08:00
|
|
|
$(warning * see https://source.android.com/source/download.html)
|
2009-03-04 11:28:42 +08:00
|
|
|
$(warning ********************************************************************************)
|
|
|
|
$(error stopping)
|
|
|
|
endif
|
2011-12-20 05:37:55 +08:00
|
|
|
endif
|
2009-03-04 11:28:42 +08:00
|
|
|
|
2012-05-23 09:29:02 +08:00
|
|
|
# Absolute path of the present working direcotry.
|
|
|
|
# This overrides the shell variable $PWD, which does not necessarily points to
|
|
|
|
# the top of the source tree, for example when "make -C" is used in m/mm/mmm.
|
|
|
|
PWD := $(shell pwd)
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
TOP := .
|
|
|
|
TOPDIR :=
|
|
|
|
|
|
|
|
BUILD_SYSTEM := $(TOPDIR)build/core
|
|
|
|
|
|
|
|
# This is the default target. It must be the first declared target.
|
2010-06-10 09:18:31 +08:00
|
|
|
.PHONY: droid
|
2009-03-04 11:28:42 +08:00
|
|
|
DEFAULT_GOAL := droid
|
|
|
|
$(DEFAULT_GOAL):
|
|
|
|
|
2010-05-18 09:16:11 +08:00
|
|
|
# Used to force goals to build. Only use for conditionally defined goals.
|
|
|
|
.PHONY: FORCE
|
|
|
|
FORCE:
|
|
|
|
|
2013-08-09 07:34:29 +08:00
|
|
|
# These goals don't need to collect and include Android.mks/CleanSpec.mks
|
|
|
|
# in the source tree.
|
|
|
|
dont_bother_goals := clean clobber dataclean installclean \
|
|
|
|
help out \
|
|
|
|
snod systemimage-nodeps \
|
|
|
|
stnod systemtarball-nodeps \
|
|
|
|
userdataimage-nodeps userdatatarball-nodeps \
|
|
|
|
cacheimage-nodeps \
|
|
|
|
vendorimage-nodeps \
|
|
|
|
ramdisk-nodeps \
|
|
|
|
bootimage-nodeps
|
|
|
|
|
|
|
|
ifneq ($(filter $(dont_bother_goals), $(MAKECMDGOALS)),)
|
|
|
|
dont_bother := true
|
|
|
|
endif
|
|
|
|
|
2010-10-29 03:31:47 +08:00
|
|
|
# Targets that provide quick help on the build system.
|
|
|
|
include $(BUILD_SYSTEM)/help.mk
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
# Set up various standard variables based on configuration
|
|
|
|
# and host information.
|
|
|
|
include $(BUILD_SYSTEM)/config.mk
|
|
|
|
|
2014-01-25 05:38:08 +08:00
|
|
|
include $(BUILD_SYSTEM)/64_bit_blacklist.mk
|
|
|
|
|
2013-02-23 10:15:29 +08:00
|
|
|
# This allows us to force a clean build - included after the config.mk
|
2009-03-04 11:28:42 +08:00
|
|
|
# environment setup is done, but before we generate any dependencies. This
|
|
|
|
# file does the rm -rf inline so the deps which are all done below will
|
|
|
|
# be generated correctly
|
|
|
|
include $(BUILD_SYSTEM)/cleanbuild.mk
|
|
|
|
|
Build from source or prebuilt
With this change, you can easily switch between building from source
code and prebuilt.
Set LOCAL_PREBUILT_MODULE_FILE to the path of the prebuilt file,
relative to the top of the source tree, in the usual module definition.
The prebuilt will be used unless any of the followings satisfied:
1) ANDROID_BUILD_FROM_SOURCE is "true", which disable prebuilt globally;
2) The module name is in ANDROID_NO_PREBUILT_MODULES;
3) The LOCAL_PATH is prefixed by any of ANDROID_NO_PREBUILT_PATHS.
A developer can set ANDROID_NO_PREBUILT_MODULES or
ANDROID_NO_PREBUILT_PATHS to build only his own module(s) from source,
while build other modules from prebuilts.
You can set ANDROID_BUILD_FROM_SOURCE to true to build everything from
source.
Those variables can be set with shell environmental variable or in your
buildspec.mk.
Sometimes module B is able to be built from source only if module A is
also
built from source, for example, if B is the test apk of A.
In that case, you can use the macro include-if-build-from-source to
include B's Android.mk only if A is built from source too, or
if-build-from-source to conditionally include the definition of module
B,
if their module definitions are in the same Android.mk.
Support host-executable-hook and host-shared-library-hook.
Change-Id: Icab7cf028c87eaba0dd7efc2a7749fd6f32b44e4
2012-12-14 10:23:01 +08:00
|
|
|
# Include the google-specific config
|
|
|
|
-include vendor/google/build/config.mk
|
|
|
|
|
2014-04-01 21:16:26 +08:00
|
|
|
VERSION_CHECK_SEQUENCE_NUMBER := 5
|
2009-07-31 02:54:27 +08:00
|
|
|
-include $(OUT_DIR)/versions_checked.mk
|
|
|
|
ifneq ($(VERSION_CHECK_SEQUENCE_NUMBER),$(VERSIONS_CHECKED))
|
|
|
|
|
|
|
|
$(info Checking build tools versions...)
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
ifneq ($(HOST_OS),windows)
|
|
|
|
ifneq ($(HOST_OS)-$(HOST_ARCH),darwin-ppc)
|
|
|
|
# check for a case sensitive file system
|
|
|
|
ifneq (a,$(shell mkdir -p $(OUT_DIR) ; \
|
|
|
|
echo a > $(OUT_DIR)/casecheck.txt; \
|
|
|
|
echo B > $(OUT_DIR)/CaseCheck.txt; \
|
|
|
|
cat $(OUT_DIR)/casecheck.txt))
|
|
|
|
$(warning ************************************************************)
|
|
|
|
$(warning You are building on a case-insensitive filesystem.)
|
|
|
|
$(warning Please move your source tree to a case-sensitive filesystem.)
|
|
|
|
$(warning ************************************************************)
|
|
|
|
$(error Case-insensitive filesystems not supported)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Make sure that there are no spaces in the absolute path; the
|
|
|
|
# build system can't deal with them.
|
|
|
|
ifneq ($(words $(shell pwd)),1)
|
|
|
|
$(warning ************************************************************)
|
|
|
|
$(warning You are building in a directory whose absolute path contains)
|
|
|
|
$(warning a space character:)
|
|
|
|
$(warning $(space))
|
|
|
|
$(warning "$(shell pwd)")
|
|
|
|
$(warning $(space))
|
|
|
|
$(warning Please move your source tree to a path that does not contain)
|
|
|
|
$(warning any spaces.)
|
|
|
|
$(warning ************************************************************)
|
|
|
|
$(error Directory names containing spaces not supported)
|
|
|
|
endif
|
|
|
|
|
2014-04-01 21:16:26 +08:00
|
|
|
java_version_str := $(shell unset _JAVA_OPTIONS && java -version 2>&1)
|
|
|
|
javac_version_str := $(shell unset _JAVA_OPTIONS && javac -version 2>&1)
|
|
|
|
|
|
|
|
# Check for the correct version of java, should be 1.7 by
|
|
|
|
# default, and 1.6 if LEGACY_USE_JAVA6 is set.
|
|
|
|
ifeq ($(LEGACY_USE_JAVA6),)
|
|
|
|
required_version := "1.7.x"
|
|
|
|
required_javac_version := "1.7"
|
|
|
|
java_version := $(shell echo '$(java_version_str)' | grep '^java .*[ "]1\.7[\. "$$]')
|
|
|
|
javac_version := $(shell echo '$(javac_version_str)' | grep '[ "]1\.7[\. "$$]')
|
|
|
|
else # if LEGACY_USE_JAVA6
|
|
|
|
required_version := "1.6.x"
|
|
|
|
required_javac_version := "1.6"
|
|
|
|
java_version := $(shell echo '$(java_version_str)' | grep '^java .*[ "]1\.6[\. "$$]')
|
|
|
|
javac_version := $(shell echo '$(javac_version_str)' | grep '[ "]1\.6[\. "$$]')
|
|
|
|
endif # if LEGACY_USE_JAVA6
|
|
|
|
|
|
|
|
ifeq ($(strip $(java_version)),)
|
|
|
|
$(info ************************************************************)
|
|
|
|
$(info You are attempting to build with the incorrect version)
|
|
|
|
$(info of java.)
|
|
|
|
$(info $(space))
|
|
|
|
$(info Your version is: $(java_version_str).)
|
|
|
|
$(info The required version is: $(required_version))
|
|
|
|
$(info $(space))
|
|
|
|
$(info Please follow the machine setup instructions at)
|
|
|
|
$(info $(space)$(space)$(space)$(space)https://source.android.com/source/initializing.html)
|
|
|
|
$(info ************************************************************)
|
|
|
|
$(error stop)
|
|
|
|
endif
|
|
|
|
|
2013-12-05 20:26:35 +08:00
|
|
|
# Check for the current JDK.
|
|
|
|
#
|
|
|
|
# For Java 1.7, we require OpenJDK on linux and Oracle JDK on Mac OS.
|
|
|
|
# For Java 1.6, we require Oracle for all host OSes.
|
|
|
|
requires_openjdk := false
|
2014-04-01 21:16:26 +08:00
|
|
|
ifeq ($(LEGACY_USE_JAVA6),)
|
2013-12-05 20:26:35 +08:00
|
|
|
ifeq ($(HOST_OS), linux)
|
|
|
|
requires_openjdk := true
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2013-11-14 07:05:15 +08:00
|
|
|
|
|
|
|
# Check for the current jdk
|
2013-12-05 20:26:35 +08:00
|
|
|
ifeq ($(requires_openjdk), true)
|
2014-04-01 20:00:10 +08:00
|
|
|
# The user asked for java7 openjdk, so check that the host
|
|
|
|
# java version is really openjdk
|
2013-11-14 07:05:15 +08:00
|
|
|
ifeq ($(shell echo '$(java_version_str)' | grep -i openjdk),)
|
2013-09-21 08:11:43 +08:00
|
|
|
$(info ************************************************************)
|
2013-12-05 20:26:35 +08:00
|
|
|
$(info You are attempting to build with an unsupported JDK.)
|
|
|
|
$(info $(space))
|
2014-01-21 15:48:45 +08:00
|
|
|
$(info This build requires OpenJDK, but you are using:)
|
2013-11-14 07:05:15 +08:00
|
|
|
$(info $(java_version_str).)
|
2013-12-05 20:26:35 +08:00
|
|
|
$(info Please follow the machine setup instructions at)
|
|
|
|
$(info $(space)$(space)$(space)$(space)https://source.android.com/source/download.html)
|
2013-09-21 08:11:43 +08:00
|
|
|
$(info ************************************************************)
|
|
|
|
$(error stop)
|
|
|
|
endif # java version is not OpenJdk
|
2013-12-05 20:26:35 +08:00
|
|
|
else # if requires_openjdk
|
2013-11-14 07:05:15 +08:00
|
|
|
ifneq ($(shell echo '$(java_version_str)' | grep -i openjdk),)
|
2013-02-24 03:25:00 +08:00
|
|
|
$(info ************************************************************)
|
|
|
|
$(info You are attempting to build with an unsupported JDK.)
|
|
|
|
$(info $(space))
|
|
|
|
$(info You use OpenJDK but only Sun/Oracle JDK is supported.)
|
|
|
|
$(info Please follow the machine setup instructions at)
|
|
|
|
$(info $(space)$(space)$(space)$(space)https://source.android.com/source/download.html)
|
|
|
|
$(info ************************************************************)
|
|
|
|
$(error stop)
|
2013-09-21 08:11:43 +08:00
|
|
|
endif # java version is not Sun Oracle JDK
|
2013-12-05 20:26:35 +08:00
|
|
|
endif # if requires_openjdk
|
2013-09-21 08:11:43 +08:00
|
|
|
|
2009-06-23 09:15:38 +08:00
|
|
|
# Check for the correct version of javac
|
|
|
|
ifeq ($(strip $(javac_version)),)
|
|
|
|
$(info ************************************************************)
|
|
|
|
$(info You are attempting to build with the incorrect version)
|
|
|
|
$(info of javac.)
|
|
|
|
$(info $(space))
|
2013-11-14 07:05:15 +08:00
|
|
|
$(info Your version is: $(javac_version_str).)
|
2014-04-01 20:00:10 +08:00
|
|
|
$(info The required version is: $(required_javac_version))
|
2009-06-23 09:15:38 +08:00
|
|
|
$(info $(space))
|
|
|
|
$(info Please follow the machine setup instructions at)
|
2012-04-20 05:53:27 +08:00
|
|
|
$(info $(space)$(space)$(space)$(space)https://source.android.com/source/download.html)
|
2009-06-23 09:15:38 +08:00
|
|
|
$(info ************************************************************)
|
2010-06-22 07:26:38 +08:00
|
|
|
$(error stop)
|
2009-06-23 09:15:38 +08:00
|
|
|
endif
|
|
|
|
|
2013-11-14 07:05:15 +08:00
|
|
|
|
2013-04-13 05:14:36 +08:00
|
|
|
ifndef BUILD_EMULATOR
|
2012-06-29 07:02:19 +08:00
|
|
|
ifeq (darwin,$(HOST_OS))
|
2012-11-09 18:06:33 +08:00
|
|
|
GCC_REALPATH = $(realpath $(shell which $(HOST_CC)))
|
2012-06-29 07:02:19 +08:00
|
|
|
ifneq ($(findstring llvm-gcc,$(GCC_REALPATH)),)
|
|
|
|
# Using LLVM GCC results in a non functional emulator due to it
|
|
|
|
# not honouring global register variables
|
2012-07-26 08:55:03 +08:00
|
|
|
$(warning ****************************************)
|
|
|
|
$(warning * gcc is linked to llvm-gcc which will *)
|
|
|
|
$(warning * not create a useable emulator. *)
|
|
|
|
$(warning ****************************************)
|
2012-07-26 05:28:05 +08:00
|
|
|
BUILD_EMULATOR := false
|
|
|
|
else
|
|
|
|
BUILD_EMULATOR := true
|
|
|
|
endif
|
2012-07-27 01:15:21 +08:00
|
|
|
else # HOST_OS is not darwin
|
|
|
|
BUILD_EMULATOR := true
|
|
|
|
endif # HOST_OS is darwin
|
2013-04-13 05:14:36 +08:00
|
|
|
endif
|
2012-06-29 07:02:19 +08:00
|
|
|
|
2009-07-31 02:54:27 +08:00
|
|
|
$(shell echo 'VERSIONS_CHECKED := $(VERSION_CHECK_SEQUENCE_NUMBER)' \
|
|
|
|
> $(OUT_DIR)/versions_checked.mk)
|
2013-04-13 05:14:36 +08:00
|
|
|
$(shell echo 'BUILD_EMULATOR ?= $(BUILD_EMULATOR)' \
|
2012-07-26 08:55:03 +08:00
|
|
|
>> $(OUT_DIR)/versions_checked.mk)
|
2009-07-31 02:54:27 +08:00
|
|
|
endif
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
# These are the modifier targets that don't do anything themselves, but
|
|
|
|
# change the behavior of the build.
|
|
|
|
# (must be defined before including definitions.make)
|
2013-02-22 10:41:51 +08:00
|
|
|
INTERNAL_MODIFIER_TARGETS := showcommands all incrementaljavac
|
2011-01-21 07:01:56 +08:00
|
|
|
|
|
|
|
.PHONY: incrementaljavac
|
|
|
|
incrementaljavac: ;
|
|
|
|
|
|
|
|
# WARNING:
|
|
|
|
# ENABLE_INCREMENTALJAVAC should NOT be enabled by default, because change of
|
|
|
|
# a Java source file won't trigger rebuild of its dependent Java files.
|
|
|
|
# You can only enable it by adding "incrementaljavac" to your make command line.
|
|
|
|
# You are responsible for the correctness of the incremental build.
|
|
|
|
# This may decrease incremental build time dramatically for large Java libraries,
|
|
|
|
# such as core.jar, framework.jar, etc.
|
|
|
|
ENABLE_INCREMENTALJAVAC :=
|
|
|
|
ifneq (,$(filter incrementaljavac, $(MAKECMDGOALS)))
|
|
|
|
ENABLE_INCREMENTALJAVAC := true
|
|
|
|
MAKECMDGOALS := $(filter-out incrementaljavac, $(MAKECMDGOALS))
|
|
|
|
endif
|
2009-03-04 11:28:42 +08:00
|
|
|
|
2012-08-22 07:59:01 +08:00
|
|
|
# EMMA_INSTRUMENT_STATIC merges the static emma library to each emma-enabled module.
|
|
|
|
ifeq (true,$(EMMA_INSTRUMENT_STATIC))
|
|
|
|
EMMA_INSTRUMENT := true
|
|
|
|
endif
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
# Bring in standard build system definitions.
|
|
|
|
include $(BUILD_SYSTEM)/definitions.mk
|
|
|
|
|
2010-09-18 07:36:06 +08:00
|
|
|
# Bring in dex_preopt.mk
|
|
|
|
include $(BUILD_SYSTEM)/dex_preopt.mk
|
|
|
|
|
2012-05-23 05:08:50 +08:00
|
|
|
ifneq ($(filter user userdebug eng,$(MAKECMDGOALS)),)
|
2009-03-04 11:28:42 +08:00
|
|
|
$(info ***************************************************************)
|
|
|
|
$(info ***************************************************************)
|
2011-11-18 06:51:12 +08:00
|
|
|
$(info Do not pass '$(filter user userdebug eng,$(MAKECMDGOALS))' on \
|
|
|
|
the make command line.)
|
2009-03-04 11:28:42 +08:00
|
|
|
$(info Set TARGET_BUILD_VARIANT in buildspec.mk, or use lunch or)
|
|
|
|
$(info choosecombo.)
|
|
|
|
$(info ***************************************************************)
|
|
|
|
$(info ***************************************************************)
|
|
|
|
$(error stopping)
|
|
|
|
endif
|
|
|
|
|
2009-03-10 02:52:11 +08:00
|
|
|
ifneq ($(filter-out $(INTERNAL_VALID_VARIANTS),$(TARGET_BUILD_VARIANT)),)
|
|
|
|
$(info ***************************************************************)
|
|
|
|
$(info ***************************************************************)
|
|
|
|
$(info Invalid variant: $(TARGET_BUILD_VARIANT)
|
|
|
|
$(info Valid values are: $(INTERNAL_VALID_VARIANTS)
|
|
|
|
$(info ***************************************************************)
|
|
|
|
$(info ***************************************************************)
|
|
|
|
$(error stopping)
|
|
|
|
endif
|
2009-03-04 11:28:42 +08:00
|
|
|
|
2012-06-07 08:19:29 +08:00
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# Variable to check java support level inside PDK build.
|
|
|
|
# Not necessary if the components is not in PDK.
|
|
|
|
# not defined : not supported
|
|
|
|
# "sdk" : sdk API only
|
|
|
|
# "platform" : platform API supproted
|
|
|
|
TARGET_BUILD_JAVA_SUPPORT_LEVEL := platform
|
|
|
|
|
2012-02-28 07:49:23 +08:00
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# The pdk (Platform Development Kit) build
|
2012-03-31 09:08:07 +08:00
|
|
|
include build/core/pdk_config.mk
|
|
|
|
|
2012-02-28 07:49:23 +08:00
|
|
|
# -----------------------------------------------------------------
|
2009-03-04 11:28:42 +08:00
|
|
|
###
|
|
|
|
### In this section we set up the things that are different
|
|
|
|
### between the build variants
|
|
|
|
###
|
|
|
|
|
2009-04-14 07:32:16 +08:00
|
|
|
is_sdk_build :=
|
2011-02-16 08:09:36 +08:00
|
|
|
|
|
|
|
ifneq ($(filter sdk win_sdk sdk_addon,$(MAKECMDGOALS)),)
|
2009-04-14 07:32:16 +08:00
|
|
|
is_sdk_build := true
|
|
|
|
endif
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
## user/userdebug ##
|
|
|
|
|
2012-05-23 05:08:50 +08:00
|
|
|
user_variant := $(filter user userdebug,$(TARGET_BUILD_VARIANT))
|
2009-03-04 11:28:42 +08:00
|
|
|
enable_target_debugging := true
|
2012-05-23 05:08:50 +08:00
|
|
|
tags_to_install :=
|
2009-03-04 11:28:42 +08:00
|
|
|
ifneq (,$(user_variant))
|
|
|
|
# Target is secure in user builds.
|
|
|
|
ADDITIONAL_DEFAULT_PROPERTIES += ro.secure=1
|
|
|
|
|
|
|
|
ifeq ($(user_variant),userdebug)
|
|
|
|
# Pick up some extra useful tools
|
2009-03-10 02:52:11 +08:00
|
|
|
tags_to_install += debug
|
2010-04-17 07:55:41 +08:00
|
|
|
|
|
|
|
# Enable Dalvik lock contention logging for userdebug builds.
|
|
|
|
ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.lockprof.threshold=500
|
2009-03-04 11:28:42 +08:00
|
|
|
else
|
|
|
|
# Disable debugging in plain user builds.
|
|
|
|
enable_target_debugging :=
|
|
|
|
endif
|
2010-09-08 08:45:44 +08:00
|
|
|
|
2011-06-01 01:29:47 +08:00
|
|
|
# Turn on Dalvik preoptimization for user builds, but only if not
|
|
|
|
# explicitly disabled and the build is running on Linux (since host
|
|
|
|
# Dalvik isn't built for non-Linux hosts).
|
2014-03-21 03:57:19 +08:00
|
|
|
ifeq (,$(WITH_DEXPREOPT))
|
2011-06-01 01:29:47 +08:00
|
|
|
ifeq ($(user_variant),user)
|
|
|
|
ifeq ($(HOST_OS),linux)
|
|
|
|
WITH_DEXPREOPT := true
|
|
|
|
endif
|
|
|
|
endif
|
2010-09-28 01:37:25 +08:00
|
|
|
endif
|
2010-09-08 08:45:44 +08:00
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
# Disallow mock locations by default for user builds
|
|
|
|
ADDITIONAL_DEFAULT_PROPERTIES += ro.allow.mock.location=0
|
2010-09-08 08:45:44 +08:00
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
else # !user_variant
|
|
|
|
# Turn on checkjni for non-user builds.
|
|
|
|
ADDITIONAL_BUILD_PROPERTIES += ro.kernel.android.checkjni=1
|
|
|
|
# Set device insecure for non-user builds.
|
|
|
|
ADDITIONAL_DEFAULT_PROPERTIES += ro.secure=0
|
|
|
|
# Allow mock locations by default for non user builds
|
|
|
|
ADDITIONAL_DEFAULT_PROPERTIES += ro.allow.mock.location=1
|
|
|
|
endif # !user_variant
|
|
|
|
|
|
|
|
ifeq (true,$(strip $(enable_target_debugging)))
|
|
|
|
# Target is more debuggable and adbd is on by default
|
2011-07-02 00:31:47 +08:00
|
|
|
ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=1
|
2009-03-04 11:28:42 +08:00
|
|
|
# Include the debugging/testing OTA keys in this build.
|
|
|
|
INCLUDE_TEST_OTA_KEYS := true
|
|
|
|
else # !enable_target_debugging
|
|
|
|
# Target is less debuggable and adbd is off by default
|
2011-07-02 00:31:47 +08:00
|
|
|
ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=0
|
2009-03-04 11:28:42 +08:00
|
|
|
endif # !enable_target_debugging
|
|
|
|
|
2009-03-10 02:52:11 +08:00
|
|
|
## eng ##
|
|
|
|
|
|
|
|
ifeq ($(TARGET_BUILD_VARIANT),eng)
|
2012-05-23 05:08:50 +08:00
|
|
|
tags_to_install := debug eng
|
2011-12-02 04:46:12 +08:00
|
|
|
ifneq ($(filter ro.setupwizard.mode=ENABLED, $(call collapse-pairs, $(ADDITIONAL_BUILD_PROPERTIES))),)
|
2009-03-12 03:11:54 +08:00
|
|
|
# Don't require the setup wizard on eng builds
|
|
|
|
ADDITIONAL_BUILD_PROPERTIES := $(filter-out ro.setupwizard.mode=%,\
|
2009-10-08 01:01:13 +08:00
|
|
|
$(call collapse-pairs, $(ADDITIONAL_BUILD_PROPERTIES))) \
|
|
|
|
ro.setupwizard.mode=OPTIONAL
|
2009-03-10 02:52:11 +08:00
|
|
|
endif
|
2011-12-02 04:46:12 +08:00
|
|
|
endif
|
2009-03-10 02:52:11 +08:00
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
## sdk ##
|
|
|
|
|
2009-04-14 07:32:16 +08:00
|
|
|
ifdef is_sdk_build
|
2011-02-16 08:09:36 +08:00
|
|
|
|
|
|
|
# Detect if we want to build a repository for the SDK
|
|
|
|
sdk_repo_goal := $(strip $(filter sdk_repo,$(MAKECMDGOALS)))
|
|
|
|
MAKECMDGOALS := $(strip $(filter-out sdk_repo,$(MAKECMDGOALS)))
|
|
|
|
|
2013-06-27 08:56:08 +08:00
|
|
|
ifneq ($(words $(filter-out $(INTERNAL_MODIFIER_TARGETS) checkbuild,$(MAKECMDGOALS))),1)
|
2009-03-04 11:28:42 +08:00
|
|
|
$(error The 'sdk' target may not be specified with any other targets)
|
|
|
|
endif
|
2010-04-17 08:50:09 +08:00
|
|
|
|
2009-03-10 02:52:11 +08:00
|
|
|
# TODO: this should be eng I think. Since the sdk is built from the eng
|
|
|
|
# variant.
|
2012-05-23 05:08:50 +08:00
|
|
|
tags_to_install := debug eng
|
2009-03-04 11:28:42 +08:00
|
|
|
ADDITIONAL_BUILD_PROPERTIES += xmpp.auto-presence=true
|
|
|
|
ADDITIONAL_BUILD_PROPERTIES += ro.config.nocheckin=yes
|
|
|
|
else # !sdk
|
|
|
|
endif
|
|
|
|
|
2010-08-31 03:48:03 +08:00
|
|
|
BUILD_WITHOUT_PV := true
|
|
|
|
|
2009-04-14 05:48:35 +08:00
|
|
|
## precise GC ##
|
|
|
|
|
|
|
|
ifneq ($(filter dalvik.gc.type-precise,$(PRODUCT_TAGS)),)
|
|
|
|
# Enabling type-precise GC results in larger optimized DEX files. The
|
|
|
|
# additional storage requirements for ".odex" files can cause /system
|
|
|
|
# to overflow on some devices, so this is configured separately for
|
|
|
|
# each product.
|
|
|
|
ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.dexopt-flags=m=y
|
|
|
|
endif
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
ADDITIONAL_BUILD_PROPERTIES += net.bt.name=Android
|
|
|
|
|
|
|
|
# enable vm tracing in files for now to help track
|
|
|
|
# the cause of ANRs in the content process
|
|
|
|
ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.stack-trace-file=/data/anr/traces.txt
|
|
|
|
|
|
|
|
# ------------------------------------------------------------
|
|
|
|
# Define a function that, given a list of module tags, returns
|
|
|
|
# non-empty if that module should be installed in /system.
|
|
|
|
|
2009-03-10 02:52:11 +08:00
|
|
|
# For most goals, anything not tagged with the "tests" tag should
|
2009-03-04 11:28:42 +08:00
|
|
|
# be installed in /system.
|
|
|
|
define should-install-to-system
|
2009-03-10 02:52:11 +08:00
|
|
|
$(if $(filter tests,$(1)),,true)
|
2009-03-04 11:28:42 +08:00
|
|
|
endef
|
|
|
|
|
2009-04-14 07:32:16 +08:00
|
|
|
ifdef is_sdk_build
|
2009-03-04 11:28:42 +08:00
|
|
|
# For the sdk goal, anything with the "samples" tag should be
|
|
|
|
# installed in /data even if that module also has "eng"/"debug"/"user".
|
|
|
|
define should-install-to-system
|
2009-03-10 02:52:11 +08:00
|
|
|
$(if $(filter samples tests,$(1)),,true)
|
2009-03-04 11:28:42 +08:00
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2013-02-22 10:41:51 +08:00
|
|
|
# If they only used the modifier goals (showcommands, etc), we'll actually
|
2009-07-18 03:33:40 +08:00
|
|
|
# build the default target.
|
|
|
|
ifeq ($(filter-out $(INTERNAL_MODIFIER_TARGETS),$(MAKECMDGOALS)),)
|
|
|
|
.PHONY: $(INTERNAL_MODIFIER_TARGETS)
|
|
|
|
$(INTERNAL_MODIFIER_TARGETS): $(DEFAULT_GOAL)
|
2009-03-04 11:28:42 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
# Bring in all modules that need to be built.
|
2010-04-14 01:38:35 +08:00
|
|
|
ifeq ($(HOST_OS)-$(HOST_ARCH),darwin-ppc)
|
2009-03-04 11:28:42 +08:00
|
|
|
SDK_ONLY := true
|
2010-04-14 01:38:35 +08:00
|
|
|
$(info Building the SDK under darwin-ppc is actually obsolete and unsupported.)
|
|
|
|
$(error stop)
|
2009-03-04 11:28:42 +08:00
|
|
|
endif
|
2010-04-14 01:38:35 +08:00
|
|
|
|
|
|
|
ifeq ($(HOST_OS),windows)
|
2009-03-04 11:28:42 +08:00
|
|
|
SDK_ONLY := true
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(SDK_ONLY),true)
|
2013-03-14 06:30:35 +08:00
|
|
|
include $(TOPDIR)sdk/build/windows_sdk_whitelist.mk
|
|
|
|
include $(TOPDIR)development/build/windows_sdk_whitelist.mk
|
2009-03-04 11:28:42 +08:00
|
|
|
|
|
|
|
# Exclude tools/acp when cross-compiling windows under linux
|
|
|
|
ifeq ($(findstring Linux,$(UNAME)),)
|
|
|
|
subdirs += build/tools/acp
|
|
|
|
endif
|
|
|
|
|
|
|
|
else # !SDK_ONLY
|
|
|
|
#
|
|
|
|
# Typical build; include any Android.mk files we can find.
|
|
|
|
#
|
|
|
|
subdirs := $(TOP)
|
|
|
|
|
|
|
|
FULL_BUILD := true
|
|
|
|
|
|
|
|
endif # !SDK_ONLY
|
|
|
|
|
2010-09-15 01:09:48 +08:00
|
|
|
# Before we go and include all of the module makefiles, stash away
|
2010-10-12 07:31:49 +08:00
|
|
|
# the PRODUCT_* values so that later we can verify they are not modified.
|
|
|
|
stash_product_vars:=true
|
2010-09-15 01:09:48 +08:00
|
|
|
ifeq ($(stash_product_vars),true)
|
2010-10-12 07:31:49 +08:00
|
|
|
$(call stash-product-vars, __STASHED)
|
2010-09-15 01:09:48 +08:00
|
|
|
endif
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
ifneq ($(ONE_SHOT_MAKEFILE),)
|
|
|
|
# We've probably been invoked by the "mm" shell function
|
|
|
|
# with a subdirectory's makefile.
|
|
|
|
include $(ONE_SHOT_MAKEFILE)
|
|
|
|
# Change CUSTOM_MODULES to include only modules that were
|
|
|
|
# defined by this makefile; this will install all of those
|
|
|
|
# modules as a side-effect. Do this after including ONE_SHOT_MAKEFILE
|
|
|
|
# so that the modules will be installed in the same place they
|
|
|
|
# would have been with a normal make.
|
2010-01-08 03:19:39 +08:00
|
|
|
CUSTOM_MODULES := $(sort $(call get-tagged-modules,$(ALL_MODULE_TAGS)))
|
2009-03-04 11:28:42 +08:00
|
|
|
FULL_BUILD :=
|
|
|
|
# Stub out the notice targets, which probably aren't defined
|
|
|
|
# when using ONE_SHOT_MAKEFILE.
|
|
|
|
NOTICE-HOST-%: ;
|
|
|
|
NOTICE-TARGET-%: ;
|
2009-07-31 02:20:04 +08:00
|
|
|
|
2013-08-17 04:24:47 +08:00
|
|
|
# A helper goal printing out install paths
|
|
|
|
.PHONY: GET-INSTALL-PATH
|
|
|
|
GET-INSTALL-PATH:
|
|
|
|
@$(foreach m, $(ALL_MODULES), $(if $(ALL_MODULES.$(m).INSTALLED), \
|
|
|
|
echo 'INSTALL-PATH: $(m) $(ALL_MODULES.$(m).INSTALLED)';))
|
|
|
|
|
2009-07-31 02:20:04 +08:00
|
|
|
else # ONE_SHOT_MAKEFILE
|
|
|
|
|
2013-09-10 03:11:02 +08:00
|
|
|
ifneq ($(dont_bother),true)
|
2009-07-31 02:20:04 +08:00
|
|
|
#
|
|
|
|
# Include all of the makefiles in the system
|
|
|
|
#
|
|
|
|
|
|
|
|
# Can't use first-makefiles-under here because
|
|
|
|
# --mindepth=2 makes the prunes not work.
|
|
|
|
subdir_makefiles := \
|
2013-07-12 10:08:06 +08:00
|
|
|
$(shell build/tools/findleaves.py --prune=$(OUT_DIR) --prune=.repo --prune=.git $(subdirs) Android.mk)
|
2009-07-31 02:20:04 +08:00
|
|
|
|
2013-08-01 03:18:36 +08:00
|
|
|
$(foreach mk, $(subdir_makefiles), $(info including $(mk) ...)$(eval include $(mk)))
|
2012-05-25 12:05:19 +08:00
|
|
|
|
2013-09-10 03:11:02 +08:00
|
|
|
endif # dont_bother
|
2012-05-25 12:05:19 +08:00
|
|
|
|
2009-07-31 02:20:04 +08:00
|
|
|
endif # ONE_SHOT_MAKEFILE
|
|
|
|
|
2012-05-25 12:05:19 +08:00
|
|
|
# Now with all Android.mks loaded we can do post cleaning steps.
|
|
|
|
include $(BUILD_SYSTEM)/post_clean.mk
|
|
|
|
|
2010-09-15 01:09:48 +08:00
|
|
|
ifeq ($(stash_product_vars),true)
|
2010-10-12 07:31:49 +08:00
|
|
|
$(call assert-product-vars, __STASHED)
|
2010-09-15 01:09:48 +08:00
|
|
|
endif
|
|
|
|
|
2010-09-27 04:05:41 +08:00
|
|
|
include $(BUILD_SYSTEM)/legacy_prebuilts.mk
|
|
|
|
ifneq ($(filter-out $(GRANDFATHERED_ALL_PREBUILT),$(strip $(notdir $(ALL_PREBUILT)))),)
|
|
|
|
$(warning *** Some files have been added to ALL_PREBUILT.)
|
|
|
|
$(warning *)
|
2010-11-19 06:27:00 +08:00
|
|
|
$(warning * ALL_PREBUILT is a deprecated mechanism that)
|
2010-09-27 04:05:41 +08:00
|
|
|
$(warning * should not be used for new files.)
|
|
|
|
$(warning * As an alternative, use PRODUCT_COPY_FILES in)
|
|
|
|
$(warning * the appropriate product definition.)
|
|
|
|
$(warning * build/target/product/core.mk is the product)
|
|
|
|
$(warning * definition used in all products.)
|
|
|
|
$(warning *)
|
|
|
|
$(foreach bad_prebuilt,$(filter-out $(GRANDFATHERED_ALL_PREBUILT),$(strip $(notdir $(ALL_PREBUILT)))),$(warning * unexpected $(bad_prebuilt) in ALL_PREBUILT))
|
|
|
|
$(warning *)
|
|
|
|
$(error ALL_PREBUILT contains unexpected files)
|
|
|
|
endif
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
# -------------------------------------------------------------------
|
|
|
|
# All module makefiles have been included at this point.
|
|
|
|
# -------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
# -------------------------------------------------------------------
|
|
|
|
# Fix up CUSTOM_MODULES to refer to installed files rather than
|
|
|
|
# just bare module names. Leave unknown modules alone in case
|
|
|
|
# they're actually full paths to a particular file.
|
|
|
|
known_custom_modules := $(filter $(ALL_MODULES),$(CUSTOM_MODULES))
|
|
|
|
unknown_custom_modules := $(filter-out $(ALL_MODULES),$(CUSTOM_MODULES))
|
|
|
|
CUSTOM_MODULES := \
|
|
|
|
$(call module-installed-files,$(known_custom_modules)) \
|
|
|
|
$(unknown_custom_modules)
|
|
|
|
|
|
|
|
# -------------------------------------------------------------------
|
|
|
|
# Define dependencies for modules that require other modules.
|
|
|
|
# This can only happen now, after we've read in all module makefiles.
|
|
|
|
#
|
|
|
|
# TODO: deal with the fact that a bare module name isn't
|
|
|
|
# unambiguous enough. Maybe declare short targets like
|
|
|
|
# APPS:Quake or HOST:SHARED_LIBRARIES:libutils.
|
|
|
|
# BUG: the system image won't know to depend on modules that are
|
|
|
|
# brought in as requirements of other modules.
|
2014-02-11 14:26:23 +08:00
|
|
|
#
|
|
|
|
# Resolve the required module name to 32-bit or 64-bit variant.
|
|
|
|
ifeq ($(TARGET_IS_64_BIT),true)
|
|
|
|
# Get a list of corresponding 32-bit module names, if one exists.
|
|
|
|
define get-32-bit-modules
|
|
|
|
$(strip $(foreach m,$(1),\
|
|
|
|
$(if $(ALL_MODULES.$(m)$(TARGET_2ND_ARCH_MODULE_SUFFIX).CLASS),\
|
|
|
|
$(m)$(TARGET_2ND_ARCH_MODULE_SUFFIX))))
|
|
|
|
endef
|
|
|
|
# Get a list of corresponding 32-bit module names, if one exists;
|
|
|
|
# otherwise return the original module name
|
|
|
|
define get-32-bit-modules-if-we-can
|
|
|
|
$(strip $(foreach m,$(1),\
|
|
|
|
$(if $(ALL_MODULES.$(m)$(TARGET_2ND_ARCH_MODULE_SUFFIX).CLASS),\
|
|
|
|
$(m)$(TARGET_2ND_ARCH_MODULE_SUFFIX),
|
|
|
|
$(m))))
|
|
|
|
endef
|
|
|
|
|
|
|
|
# If a module is built for 32-bit, the required modules must be 32-bit too;
|
|
|
|
# Otherwise if the module is an exectuable or shared library,
|
|
|
|
# the required modules must be 64-bit;
|
|
|
|
# otherwise we require both 64-bit and 32-bit variant, if one exists.
|
|
|
|
$(foreach m,$(ALL_MODULES),\
|
|
|
|
$(eval r := $(ALL_MODULES.$(m).REQUIRED))\
|
|
|
|
$(if $(r),\
|
|
|
|
$(if $(ALL_MODULES.$(m).FOR_2ND_ARCH),\
|
|
|
|
$(eval r_r := $(call get-32-bit-modules-if-we-can,$(r))),\
|
|
|
|
$(if $(filter EXECUTABLES SHARED_LIBRARIES,$(ALL_MODULES.$(m).CLASS)),\
|
|
|
|
$(eval r_r := $(r)),\
|
|
|
|
$(eval r_r := $(r) $(call get-32-bit-modules,$(r)))\
|
|
|
|
)\
|
|
|
|
)\
|
|
|
|
$(eval ALL_MODULES.$(m).REQUIRED := $(r_r))\
|
|
|
|
)\
|
|
|
|
)
|
|
|
|
r_r :=
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
define add-required-deps
|
2013-02-23 06:32:30 +08:00
|
|
|
$(1): | $(2)
|
2009-03-04 11:28:42 +08:00
|
|
|
endef
|
2014-02-11 14:26:23 +08:00
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
$(foreach m,$(ALL_MODULES), \
|
|
|
|
$(eval r := $(ALL_MODULES.$(m).REQUIRED)) \
|
|
|
|
$(if $(r), \
|
|
|
|
$(eval r := $(call module-installed-files,$(r))) \
|
2013-06-07 09:05:53 +08:00
|
|
|
$(eval t_m := $(filter $(TARGET_OUT_ROOT)/%, $(ALL_MODULES.$(m).INSTALLED))) \
|
|
|
|
$(eval h_m := $(filter $(HOST_OUT_ROOT)/%, $(ALL_MODULES.$(m).INSTALLED))) \
|
|
|
|
$(eval t_r := $(filter $(TARGET_OUT_ROOT)/%, $(r))) \
|
|
|
|
$(eval h_r := $(filter $(HOST_OUT_ROOT)/%, $(r))) \
|
2014-02-01 11:22:35 +08:00
|
|
|
$(eval t_m := $(filter-out $(t_r), $(t_m))) \
|
|
|
|
$(eval h_m := $(filter-out $(h_r), $(h_m))) \
|
2013-06-07 09:05:53 +08:00
|
|
|
$(if $(t_m), $(eval $(call add-required-deps, $(t_m),$(t_r)))) \
|
|
|
|
$(if $(h_m), $(eval $(call add-required-deps, $(h_m),$(h_r)))) \
|
2009-03-04 11:28:42 +08:00
|
|
|
) \
|
|
|
|
)
|
2013-02-23 06:32:30 +08:00
|
|
|
|
2013-06-07 09:05:53 +08:00
|
|
|
t_m :=
|
|
|
|
h_m :=
|
|
|
|
t_r :=
|
|
|
|
h_r :=
|
|
|
|
|
2013-02-23 06:32:30 +08:00
|
|
|
# Resolve the dependencies on shared libraries.
|
|
|
|
$(foreach m,$(TARGET_DEPENDENCIES_ON_SHARED_LIBRARIES), \
|
|
|
|
$(eval p := $(subst :,$(space),$(m))) \
|
|
|
|
$(eval r := $(filter $(TARGET_OUT_ROOT)/%,$(call module-installed-files,\
|
|
|
|
$(subst $(comma),$(space),$(lastword $(p)))))) \
|
2013-04-16 08:32:21 +08:00
|
|
|
$(eval $(call add-required-deps,$(word 2,$(p)),$(r))))
|
2013-02-23 06:32:30 +08:00
|
|
|
$(foreach m,$(HOST_DEPENDENCIES_ON_SHARED_LIBRARIES), \
|
|
|
|
$(eval p := $(subst :,$(space),$(m))) \
|
|
|
|
$(eval r := $(filter $(HOST_OUT_ROOT)/%,$(call module-installed-files,\
|
|
|
|
$(subst $(comma),$(space),$(lastword $(p)))))) \
|
2013-04-16 08:32:21 +08:00
|
|
|
$(eval $(call add-required-deps,$(word 2,$(p)),$(r))))
|
2014-01-17 04:36:34 +08:00
|
|
|
ifdef TARGET_2ND_ARCH
|
|
|
|
$(foreach m,$($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_DEPENDENCIES_ON_SHARED_LIBRARIES), \
|
|
|
|
$(eval p := $(subst :,$(space),$(m))) \
|
|
|
|
$(eval r := $(filter $(TARGET_OUT_ROOT)/%,$(call module-installed-files,\
|
|
|
|
$(addsuffix $(TARGET_2ND_ARCH_MODULE_SUFFIX), \
|
|
|
|
$(subst $(comma),$(space),$(lastword $(p))))))) \
|
|
|
|
$(eval $(call add-required-deps,$(word 2,$(p)),$(r))))
|
|
|
|
endif
|
2013-02-23 06:32:30 +08:00
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
m :=
|
|
|
|
r :=
|
2013-02-23 06:32:30 +08:00
|
|
|
p :=
|
2009-03-04 11:28:42 +08:00
|
|
|
add-required-deps :=
|
|
|
|
|
|
|
|
# -------------------------------------------------------------------
|
|
|
|
# Figure out our module sets.
|
2012-05-23 05:08:50 +08:00
|
|
|
#
|
2009-03-04 11:28:42 +08:00
|
|
|
# Of the modules defined by the component makefiles,
|
|
|
|
# determine what we actually want to build.
|
|
|
|
|
|
|
|
ifdef FULL_BUILD
|
|
|
|
# The base list of modules to build for this product is specified
|
|
|
|
# by the appropriate product definition file, which was included
|
2014-02-11 14:26:23 +08:00
|
|
|
# by product_config.mk.
|
2012-07-12 10:38:48 +08:00
|
|
|
product_MODULES := $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES)
|
2012-08-24 06:08:34 +08:00
|
|
|
# Filter out the overridden packages before doing expansion
|
|
|
|
product_MODULES := $(filter-out $(foreach p, $(product_MODULES), \
|
|
|
|
$(PACKAGES.$(p).OVERRIDES)), $(product_MODULES))
|
2014-02-11 14:26:23 +08:00
|
|
|
|
|
|
|
# Resolve the :32 :64 module name
|
|
|
|
modules_32 := $(patsubst %:32,%,$(filter %:32, $(product_MODULES)))
|
|
|
|
modules_64 := $(patsubst %:64,%,$(filter %:64, $(product_MODULES)))
|
|
|
|
modules_rest := $(filter-out %:32 %:64,$(product_MODULES))
|
|
|
|
ifeq ($(TARGET_IS_64_BIT),true)
|
|
|
|
product_MODULES := $(addsuffix $(TARGET_2ND_ARCH_MODULE_SUFFIX),$(modules_32))
|
|
|
|
product_MODULES += $(modules_64)
|
|
|
|
# For the rest we add both
|
|
|
|
product_MODULES += $(call get-32-bit-modules, $(modules_rest))
|
|
|
|
product_MODULES += $(modules_rest)
|
|
|
|
else
|
|
|
|
product_MODULES := $(modules_32) $(modules_64) $(modules_rest)
|
|
|
|
endif
|
|
|
|
|
2012-07-12 10:38:48 +08:00
|
|
|
$(call expand-required-modules,product_MODULES,$(product_MODULES))
|
|
|
|
product_FILES := $(call module-installed-files, $(product_MODULES))
|
2012-05-23 05:08:50 +08:00
|
|
|
ifeq (0,1)
|
2012-07-12 10:38:48 +08:00
|
|
|
$(info product_FILES for $(TARGET_DEVICE) ($(INTERNAL_PRODUCT)):)
|
|
|
|
$(foreach p,$(product_FILES),$(info : $(p)))
|
2012-05-23 05:08:50 +08:00
|
|
|
$(error done)
|
|
|
|
endif
|
2009-03-04 11:28:42 +08:00
|
|
|
else
|
|
|
|
# We're not doing a full build, and are probably only including
|
|
|
|
# a subset of the module makefiles. Don't try to build any modules
|
|
|
|
# requested by the product, because we probably won't have rules
|
|
|
|
# to build them.
|
2012-07-12 10:38:48 +08:00
|
|
|
product_FILES :=
|
2009-03-04 11:28:42 +08:00
|
|
|
endif
|
|
|
|
|
2012-06-06 06:54:09 +08:00
|
|
|
eng_MODULES := $(sort \
|
|
|
|
$(call get-tagged-modules,eng) \
|
|
|
|
$(call module-installed-files, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_ENG)) \
|
|
|
|
)
|
|
|
|
debug_MODULES := $(sort \
|
|
|
|
$(call get-tagged-modules,debug) \
|
|
|
|
$(call module-installed-files, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_DEBUG)) \
|
|
|
|
)
|
|
|
|
tests_MODULES := $(sort \
|
|
|
|
$(call get-tagged-modules,tests) \
|
|
|
|
$(call module-installed-files, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_TESTS)) \
|
|
|
|
)
|
2009-03-04 11:28:42 +08:00
|
|
|
|
2012-05-23 05:08:50 +08:00
|
|
|
# TODO: Remove the 3 places in the tree that use ALL_DEFAULT_INSTALLED_MODULES
|
|
|
|
# and get rid of it from this list.
|
|
|
|
modules_to_install := $(sort \
|
2012-05-23 08:33:22 +08:00
|
|
|
$(ALL_DEFAULT_INSTALLED_MODULES) \
|
2012-07-12 10:38:48 +08:00
|
|
|
$(product_FILES) \
|
2012-05-23 08:33:22 +08:00
|
|
|
$(foreach tag,$(tags_to_install),$($(tag)_MODULES)) \
|
|
|
|
$(CUSTOM_MODULES) \
|
|
|
|
)
|
2009-03-04 11:28:42 +08:00
|
|
|
|
|
|
|
# Some packages may override others using LOCAL_OVERRIDES_PACKAGES.
|
|
|
|
# Filter out (do not install) any overridden packages.
|
2009-03-10 02:52:11 +08:00
|
|
|
overridden_packages := $(call get-package-overrides,$(modules_to_install))
|
2009-03-04 11:28:42 +08:00
|
|
|
ifdef overridden_packages
|
2009-03-10 02:52:11 +08:00
|
|
|
# old_modules_to_install := $(modules_to_install)
|
|
|
|
modules_to_install := \
|
2009-03-04 11:28:42 +08:00
|
|
|
$(filter-out $(foreach p,$(overridden_packages),$(p) %/$(p).apk), \
|
2009-03-10 02:52:11 +08:00
|
|
|
$(modules_to_install))
|
2009-03-04 11:28:42 +08:00
|
|
|
endif
|
2009-03-10 02:52:11 +08:00
|
|
|
#$(error filtered out
|
|
|
|
# $(filter-out $(modules_to_install),$(old_modules_to_install)))
|
2009-03-04 11:28:42 +08:00
|
|
|
|
|
|
|
# Don't include any GNU targets in the SDK. It's ok (and necessary)
|
|
|
|
# to build the host tools, but nothing that's going to be installed
|
|
|
|
# on the target (including static libraries).
|
2009-04-14 07:32:16 +08:00
|
|
|
ifdef is_sdk_build
|
2009-03-04 11:28:42 +08:00
|
|
|
target_gnu_MODULES := \
|
|
|
|
$(filter \
|
|
|
|
$(TARGET_OUT_INTERMEDIATES)/% \
|
|
|
|
$(TARGET_OUT)/% \
|
|
|
|
$(TARGET_OUT_DATA)/%, \
|
|
|
|
$(sort $(call get-tagged-modules,gnu)))
|
|
|
|
$(info Removing from sdk:)$(foreach d,$(target_gnu_MODULES),$(info : $(d)))
|
2009-03-10 02:52:11 +08:00
|
|
|
modules_to_install := \
|
|
|
|
$(filter-out $(target_gnu_MODULES),$(modules_to_install))
|
2011-10-09 05:31:54 +08:00
|
|
|
|
2012-06-06 06:54:09 +08:00
|
|
|
# Ensure every module listed in PRODUCT_PACKAGES* gets something installed
|
|
|
|
# TODO: Should we do this for all builds and not just the sdk?
|
2014-02-12 09:28:30 +08:00
|
|
|
dangling_modules :=
|
2011-10-09 05:31:54 +08:00
|
|
|
$(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES), \
|
2012-08-17 15:09:27 +08:00
|
|
|
$(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
|
2014-02-12 09:28:30 +08:00
|
|
|
$(eval dangling_modules += $(m))))
|
2014-02-14 07:56:34 +08:00
|
|
|
ifneq ($(TARGET_IS_64_BIT),true)
|
|
|
|
# We know those 64-bit modules don't exist in the 32-bit SDK build.
|
|
|
|
dangling_modules := $(filter-out %64,$(dangling_modules))
|
|
|
|
endif
|
2014-02-12 09:28:30 +08:00
|
|
|
ifneq ($(dangling_modules),)
|
2014-02-19 03:17:53 +08:00
|
|
|
$(warning: Modules '$(dangling_modules)' in PRODUCT_PACKAGES have nothing to install!)
|
2014-02-12 09:28:30 +08:00
|
|
|
endif
|
2012-06-06 06:54:09 +08:00
|
|
|
$(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_DEBUG), \
|
2012-08-17 15:09:27 +08:00
|
|
|
$(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
|
2012-08-17 16:26:41 +08:00
|
|
|
$(warning $(ALL_MODULES.$(m).MAKEFILE): Module '$(m)' in PRODUCT_PACKAGES_DEBUG has nothing to install!)))
|
2012-06-06 06:54:09 +08:00
|
|
|
$(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_ENG), \
|
2012-08-17 15:09:27 +08:00
|
|
|
$(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
|
2012-08-17 16:26:41 +08:00
|
|
|
$(warning $(ALL_MODULES.$(m).MAKEFILE): Module '$(m)' in PRODUCT_PACKAGES_ENG has nothing to install!)))
|
2012-06-06 06:54:09 +08:00
|
|
|
$(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_TESTS), \
|
2012-08-17 15:09:27 +08:00
|
|
|
$(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
|
2012-08-17 16:26:41 +08:00
|
|
|
$(warning $(ALL_MODULES.$(m).MAKEFILE): Module '$(m)' in PRODUCT_PACKAGES_TESTS has nothing to install!)))
|
2009-03-04 11:28:42 +08:00
|
|
|
endif
|
|
|
|
|
2009-07-18 03:33:40 +08:00
|
|
|
# build/core/Makefile contains extra stuff that we don't want to pollute this
|
2009-03-04 11:28:42 +08:00
|
|
|
# top-level makefile with. It expects that ALL_DEFAULT_INSTALLED_MODULES
|
|
|
|
# contains everything that's built during the current make, but it also further
|
|
|
|
# extends ALL_DEFAULT_INSTALLED_MODULES.
|
2009-03-10 02:52:11 +08:00
|
|
|
ALL_DEFAULT_INSTALLED_MODULES := $(modules_to_install)
|
2009-03-04 11:28:42 +08:00
|
|
|
include $(BUILD_SYSTEM)/Makefile
|
2009-03-10 02:52:11 +08:00
|
|
|
modules_to_install := $(sort $(ALL_DEFAULT_INSTALLED_MODULES))
|
2009-03-04 11:28:42 +08:00
|
|
|
ALL_DEFAULT_INSTALLED_MODULES :=
|
|
|
|
|
2012-05-22 03:16:05 +08:00
|
|
|
|
2009-07-18 03:33:40 +08:00
|
|
|
# These are additional goals that we build, in order to make sure that there
|
|
|
|
# is as little code as possible in the tree that doesn't build.
|
|
|
|
modules_to_check := $(foreach m,$(ALL_MODULES),$(ALL_MODULES.$(m).CHECKED))
|
|
|
|
|
|
|
|
# If you would like to build all goals, and not skip any intermediate
|
|
|
|
# steps, you can pass the "all" modifier goal on the commandline.
|
|
|
|
ifneq ($(filter all,$(MAKECMDGOALS)),)
|
|
|
|
modules_to_check += $(foreach m,$(ALL_MODULES),$(ALL_MODULES.$(m).BUILT))
|
|
|
|
endif
|
|
|
|
|
|
|
|
# for easier debugging
|
|
|
|
modules_to_check := $(sort $(modules_to_check))
|
|
|
|
#$(error modules_to_check $(modules_to_check))
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
# -------------------------------------------------------------------
|
|
|
|
# This is used to to get the ordering right, you can also use these,
|
|
|
|
# but they're considered undocumented, so don't complain if their
|
|
|
|
# behavior changes.
|
|
|
|
.PHONY: prebuilt
|
|
|
|
prebuilt: $(ALL_PREBUILT)
|
|
|
|
|
|
|
|
# An internal target that depends on all copied headers
|
|
|
|
# (see copy_headers.make). Other targets that need the
|
|
|
|
# headers to be copied first can depend on this target.
|
|
|
|
.PHONY: all_copied_headers
|
|
|
|
all_copied_headers: ;
|
|
|
|
|
|
|
|
$(ALL_C_CPP_ETC_OBJECTS): | all_copied_headers
|
|
|
|
|
|
|
|
# All the droid stuff, in directories
|
|
|
|
.PHONY: files
|
2009-07-18 03:33:40 +08:00
|
|
|
files: prebuilt \
|
|
|
|
$(modules_to_install) \
|
|
|
|
$(INSTALLED_ANDROID_INFO_TXT_TARGET)
|
2009-03-04 11:28:42 +08:00
|
|
|
|
|
|
|
# -------------------------------------------------------------------
|
|
|
|
|
2009-07-18 03:33:40 +08:00
|
|
|
.PHONY: checkbuild
|
|
|
|
checkbuild: $(modules_to_check)
|
2013-02-22 10:41:51 +08:00
|
|
|
ifeq (true,$(ANDROID_BUILD_EVERYTHING_BY_DEFAULT)$(filter $(MAKECMDGOALS),checkbuild))
|
|
|
|
droid: checkbuild
|
|
|
|
else
|
|
|
|
# ANDROID_BUILD_EVERYTHING_BY_DEFAULT not set, or checkbuild is one of the cmd goals.
|
|
|
|
checkbuild: droid
|
|
|
|
endif
|
2009-07-18 03:33:40 +08:00
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
.PHONY: ramdisk
|
|
|
|
ramdisk: $(INSTALLED_RAMDISK_TARGET)
|
|
|
|
|
2011-12-17 03:27:52 +08:00
|
|
|
.PHONY: factory_ramdisk
|
|
|
|
factory_ramdisk: $(INSTALLED_FACTORY_RAMDISK_TARGET)
|
|
|
|
|
2012-05-18 02:32:26 +08:00
|
|
|
.PHONY: factory_bundle
|
|
|
|
factory_bundle: $(INSTALLED_FACTORY_BUNDLE_TARGET)
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
.PHONY: systemtarball
|
|
|
|
systemtarball: $(INSTALLED_SYSTEMTARBALL_TARGET)
|
|
|
|
|
2010-06-05 06:24:49 +08:00
|
|
|
.PHONY: boottarball
|
|
|
|
boottarball: $(INSTALLED_BOOTTARBALL_TARGET)
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
.PHONY: userdataimage
|
|
|
|
userdataimage: $(INSTALLED_USERDATAIMAGE_TARGET)
|
|
|
|
|
2011-02-02 06:52:05 +08:00
|
|
|
ifneq (,$(filter userdataimage, $(MAKECMDGOALS)))
|
|
|
|
$(call dist-for-goals, userdataimage, $(BUILT_USERDATAIMAGE_TARGET))
|
|
|
|
endif
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
.PHONY: userdatatarball
|
|
|
|
userdatatarball: $(INSTALLED_USERDATATARBALL_TARGET)
|
|
|
|
|
2011-11-05 02:37:01 +08:00
|
|
|
.PHONY: cacheimage
|
|
|
|
cacheimage: $(INSTALLED_CACHEIMAGE_TARGET)
|
|
|
|
|
2013-03-21 02:02:05 +08:00
|
|
|
.PHONY: vendorimage
|
|
|
|
vendorimage: $(INSTALLED_VENDORIMAGE_TARGET)
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
.PHONY: bootimage
|
|
|
|
bootimage: $(INSTALLED_BOOTIMAGE_TARGET)
|
|
|
|
|
2013-02-09 10:01:04 +08:00
|
|
|
# phony target that include any targets in $(ALL_MODULES)
|
|
|
|
.PHONY: all_modules
|
|
|
|
ifndef BUILD_MODULES_IN_PATHS
|
|
|
|
all_modules: $(ALL_MODULES)
|
|
|
|
else
|
|
|
|
# BUILD_MODULES_IN_PATHS is a list of paths relative to the top of the tree
|
|
|
|
module_path_patterns := $(foreach p, $(BUILD_MODULES_IN_PATHS),\
|
|
|
|
$(if $(filter %/,$(p)),$(p)%,$(p)/%))
|
|
|
|
my_all_modules := $(sort $(foreach m, $(ALL_MODULES),$(if $(filter\
|
|
|
|
$(module_path_patterns), $(addsuffix /,$(ALL_MODULES.$(m).PATH))),$(m))))
|
|
|
|
all_modules: $(my_all_modules)
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
# Build files and then package it into the rom formats
|
|
|
|
.PHONY: droidcore
|
|
|
|
droidcore: files \
|
|
|
|
systemimage \
|
|
|
|
$(INSTALLED_BOOTIMAGE_TARGET) \
|
|
|
|
$(INSTALLED_RECOVERYIMAGE_TARGET) \
|
|
|
|
$(INSTALLED_USERDATAIMAGE_TARGET) \
|
2011-11-05 02:37:01 +08:00
|
|
|
$(INSTALLED_CACHEIMAGE_TARGET) \
|
2013-03-21 02:02:05 +08:00
|
|
|
$(INSTALLED_VENDORIMAGE_TARGET) \
|
2009-03-04 11:28:42 +08:00
|
|
|
$(INSTALLED_FILES_FILE)
|
|
|
|
|
2010-12-09 12:07:48 +08:00
|
|
|
# dist_files only for putting your library into the dist directory with a full build.
|
|
|
|
.PHONY: dist_files
|
2010-07-14 12:08:38 +08:00
|
|
|
|
2010-06-10 07:35:58 +08:00
|
|
|
ifneq ($(TARGET_BUILD_APPS),)
|
2010-06-10 09:18:31 +08:00
|
|
|
# If this build is just for apps, only build apps and not the full system by default.
|
2009-03-04 11:28:42 +08:00
|
|
|
|
2010-06-10 07:35:58 +08:00
|
|
|
unbundled_build_modules :=
|
|
|
|
ifneq ($(filter all,$(TARGET_BUILD_APPS)),)
|
2010-06-25 06:08:33 +08:00
|
|
|
# If they used the magic goal "all" then build all apps in the source tree.
|
|
|
|
unbundled_build_modules := $(foreach m,$(sort $(ALL_MODULES)),$(if $(filter APPS,$(ALL_MODULES.$(m).CLASS)),$(m)))
|
2010-06-10 07:35:58 +08:00
|
|
|
else
|
|
|
|
unbundled_build_modules := $(TARGET_BUILD_APPS)
|
|
|
|
endif
|
2010-05-12 05:36:32 +08:00
|
|
|
|
2013-06-13 06:25:23 +08:00
|
|
|
# Dist the installed files if they exist.
|
2012-08-16 03:22:44 +08:00
|
|
|
apps_only_installed_files := $(foreach m,$(unbundled_build_modules),$(ALL_MODULES.$(m).INSTALLED))
|
|
|
|
$(call dist-for-goals,apps_only, $(apps_only_installed_files))
|
2013-06-13 06:25:23 +08:00
|
|
|
# For uninstallable modules such as static Java library, we have to dist the built file,
|
|
|
|
# as <module_name>.<suffix>
|
|
|
|
apps_only_dist_built_files := $(foreach m,$(unbundled_build_modules),$(if $(ALL_MODULES.$(m).INSTALLED),,\
|
2013-08-28 06:04:57 +08:00
|
|
|
$(if $(ALL_MODULES.$(m).BUILT),$(ALL_MODULES.$(m).BUILT):$(m)$(suffix $(ALL_MODULES.$(m).BUILT)))))
|
2013-06-13 06:25:23 +08:00
|
|
|
$(call dist-for-goals,apps_only, $(apps_only_dist_built_files))
|
2012-08-16 03:22:44 +08:00
|
|
|
|
|
|
|
ifeq ($(EMMA_INSTRUMENT),true)
|
|
|
|
$(EMMA_META_ZIP) : $(apps_only_installed_files)
|
|
|
|
|
|
|
|
$(call dist-for-goals,apps_only, $(EMMA_META_ZIP))
|
|
|
|
endif
|
2010-06-10 07:35:58 +08:00
|
|
|
|
2013-08-23 11:52:47 +08:00
|
|
|
$(PROGUARD_DICT_ZIP) : $(apps_only_installed_files)
|
|
|
|
$(call dist-for-goals,apps_only, $(PROGUARD_DICT_ZIP))
|
|
|
|
|
2010-06-10 09:18:31 +08:00
|
|
|
.PHONY: apps_only
|
|
|
|
apps_only: $(unbundled_build_modules)
|
2010-06-10 07:35:58 +08:00
|
|
|
|
2010-06-10 09:18:31 +08:00
|
|
|
droid: apps_only
|
|
|
|
|
2013-08-23 11:02:03 +08:00
|
|
|
# Combine the NOTICE files for a apps_only build
|
|
|
|
$(eval $(call combine-notice-files, \
|
|
|
|
$(target_notice_file_txt), \
|
|
|
|
$(target_notice_file_html), \
|
|
|
|
"Notices for files for apps:", \
|
|
|
|
$(TARGET_OUT_NOTICE_FILES), \
|
|
|
|
$(apps_only_installed_files)))
|
|
|
|
|
|
|
|
|
2010-06-10 09:18:31 +08:00
|
|
|
else # TARGET_BUILD_APPS
|
|
|
|
$(call dist-for-goals, droidcore, \
|
2010-06-10 07:35:58 +08:00
|
|
|
$(INTERNAL_UPDATE_PACKAGE_TARGET) \
|
|
|
|
$(INTERNAL_OTA_PACKAGE_TARGET) \
|
|
|
|
$(SYMBOLS_ZIP) \
|
|
|
|
$(INSTALLED_FILES_FILE) \
|
|
|
|
$(INSTALLED_BUILD_PROP_TARGET) \
|
|
|
|
$(BUILT_TARGET_FILES_PACKAGE) \
|
|
|
|
$(INSTALLED_ANDROID_INFO_TXT_TARGET) \
|
2010-07-02 01:07:28 +08:00
|
|
|
$(INSTALLED_RAMDISK_TARGET) \
|
2011-12-17 03:27:52 +08:00
|
|
|
$(INSTALLED_FACTORY_RAMDISK_TARGET) \
|
2012-05-18 02:32:26 +08:00
|
|
|
$(INSTALLED_FACTORY_BUNDLE_TARGET) \
|
2010-06-10 07:35:58 +08:00
|
|
|
)
|
|
|
|
|
2013-07-27 03:19:20 +08:00
|
|
|
# Put a copy of the radio/bootloader files in the dist dir.
|
|
|
|
$(foreach f,$(INSTALLED_RADIOIMAGE_TARGET), \
|
|
|
|
$(call dist-for-goals, droidcore, $(f)))
|
|
|
|
|
2012-03-30 05:31:08 +08:00
|
|
|
ifneq ($(TARGET_BUILD_PDK),true)
|
|
|
|
$(call dist-for-goals, droidcore, \
|
|
|
|
$(APPS_ZIP) \
|
|
|
|
$(INTERNAL_EMULATOR_PACKAGE_TARGET) \
|
|
|
|
$(PACKAGE_STATS_FILE) \
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
2012-08-16 03:22:44 +08:00
|
|
|
ifeq ($(EMMA_INSTRUMENT),true)
|
|
|
|
$(EMMA_META_ZIP) : $(INSTALLED_SYSTEMIMAGE)
|
|
|
|
|
|
|
|
$(call dist-for-goals, dist_files, $(EMMA_META_ZIP))
|
|
|
|
endif
|
|
|
|
|
2010-06-10 09:18:31 +08:00
|
|
|
# Building a full system-- the default is to build droidcore
|
2010-12-09 12:07:48 +08:00
|
|
|
droid: droidcore dist_files
|
2010-05-14 07:46:21 +08:00
|
|
|
|
2010-06-16 06:43:13 +08:00
|
|
|
endif # TARGET_BUILD_APPS
|
2009-03-04 11:28:42 +08:00
|
|
|
|
|
|
|
.PHONY: docs
|
|
|
|
docs: $(ALL_DOCS)
|
|
|
|
|
|
|
|
.PHONY: sdk
|
|
|
|
ALL_SDK_TARGETS := $(INTERNAL_SDK_TARGET)
|
|
|
|
sdk: $(ALL_SDK_TARGETS)
|
2011-02-16 08:09:36 +08:00
|
|
|
$(call dist-for-goals,sdk win_sdk, \
|
2011-03-08 08:13:32 +08:00
|
|
|
$(ALL_SDK_TARGETS) \
|
|
|
|
$(SYMBOLS_ZIP) \
|
|
|
|
$(INSTALLED_BUILD_PROP_TARGET) \
|
|
|
|
)
|
2009-03-04 11:28:42 +08:00
|
|
|
|
2013-01-30 08:59:18 +08:00
|
|
|
# umbrella targets to assit engineers in verifying builds
|
2013-01-31 03:22:06 +08:00
|
|
|
.PHONY: java native target host java-host java-target native-host native-target \
|
2013-01-30 08:59:18 +08:00
|
|
|
java-host-tests java-target-tests native-host-tests native-target-tests \
|
|
|
|
java-tests native-tests host-tests target-tests
|
|
|
|
# some synonyms
|
|
|
|
.PHONY: host-java target-java host-native target-native \
|
|
|
|
target-java-tests target-native-tests
|
|
|
|
host-java : java-host
|
|
|
|
target-java : java-target
|
|
|
|
host-native : native-host
|
|
|
|
target-native : native-target
|
|
|
|
target-java-tests : java-target-tests
|
|
|
|
target-native-tests : native-target-tests
|
|
|
|
|
|
|
|
|
2012-06-19 09:45:40 +08:00
|
|
|
.PHONY: lintall
|
|
|
|
|
2014-02-27 03:55:38 +08:00
|
|
|
ifneq (,$(filter samplecode, $(MAKECMDGOALS)))
|
2010-02-26 12:20:43 +08:00
|
|
|
.PHONY: samplecode
|
|
|
|
sample_MODULES := $(sort $(call get-tagged-modules,samples))
|
|
|
|
sample_APKS_DEST_PATH := $(TARGET_COMMON_OUT_ROOT)/samples
|
|
|
|
sample_APKS_COLLECTION := \
|
|
|
|
$(foreach module,$(sample_MODULES),$(sample_APKS_DEST_PATH)/$(notdir $(module)))
|
|
|
|
$(foreach module,$(sample_MODULES),$(eval $(call \
|
|
|
|
copy-one-file,$(module),$(sample_APKS_DEST_PATH)/$(notdir $(module)))))
|
|
|
|
sample_ADDITIONAL_INSTALLED := \
|
|
|
|
$(filter-out $(modules_to_install) $(modules_to_check) $(ALL_PREBUILT),$(sample_MODULES))
|
|
|
|
samplecode: $(sample_APKS_COLLECTION)
|
|
|
|
@echo "Collect sample code apks: $^"
|
|
|
|
# remove apks that are not intended to be installed.
|
|
|
|
rm -f $(sample_ADDITIONAL_INSTALLED)
|
2014-02-27 03:55:38 +08:00
|
|
|
endif # samplecode in $(MAKECMDGOALS)
|
2010-02-26 12:20:43 +08:00
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
.PHONY: findbugs
|
|
|
|
findbugs: $(INTERNAL_FINDBUGS_HTML_TARGET) $(INTERNAL_FINDBUGS_XML_TARGET)
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
@rm -rf $(OUT_DIR)
|
|
|
|
@echo "Entire build directory removed."
|
|
|
|
|
2010-09-04 01:25:11 +08:00
|
|
|
.PHONY: clobber
|
|
|
|
clobber: clean
|
|
|
|
|
2009-03-04 11:28:42 +08:00
|
|
|
# The rules for dataclean and installclean are defined in cleanbuild.mk.
|
|
|
|
|
|
|
|
#xxx scrape this from ALL_MODULE_NAME_TAGS
|
|
|
|
.PHONY: modules
|
|
|
|
modules:
|
|
|
|
@echo "Available sub-modules:"
|
|
|
|
@echo "$(call module-names-for-tag-list,$(ALL_MODULE_TAGS))" | \
|
2009-01-24 00:11:30 +08:00
|
|
|
tr -s ' ' '\n' | sort -u | $(COLUMN)
|
2009-03-04 11:28:42 +08:00
|
|
|
|
|
|
|
.PHONY: showcommands
|
|
|
|
showcommands:
|
|
|
|
@echo >/dev/null
|
2012-05-19 11:41:38 +08:00
|
|
|
|
|
|
|
.PHONY: nothing
|
|
|
|
nothing:
|
|
|
|
@echo Successfully read the makefiles.
|