blob: 789278200634c35c8c32bf224d9c12a5cedd5075 [file] [log] [blame]
Ying Wang6714dbc2010-03-30 16:42:15 -07001# Only use ANDROID_BUILD_SHELL to wrap around bash.
2# DO NOT use other shells such as zsh.
Ying Wang2ce495a2010-03-30 12:55:13 -07003ifdef ANDROID_BUILD_SHELL
4SHELL := $(ANDROID_BUILD_SHELL)
5else
The Android Open Source Project88b60792009-03-03 19:28:42 -08006# Use bash, not whatever shell somebody has installed as /bin/sh
7# This is repeated in config.mk, since envsetup.sh runs that file
8# directly.
9SHELL := /bin/bash
Ying Wang2ce495a2010-03-30 12:55:13 -070010endif
The Android Open Source Project88b60792009-03-03 19:28:42 -080011
12# this turns off the suffix rules built into make
13.SUFFIXES:
14
David 'Digit' Turner52d697d2011-06-22 23:18:57 +020015# this turns off the RCS / SCCS implicit rules of GNU Make
16% : RCS/%,v
17% : RCS/%
18% : %,v
19% : s.%
20% : SCCS/s.%
21
The Android Open Source Project88b60792009-03-03 19:28:42 -080022# If a rule fails, delete $@.
23.DELETE_ON_ERROR:
24
25# Figure out where we are.
26#TOP := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)))
27#TOP := $(patsubst %/,%,$(TOP))
28
29# TOPDIR is the normal variable you should use, because
30# if we are executing relative to the current directory
31# it can be "", whereas TOP must be "." which causes
32# pattern matching probles when make strips off the
33# trailing "./" from paths in various places.
34#ifeq ($(TOP),.)
35#TOPDIR :=
36#else
37#TOPDIR := $(TOP)/
38#endif
39
Raphael76bf62d2011-12-19 13:37:55 -080040# Check for broken versions of make.
41# (Allow any version under Cygwin since we don't actually build the platform there.)
42ifeq (,$(findstring CYGWIN,$(shell uname -sm)))
synergydev2b537262013-10-16 10:36:32 -070043ifneq (1,$(strip $(shell expr $(MAKE_VERSION) \>= 3.81)))
The Android Open Source Project88b60792009-03-03 19:28:42 -080044$(warning ********************************************************************************)
45$(warning * You are using version $(MAKE_VERSION) of make.)
synergydev2b537262013-10-16 10:36:32 -070046$(warning * Android can only be built by versions 3.81 and higher.)
Jean-Baptiste Queru5d4bcb42012-04-19 14:53:27 -070047$(warning * see https://source.android.com/source/download.html)
The Android Open Source Project88b60792009-03-03 19:28:42 -080048$(warning ********************************************************************************)
49$(error stopping)
50endif
Raphael76bf62d2011-12-19 13:37:55 -080051endif
The Android Open Source Project88b60792009-03-03 19:28:42 -080052
Ying Wang9ccacd72012-05-22 18:29:02 -070053# Absolute path of the present working direcotry.
54# This overrides the shell variable $PWD, which does not necessarily points to
55# the top of the source tree, for example when "make -C" is used in m/mm/mmm.
56PWD := $(shell pwd)
57
The Android Open Source Project88b60792009-03-03 19:28:42 -080058TOP := .
59TOPDIR :=
60
61BUILD_SYSTEM := $(TOPDIR)build/core
62
63# This is the default target. It must be the first declared target.
Joe Onoratoda12daf2010-06-09 18:18:31 -070064.PHONY: droid
The Android Open Source Project88b60792009-03-03 19:28:42 -080065DEFAULT_GOAL := droid
66$(DEFAULT_GOAL):
67
Joe Onorato77dc0a52010-05-17 18:16:11 -070068# Used to force goals to build. Only use for conditionally defined goals.
69.PHONY: FORCE
70FORCE:
71
Ying Wangad7fd292013-08-08 16:34:29 -070072# These goals don't need to collect and include Android.mks/CleanSpec.mks
73# in the source tree.
74dont_bother_goals := clean clobber dataclean installclean \
75 help out \
76 snod systemimage-nodeps \
77 stnod systemtarball-nodeps \
78 userdataimage-nodeps userdatatarball-nodeps \
79 cacheimage-nodeps \
80 vendorimage-nodeps \
81 ramdisk-nodeps \
82 bootimage-nodeps
83
84ifneq ($(filter $(dont_bother_goals), $(MAKECMDGOALS)),)
85dont_bother := true
86endif
87
Daniel Sandler95661222010-10-28 15:31:47 -040088# Targets that provide quick help on the build system.
89include $(BUILD_SYSTEM)/help.mk
90
The Android Open Source Project88b60792009-03-03 19:28:42 -080091# Set up various standard variables based on configuration
92# and host information.
93include $(BUILD_SYSTEM)/config.mk
94
Ying Wang50e52fa2013-02-22 18:15:29 -080095# This allows us to force a clean build - included after the config.mk
The Android Open Source Project88b60792009-03-03 19:28:42 -080096# environment setup is done, but before we generate any dependencies. This
97# file does the rm -rf inline so the deps which are all done below will
98# be generated correctly
99include $(BUILD_SYSTEM)/cleanbuild.mk
100
Ying Wang63d94fa2012-12-13 18:23:01 -0800101# Include the google-specific config
102-include vendor/google/build/config.mk
103
Joe Onoratoe35a4452012-07-25 17:55:03 -0700104VERSION_CHECK_SEQUENCE_NUMBER := 3
Joe Onorato1de66882009-07-30 11:54:27 -0700105-include $(OUT_DIR)/versions_checked.mk
106ifneq ($(VERSION_CHECK_SEQUENCE_NUMBER),$(VERSIONS_CHECKED))
107
108$(info Checking build tools versions...)
109
The Android Open Source Project88b60792009-03-03 19:28:42 -0800110ifneq ($(HOST_OS),windows)
111ifneq ($(HOST_OS)-$(HOST_ARCH),darwin-ppc)
112# check for a case sensitive file system
113ifneq (a,$(shell mkdir -p $(OUT_DIR) ; \
114 echo a > $(OUT_DIR)/casecheck.txt; \
115 echo B > $(OUT_DIR)/CaseCheck.txt; \
116 cat $(OUT_DIR)/casecheck.txt))
117$(warning ************************************************************)
118$(warning You are building on a case-insensitive filesystem.)
119$(warning Please move your source tree to a case-sensitive filesystem.)
120$(warning ************************************************************)
121$(error Case-insensitive filesystems not supported)
122endif
123endif
124endif
125
126# Make sure that there are no spaces in the absolute path; the
127# build system can't deal with them.
128ifneq ($(words $(shell pwd)),1)
129$(warning ************************************************************)
130$(warning You are building in a directory whose absolute path contains)
131$(warning a space character:)
132$(warning $(space))
133$(warning "$(shell pwd)")
134$(warning $(space))
135$(warning Please move your source tree to a path that does not contain)
136$(warning any spaces.)
137$(warning ************************************************************)
138$(error Directory names containing spaces not supported)
139endif
140
Narayan Kamathe2d27882013-12-05 12:26:35 +0000141# Check for the current JDK.
142#
143# For Java 1.7, we require OpenJDK on linux and Oracle JDK on Mac OS.
144# For Java 1.6, we require Oracle for all host OSes.
145requires_openjdk := false
146ifneq ($(EXPERIMENTAL_USE_JAVA7),)
147ifeq ($(HOST_OS), linux)
148requires_openjdk := true
149endif
150endif
151
Ying Wang7b66d362013-11-13 15:05:15 -0800152java_version_str := $(shell java -version 2>&1)
153javac_version_str := $(shell javac -version 2>&1)
154
Ying Wangd1dbe7f2013-09-20 17:11:43 -0700155# Check for the current jdk
Narayan Kamathe2d27882013-12-05 12:26:35 +0000156ifeq ($(requires_openjdk), true)
Ying Wangd1dbe7f2013-09-20 17:11:43 -0700157# The user asked for java7 openjdk, so check that the host
158# java version is really openjdk
Ying Wang7b66d362013-11-13 15:05:15 -0800159ifeq ($(shell echo '$(java_version_str)' | grep -i openjdk),)
Ying Wangd1dbe7f2013-09-20 17:11:43 -0700160$(info ************************************************************)
161$(info You asked for an OpenJDK 7 build but your version is)
Ying Wang7b66d362013-11-13 15:05:15 -0800162$(info $(java_version_str).)
Ying Wangd1dbe7f2013-09-20 17:11:43 -0700163$(info ************************************************************)
164$(error stop)
165endif # java version is not OpenJdk
Narayan Kamathe2d27882013-12-05 12:26:35 +0000166else # if requires_openjdk
Ying Wang7b66d362013-11-13 15:05:15 -0800167ifneq ($(shell echo '$(java_version_str)' | grep -i openjdk),)
Tim Roes304f5192013-02-23 20:25:00 +0100168$(info ************************************************************)
169$(info You are attempting to build with an unsupported JDK.)
170$(info $(space))
171$(info You use OpenJDK but only Sun/Oracle JDK is supported.)
172$(info Please follow the machine setup instructions at)
173$(info $(space)$(space)$(space)$(space)https://source.android.com/source/download.html)
174$(info ************************************************************)
175$(error stop)
Ying Wangd1dbe7f2013-09-20 17:11:43 -0700176endif # java version is not Sun Oracle JDK
Narayan Kamathe2d27882013-12-05 12:26:35 +0000177endif # if requires_openjdk
Joe Onorato9d9f3672009-06-22 18:15:38 -0700178
Ying Wangd1dbe7f2013-09-20 17:11:43 -0700179# Check for the correct version of java, should be 1.7 if
Narayan Kamathe2d27882013-12-05 12:26:35 +0000180# EXPERIMENTAL_USE_JAVA7 is set, 1.6 otherwise.
181ifneq ($(EXPERIMENTAL_USE_JAVA7),)
182required_version := "1.7.x"
Ying Wangd1dbe7f2013-09-20 17:11:43 -0700183required_javac_version := "1.7"
Ying Wang7b66d362013-11-13 15:05:15 -0800184java_version := $(shell echo '$(java_version_str)' | grep '^java .*[ "]1\.7[\. "$$]')
185javac_version := $(shell echo '$(javac_version_str)' | grep '[ "]1\.7[\. "$$]')
Narayan Kamathe2d27882013-12-05 12:26:35 +0000186else # if EXPERIMENTAL_USE_JAVA7
187required_version := "1.6.x"
Ying Wangd1dbe7f2013-09-20 17:11:43 -0700188required_javac_version := "1.6"
Ying Wang7b66d362013-11-13 15:05:15 -0800189java_version := $(shell echo '$(java_version_str)' | grep '^java .*[ "]1\.6[\. "$$]')
190javac_version := $(shell echo '$(javac_version_str)' | head -n 1 | grep '[ "]1\.6[\. "$$]')
Narayan Kamathe2d27882013-12-05 12:26:35 +0000191endif # if EXPERIMENTAL_USE_JAVA7
Ying Wangd1dbe7f2013-09-20 17:11:43 -0700192
Joe Onorato9d9f3672009-06-22 18:15:38 -0700193ifeq ($(strip $(java_version)),)
194$(info ************************************************************)
195$(info You are attempting to build with the incorrect version)
196$(info of java.)
197$(info $(space))
Ying Wang7b66d362013-11-13 15:05:15 -0800198$(info Your version is: $(java_version_str).)
Ying Wangd1dbe7f2013-09-20 17:11:43 -0700199$(info The required version is: $(required_version))
Joe Onorato9d9f3672009-06-22 18:15:38 -0700200$(info $(space))
201$(info Please follow the machine setup instructions at)
Jean-Baptiste Queru5d4bcb42012-04-19 14:53:27 -0700202$(info $(space)$(space)$(space)$(space)https://source.android.com/source/download.html)
Joe Onorato9d9f3672009-06-22 18:15:38 -0700203$(info ************************************************************)
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500204$(error stop)
Joe Onorato9d9f3672009-06-22 18:15:38 -0700205endif
206
207# Check for the correct version of javac
Joe Onorato9d9f3672009-06-22 18:15:38 -0700208ifeq ($(strip $(javac_version)),)
209$(info ************************************************************)
210$(info You are attempting to build with the incorrect version)
211$(info of javac.)
212$(info $(space))
Ying Wang7b66d362013-11-13 15:05:15 -0800213$(info Your version is: $(javac_version_str).)
Ying Wangd1dbe7f2013-09-20 17:11:43 -0700214$(info The required version is: $(required_javac_version))
Joe Onorato9d9f3672009-06-22 18:15:38 -0700215$(info $(space))
216$(info Please follow the machine setup instructions at)
Jean-Baptiste Queru5d4bcb42012-04-19 14:53:27 -0700217$(info $(space)$(space)$(space)$(space)https://source.android.com/source/download.html)
Joe Onorato9d9f3672009-06-22 18:15:38 -0700218$(info ************************************************************)
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500219$(error stop)
Joe Onorato9d9f3672009-06-22 18:15:38 -0700220endif
221
Ying Wang7b66d362013-11-13 15:05:15 -0800222
Ying Wangb036e952013-04-12 14:14:36 -0700223ifndef BUILD_EMULATOR
Ying Wang478ba5e2012-06-28 16:02:19 -0700224ifeq (darwin,$(HOST_OS))
Andrew Hsieh1dcca612012-11-09 02:06:33 -0800225GCC_REALPATH = $(realpath $(shell which $(HOST_CC)))
Ying Wang478ba5e2012-06-28 16:02:19 -0700226ifneq ($(findstring llvm-gcc,$(GCC_REALPATH)),)
227 # Using LLVM GCC results in a non functional emulator due to it
228 # not honouring global register variables
Joe Onoratoe35a4452012-07-25 17:55:03 -0700229 $(warning ****************************************)
230 $(warning * gcc is linked to llvm-gcc which will *)
231 $(warning * not create a useable emulator. *)
232 $(warning ****************************************)
Joe Onorato74e883d2012-07-25 14:28:05 -0700233 BUILD_EMULATOR := false
234else
235 BUILD_EMULATOR := true
236endif
Ying Wang7d8c5352012-07-26 10:15:21 -0700237else # HOST_OS is not darwin
238 BUILD_EMULATOR := true
239endif # HOST_OS is darwin
Ying Wangb036e952013-04-12 14:14:36 -0700240endif
Ying Wang478ba5e2012-06-28 16:02:19 -0700241
Joe Onorato1de66882009-07-30 11:54:27 -0700242$(shell echo 'VERSIONS_CHECKED := $(VERSION_CHECK_SEQUENCE_NUMBER)' \
243 > $(OUT_DIR)/versions_checked.mk)
Ying Wangb036e952013-04-12 14:14:36 -0700244$(shell echo 'BUILD_EMULATOR ?= $(BUILD_EMULATOR)' \
Joe Onoratoe35a4452012-07-25 17:55:03 -0700245 >> $(OUT_DIR)/versions_checked.mk)
Joe Onorato1de66882009-07-30 11:54:27 -0700246endif
247
The Android Open Source Project88b60792009-03-03 19:28:42 -0800248# These are the modifier targets that don't do anything themselves, but
249# change the behavior of the build.
250# (must be defined before including definitions.make)
Ying Wang31268312013-02-21 18:41:51 -0800251INTERNAL_MODIFIER_TARGETS := showcommands all incrementaljavac
Ying Wang015edd22011-01-20 15:01:56 -0800252
253.PHONY: incrementaljavac
254incrementaljavac: ;
255
256# WARNING:
257# ENABLE_INCREMENTALJAVAC should NOT be enabled by default, because change of
258# a Java source file won't trigger rebuild of its dependent Java files.
259# You can only enable it by adding "incrementaljavac" to your make command line.
260# You are responsible for the correctness of the incremental build.
261# This may decrease incremental build time dramatically for large Java libraries,
262# such as core.jar, framework.jar, etc.
263ENABLE_INCREMENTALJAVAC :=
264ifneq (,$(filter incrementaljavac, $(MAKECMDGOALS)))
265ENABLE_INCREMENTALJAVAC := true
266MAKECMDGOALS := $(filter-out incrementaljavac, $(MAKECMDGOALS))
267endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800268
Ying Wangaf4800c2012-08-21 16:59:01 -0700269# EMMA_INSTRUMENT_STATIC merges the static emma library to each emma-enabled module.
270ifeq (true,$(EMMA_INSTRUMENT_STATIC))
271EMMA_INSTRUMENT := true
272endif
273
The Android Open Source Project88b60792009-03-03 19:28:42 -0800274# Bring in standard build system definitions.
275include $(BUILD_SYSTEM)/definitions.mk
276
Ying Wange7874c42010-09-17 16:36:06 -0700277# Bring in dex_preopt.mk
278include $(BUILD_SYSTEM)/dex_preopt.mk
279
Joe Onorato6a185e42012-05-22 14:08:50 -0700280ifneq ($(filter user userdebug eng,$(MAKECMDGOALS)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800281$(info ***************************************************************)
282$(info ***************************************************************)
Ying Wangd0244b32011-11-17 14:51:12 -0800283$(info Do not pass '$(filter user userdebug eng,$(MAKECMDGOALS))' on \
284 the make command line.)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800285$(info Set TARGET_BUILD_VARIANT in buildspec.mk, or use lunch or)
286$(info choosecombo.)
287$(info ***************************************************************)
288$(info ***************************************************************)
289$(error stopping)
290endif
291
The Android Open Source Project2f312932009-03-09 11:52:11 -0700292ifneq ($(filter-out $(INTERNAL_VALID_VARIANTS),$(TARGET_BUILD_VARIANT)),)
293$(info ***************************************************************)
294$(info ***************************************************************)
295$(info Invalid variant: $(TARGET_BUILD_VARIANT)
296$(info Valid values are: $(INTERNAL_VALID_VARIANTS)
297$(info ***************************************************************)
298$(info ***************************************************************)
299$(error stopping)
300endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800301
Keun young Park7fc7aad2012-02-27 15:49:23 -0800302# -----------------------------------------------------------------
Keun young Parkefe02ce2012-06-06 17:19:29 -0700303# Variable to check java support level inside PDK build.
304# Not necessary if the components is not in PDK.
305# not defined : not supported
306# "sdk" : sdk API only
307# "platform" : platform API supproted
308TARGET_BUILD_JAVA_SUPPORT_LEVEL := platform
309
310# -----------------------------------------------------------------
Keun young Park7fc7aad2012-02-27 15:49:23 -0800311# The pdk (Platform Development Kit) build
Ying Wang82b836f2012-03-30 18:08:07 -0700312include build/core/pdk_config.mk
Keun young Park7fc7aad2012-02-27 15:49:23 -0800313
Keun young Park7fc7aad2012-02-27 15:49:23 -0800314# -----------------------------------------------------------------
The Android Open Source Project88b60792009-03-03 19:28:42 -0800315###
316### In this section we set up the things that are different
317### between the build variants
318###
319
Joe Onoratoeb19b3e2009-04-13 16:32:16 -0700320is_sdk_build :=
Raphaelc4d47312011-02-15 16:09:36 -0800321
322ifneq ($(filter sdk win_sdk sdk_addon,$(MAKECMDGOALS)),)
Joe Onoratoeb19b3e2009-04-13 16:32:16 -0700323is_sdk_build := true
324endif
325
The Android Open Source Project88b60792009-03-03 19:28:42 -0800326## user/userdebug ##
327
Joe Onorato6a185e42012-05-22 14:08:50 -0700328user_variant := $(filter user userdebug,$(TARGET_BUILD_VARIANT))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800329enable_target_debugging := true
Joe Onorato6a185e42012-05-22 14:08:50 -0700330tags_to_install :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800331ifneq (,$(user_variant))
332 # Target is secure in user builds.
333 ADDITIONAL_DEFAULT_PROPERTIES += ro.secure=1
334
The Android Open Source Project88b60792009-03-03 19:28:42 -0800335 ifeq ($(user_variant),userdebug)
336 # Pick up some extra useful tools
The Android Open Source Project2f312932009-03-09 11:52:11 -0700337 tags_to_install += debug
Brad Fitzpatrick135677a2010-04-16 16:55:41 -0700338
339 # Enable Dalvik lock contention logging for userdebug builds.
340 ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.lockprof.threshold=500
The Android Open Source Project88b60792009-03-03 19:28:42 -0800341 else
342 # Disable debugging in plain user builds.
343 enable_target_debugging :=
344 endif
Dan Bornsteinf13bdd92010-09-07 17:45:44 -0700345
Dan Bornsteinf7ad63a2011-05-31 10:29:47 -0700346 # Turn on Dalvik preoptimization for user builds, but only if not
347 # explicitly disabled and the build is running on Linux (since host
348 # Dalvik isn't built for non-Linux hosts).
Ying Wang02352372010-09-27 10:37:25 -0700349 ifneq (true,$(DISABLE_DEXPREOPT))
Dan Bornsteinf7ad63a2011-05-31 10:29:47 -0700350 ifeq ($(user_variant),user)
351 ifeq ($(HOST_OS),linux)
352 WITH_DEXPREOPT := true
353 endif
354 endif
Ying Wang02352372010-09-27 10:37:25 -0700355 endif
Dan Bornsteinf13bdd92010-09-07 17:45:44 -0700356
The Android Open Source Project88b60792009-03-03 19:28:42 -0800357 # Disallow mock locations by default for user builds
358 ADDITIONAL_DEFAULT_PROPERTIES += ro.allow.mock.location=0
Dan Bornsteinf13bdd92010-09-07 17:45:44 -0700359
The Android Open Source Project88b60792009-03-03 19:28:42 -0800360else # !user_variant
361 # Turn on checkjni for non-user builds.
362 ADDITIONAL_BUILD_PROPERTIES += ro.kernel.android.checkjni=1
363 # Set device insecure for non-user builds.
364 ADDITIONAL_DEFAULT_PROPERTIES += ro.secure=0
365 # Allow mock locations by default for non user builds
366 ADDITIONAL_DEFAULT_PROPERTIES += ro.allow.mock.location=1
367endif # !user_variant
368
369ifeq (true,$(strip $(enable_target_debugging)))
370 # Target is more debuggable and adbd is on by default
Mike Lockwood40b5a672011-07-01 12:31:47 -0400371 ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=1
The Android Open Source Project88b60792009-03-03 19:28:42 -0800372 # Include the debugging/testing OTA keys in this build.
373 INCLUDE_TEST_OTA_KEYS := true
374else # !enable_target_debugging
375 # Target is less debuggable and adbd is off by default
Mike Lockwood40b5a672011-07-01 12:31:47 -0400376 ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=0
The Android Open Source Project88b60792009-03-03 19:28:42 -0800377endif # !enable_target_debugging
378
The Android Open Source Project2f312932009-03-09 11:52:11 -0700379## eng ##
380
381ifeq ($(TARGET_BUILD_VARIANT),eng)
Joe Onorato6a185e42012-05-22 14:08:50 -0700382tags_to_install := debug eng
Bruce Beareb056d712011-12-01 12:46:12 -0800383ifneq ($(filter ro.setupwizard.mode=ENABLED, $(call collapse-pairs, $(ADDITIONAL_BUILD_PROPERTIES))),)
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -0700384 # Don't require the setup wizard on eng builds
385 ADDITIONAL_BUILD_PROPERTIES := $(filter-out ro.setupwizard.mode=%,\
Joe Onorato08896612009-10-07 10:01:13 -0700386 $(call collapse-pairs, $(ADDITIONAL_BUILD_PROPERTIES))) \
387 ro.setupwizard.mode=OPTIONAL
The Android Open Source Project2f312932009-03-09 11:52:11 -0700388endif
Bruce Beareb056d712011-12-01 12:46:12 -0800389endif
The Android Open Source Project2f312932009-03-09 11:52:11 -0700390
The Android Open Source Project88b60792009-03-03 19:28:42 -0800391## sdk ##
392
Joe Onoratoeb19b3e2009-04-13 16:32:16 -0700393ifdef is_sdk_build
Raphaelc4d47312011-02-15 16:09:36 -0800394
395# Detect if we want to build a repository for the SDK
396sdk_repo_goal := $(strip $(filter sdk_repo,$(MAKECMDGOALS)))
397MAKECMDGOALS := $(strip $(filter-out sdk_repo,$(MAKECMDGOALS)))
398
Ying Wangfcec57a2013-06-26 17:56:08 -0700399ifneq ($(words $(filter-out $(INTERNAL_MODIFIER_TARGETS) checkbuild,$(MAKECMDGOALS))),1)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800400$(error The 'sdk' target may not be specified with any other targets)
401endif
Raphael3d224a02010-04-16 17:50:09 -0700402
The Android Open Source Project2f312932009-03-09 11:52:11 -0700403# TODO: this should be eng I think. Since the sdk is built from the eng
404# variant.
Joe Onorato6a185e42012-05-22 14:08:50 -0700405tags_to_install := debug eng
The Android Open Source Project88b60792009-03-03 19:28:42 -0800406ADDITIONAL_BUILD_PROPERTIES += xmpp.auto-presence=true
407ADDITIONAL_BUILD_PROPERTIES += ro.config.nocheckin=yes
408else # !sdk
The Android Open Source Project88b60792009-03-03 19:28:42 -0800409endif
410
Andreas Huber200f2592010-08-30 12:48:03 -0700411BUILD_WITHOUT_PV := true
412
Andy McFadden743e2502009-04-13 14:48:35 -0700413## precise GC ##
414
415ifneq ($(filter dalvik.gc.type-precise,$(PRODUCT_TAGS)),)
416 # Enabling type-precise GC results in larger optimized DEX files. The
417 # additional storage requirements for ".odex" files can cause /system
418 # to overflow on some devices, so this is configured separately for
419 # each product.
420 ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.dexopt-flags=m=y
421endif
422
The Android Open Source Project88b60792009-03-03 19:28:42 -0800423ADDITIONAL_BUILD_PROPERTIES += net.bt.name=Android
424
425# enable vm tracing in files for now to help track
426# the cause of ANRs in the content process
427ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.stack-trace-file=/data/anr/traces.txt
428
The Android Open Source Project88b60792009-03-03 19:28:42 -0800429# ------------------------------------------------------------
430# Define a function that, given a list of module tags, returns
431# non-empty if that module should be installed in /system.
432
The Android Open Source Project2f312932009-03-09 11:52:11 -0700433# For most goals, anything not tagged with the "tests" tag should
The Android Open Source Project88b60792009-03-03 19:28:42 -0800434# be installed in /system.
435define should-install-to-system
The Android Open Source Project2f312932009-03-09 11:52:11 -0700436$(if $(filter tests,$(1)),,true)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800437endef
438
Joe Onoratoeb19b3e2009-04-13 16:32:16 -0700439ifdef is_sdk_build
The Android Open Source Project88b60792009-03-03 19:28:42 -0800440# For the sdk goal, anything with the "samples" tag should be
441# installed in /data even if that module also has "eng"/"debug"/"user".
442define should-install-to-system
The Android Open Source Project2f312932009-03-09 11:52:11 -0700443$(if $(filter samples tests,$(1)),,true)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800444endef
445endif
446
447
Ying Wang31268312013-02-21 18:41:51 -0800448# If they only used the modifier goals (showcommands, etc), we'll actually
Joe Onoratoe334d252009-07-17 15:33:40 -0400449# build the default target.
450ifeq ($(filter-out $(INTERNAL_MODIFIER_TARGETS),$(MAKECMDGOALS)),)
451.PHONY: $(INTERNAL_MODIFIER_TARGETS)
452$(INTERNAL_MODIFIER_TARGETS): $(DEFAULT_GOAL)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800453endif
454
The Android Open Source Project88b60792009-03-03 19:28:42 -0800455# Bring in all modules that need to be built.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800456ifeq ($(HOST_OS)-$(HOST_ARCH),darwin-ppc)
457SDK_ONLY := true
Raphael Moll7058f492010-04-13 10:38:35 -0700458$(info Building the SDK under darwin-ppc is actually obsolete and unsupported.)
459$(error stop)
460endif
461
462ifeq ($(HOST_OS),windows)
463SDK_ONLY := true
The Android Open Source Project88b60792009-03-03 19:28:42 -0800464endif
465
466ifeq ($(SDK_ONLY),true)
Raphael Moll8a2b7702013-03-13 15:30:35 -0700467include $(TOPDIR)sdk/build/windows_sdk_whitelist.mk
468include $(TOPDIR)development/build/windows_sdk_whitelist.mk
The Android Open Source Project88b60792009-03-03 19:28:42 -0800469
470# Exclude tools/acp when cross-compiling windows under linux
471ifeq ($(findstring Linux,$(UNAME)),)
472subdirs += build/tools/acp
473endif
474
475else # !SDK_ONLY
The Android Open Source Project88b60792009-03-03 19:28:42 -0800476#
477# Typical build; include any Android.mk files we can find.
478#
The Android Open Source Project88b60792009-03-03 19:28:42 -0800479subdirs := $(TOP)
480
481FULL_BUILD := true
482
The Android Open Source Project88b60792009-03-03 19:28:42 -0800483endif # !SDK_ONLY
484
Joe Onorato8dc8faa2010-09-14 13:09:48 -0400485# Before we go and include all of the module makefiles, stash away
Ying Wang7522f042010-10-11 16:31:49 -0700486# the PRODUCT_* values so that later we can verify they are not modified.
487stash_product_vars:=true
Joe Onorato8dc8faa2010-09-14 13:09:48 -0400488ifeq ($(stash_product_vars),true)
Ying Wang7522f042010-10-11 16:31:49 -0700489 $(call stash-product-vars, __STASHED)
Joe Onorato8dc8faa2010-09-14 13:09:48 -0400490endif
491
The Android Open Source Project88b60792009-03-03 19:28:42 -0800492ifneq ($(ONE_SHOT_MAKEFILE),)
493# We've probably been invoked by the "mm" shell function
494# with a subdirectory's makefile.
495include $(ONE_SHOT_MAKEFILE)
496# Change CUSTOM_MODULES to include only modules that were
497# defined by this makefile; this will install all of those
498# modules as a side-effect. Do this after including ONE_SHOT_MAKEFILE
499# so that the modules will be installed in the same place they
500# would have been with a normal make.
Jean-Baptiste Queru6907cfe2010-01-07 11:19:39 -0800501CUSTOM_MODULES := $(sort $(call get-tagged-modules,$(ALL_MODULE_TAGS)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800502FULL_BUILD :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800503# Stub out the notice targets, which probably aren't defined
504# when using ONE_SHOT_MAKEFILE.
505NOTICE-HOST-%: ;
506NOTICE-TARGET-%: ;
Joe Onoratoead96462009-07-30 11:20:04 -0700507
Ying Wanga7deb082013-08-16 13:24:47 -0700508# A helper goal printing out install paths
509.PHONY: GET-INSTALL-PATH
510GET-INSTALL-PATH:
511 @$(foreach m, $(ALL_MODULES), $(if $(ALL_MODULES.$(m).INSTALLED), \
512 echo 'INSTALL-PATH: $(m) $(ALL_MODULES.$(m).INSTALLED)';))
513
Joe Onoratoead96462009-07-30 11:20:04 -0700514else # ONE_SHOT_MAKEFILE
515
Ying Wang20ef3542013-09-09 12:11:02 -0700516ifneq ($(dont_bother),true)
Joe Onoratoead96462009-07-30 11:20:04 -0700517#
518# Include all of the makefiles in the system
519#
520
521# Can't use first-makefiles-under here because
522# --mindepth=2 makes the prunes not work.
523subdir_makefiles := \
JP Abgrall1390cac2013-07-11 19:08:06 -0700524 $(shell build/tools/findleaves.py --prune=$(OUT_DIR) --prune=.repo --prune=.git $(subdirs) Android.mk)
Joe Onoratoead96462009-07-30 11:20:04 -0700525
Ying Wang172f5f52013-07-31 12:18:36 -0700526$(foreach mk, $(subdir_makefiles), $(info including $(mk) ...)$(eval include $(mk)))
Ying Wang71004f82012-05-24 21:05:19 -0700527
Ying Wang20ef3542013-09-09 12:11:02 -0700528endif # dont_bother
529
Joe Onoratoead96462009-07-30 11:20:04 -0700530endif # ONE_SHOT_MAKEFILE
531
Ying Wang71004f82012-05-24 21:05:19 -0700532# Now with all Android.mks loaded we can do post cleaning steps.
533include $(BUILD_SYSTEM)/post_clean.mk
534
Joe Onorato8dc8faa2010-09-14 13:09:48 -0400535ifeq ($(stash_product_vars),true)
Ying Wang7522f042010-10-11 16:31:49 -0700536 $(call assert-product-vars, __STASHED)
Joe Onorato8dc8faa2010-09-14 13:09:48 -0400537endif
538
Jean-Baptiste Queru09447712010-09-26 13:05:41 -0700539include $(BUILD_SYSTEM)/legacy_prebuilts.mk
540ifneq ($(filter-out $(GRANDFATHERED_ALL_PREBUILT),$(strip $(notdir $(ALL_PREBUILT)))),)
541 $(warning *** Some files have been added to ALL_PREBUILT.)
542 $(warning *)
Kenny Root824d7b22010-11-18 14:27:00 -0800543 $(warning * ALL_PREBUILT is a deprecated mechanism that)
Jean-Baptiste Queru09447712010-09-26 13:05:41 -0700544 $(warning * should not be used for new files.)
545 $(warning * As an alternative, use PRODUCT_COPY_FILES in)
546 $(warning * the appropriate product definition.)
547 $(warning * build/target/product/core.mk is the product)
548 $(warning * definition used in all products.)
549 $(warning *)
550 $(foreach bad_prebuilt,$(filter-out $(GRANDFATHERED_ALL_PREBUILT),$(strip $(notdir $(ALL_PREBUILT)))),$(warning * unexpected $(bad_prebuilt) in ALL_PREBUILT))
551 $(warning *)
552 $(error ALL_PREBUILT contains unexpected files)
553endif
554
The Android Open Source Project88b60792009-03-03 19:28:42 -0800555# -------------------------------------------------------------------
556# All module makefiles have been included at this point.
557# -------------------------------------------------------------------
558
The Android Open Source Project88b60792009-03-03 19:28:42 -0800559
560# -------------------------------------------------------------------
561# Fix up CUSTOM_MODULES to refer to installed files rather than
562# just bare module names. Leave unknown modules alone in case
563# they're actually full paths to a particular file.
564known_custom_modules := $(filter $(ALL_MODULES),$(CUSTOM_MODULES))
565unknown_custom_modules := $(filter-out $(ALL_MODULES),$(CUSTOM_MODULES))
566CUSTOM_MODULES := \
567 $(call module-installed-files,$(known_custom_modules)) \
568 $(unknown_custom_modules)
569
570# -------------------------------------------------------------------
571# Define dependencies for modules that require other modules.
572# This can only happen now, after we've read in all module makefiles.
573#
574# TODO: deal with the fact that a bare module name isn't
575# unambiguous enough. Maybe declare short targets like
576# APPS:Quake or HOST:SHARED_LIBRARIES:libutils.
577# BUG: the system image won't know to depend on modules that are
578# brought in as requirements of other modules.
579define add-required-deps
Ying Wang9485a572013-02-22 14:32:30 -0800580$(1): | $(2)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800581endef
582$(foreach m,$(ALL_MODULES), \
583 $(eval r := $(ALL_MODULES.$(m).REQUIRED)) \
584 $(if $(r), \
585 $(eval r := $(call module-installed-files,$(r))) \
Ying Wangd72db322013-06-06 18:05:53 -0700586 $(eval t_m := $(filter $(TARGET_OUT_ROOT)/%, $(ALL_MODULES.$(m).INSTALLED))) \
587 $(eval h_m := $(filter $(HOST_OUT_ROOT)/%, $(ALL_MODULES.$(m).INSTALLED))) \
588 $(eval t_r := $(filter $(TARGET_OUT_ROOT)/%, $(r))) \
589 $(eval h_r := $(filter $(HOST_OUT_ROOT)/%, $(r))) \
590 $(if $(t_m), $(eval $(call add-required-deps, $(t_m),$(t_r)))) \
591 $(if $(h_m), $(eval $(call add-required-deps, $(h_m),$(h_r)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800592 ) \
593 )
Ying Wang9485a572013-02-22 14:32:30 -0800594
Ying Wangd72db322013-06-06 18:05:53 -0700595t_m :=
596h_m :=
597t_r :=
598h_r :=
599
Ying Wang9485a572013-02-22 14:32:30 -0800600# Resolve the dependencies on shared libraries.
601$(foreach m,$(TARGET_DEPENDENCIES_ON_SHARED_LIBRARIES), \
602 $(eval p := $(subst :,$(space),$(m))) \
603 $(eval r := $(filter $(TARGET_OUT_ROOT)/%,$(call module-installed-files,\
604 $(subst $(comma),$(space),$(lastword $(p)))))) \
Ying Wangd6b1d612013-04-15 17:32:21 -0700605 $(eval $(call add-required-deps,$(word 2,$(p)),$(r))))
Ying Wang9485a572013-02-22 14:32:30 -0800606$(foreach m,$(HOST_DEPENDENCIES_ON_SHARED_LIBRARIES), \
607 $(eval p := $(subst :,$(space),$(m))) \
608 $(eval r := $(filter $(HOST_OUT_ROOT)/%,$(call module-installed-files,\
609 $(subst $(comma),$(space),$(lastword $(p)))))) \
Ying Wangd6b1d612013-04-15 17:32:21 -0700610 $(eval $(call add-required-deps,$(word 2,$(p)),$(r))))
Ying Wang791fa6a2014-01-16 12:36:34 -0800611ifdef TARGET_2ND_ARCH
612$(foreach m,$($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_DEPENDENCIES_ON_SHARED_LIBRARIES), \
613 $(eval p := $(subst :,$(space),$(m))) \
614 $(eval r := $(filter $(TARGET_OUT_ROOT)/%,$(call module-installed-files,\
615 $(addsuffix $(TARGET_2ND_ARCH_MODULE_SUFFIX), \
616 $(subst $(comma),$(space),$(lastword $(p))))))) \
617 $(eval $(call add-required-deps,$(word 2,$(p)),$(r))))
618endif
Ying Wang9485a572013-02-22 14:32:30 -0800619
The Android Open Source Project88b60792009-03-03 19:28:42 -0800620m :=
621r :=
Ying Wang9485a572013-02-22 14:32:30 -0800622p :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800623add-required-deps :=
624
625# -------------------------------------------------------------------
626# Figure out our module sets.
Joe Onorato6a185e42012-05-22 14:08:50 -0700627#
The Android Open Source Project88b60792009-03-03 19:28:42 -0800628# Of the modules defined by the component makefiles,
629# determine what we actually want to build.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800630
631ifdef FULL_BUILD
632 # The base list of modules to build for this product is specified
633 # by the appropriate product definition file, which was included
634 # by product_config.make.
Joe Onorato8d0847e2012-07-11 19:38:48 -0700635 product_MODULES := $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES)
Ying Wang489458f2012-08-23 15:08:34 -0700636 # Filter out the overridden packages before doing expansion
637 product_MODULES := $(filter-out $(foreach p, $(product_MODULES), \
638 $(PACKAGES.$(p).OVERRIDES)), $(product_MODULES))
Joe Onorato8d0847e2012-07-11 19:38:48 -0700639 $(call expand-required-modules,product_MODULES,$(product_MODULES))
640 product_FILES := $(call module-installed-files, $(product_MODULES))
Joe Onorato6a185e42012-05-22 14:08:50 -0700641 ifeq (0,1)
Joe Onorato8d0847e2012-07-11 19:38:48 -0700642 $(info product_FILES for $(TARGET_DEVICE) ($(INTERNAL_PRODUCT)):)
643 $(foreach p,$(product_FILES),$(info : $(p)))
Joe Onorato6a185e42012-05-22 14:08:50 -0700644 $(error done)
645 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800646else
647 # We're not doing a full build, and are probably only including
648 # a subset of the module makefiles. Don't try to build any modules
649 # requested by the product, because we probably won't have rules
650 # to build them.
Joe Onorato8d0847e2012-07-11 19:38:48 -0700651 product_FILES :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800652endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800653
Joe Onoratod7d0afc2012-06-05 15:54:09 -0700654eng_MODULES := $(sort \
655 $(call get-tagged-modules,eng) \
656 $(call module-installed-files, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_ENG)) \
657 )
658debug_MODULES := $(sort \
659 $(call get-tagged-modules,debug) \
660 $(call module-installed-files, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_DEBUG)) \
661 )
662tests_MODULES := $(sort \
663 $(call get-tagged-modules,tests) \
664 $(call module-installed-files, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_TESTS)) \
665 )
The Android Open Source Project88b60792009-03-03 19:28:42 -0800666
Joe Onorato6a185e42012-05-22 14:08:50 -0700667# TODO: Remove the 3 places in the tree that use ALL_DEFAULT_INSTALLED_MODULES
668# and get rid of it from this list.
Joe Onorato6a185e42012-05-22 14:08:50 -0700669modules_to_install := $(sort \
Joe Onoratoe2139442012-05-22 17:33:22 -0700670 $(ALL_DEFAULT_INSTALLED_MODULES) \
Joe Onorato8d0847e2012-07-11 19:38:48 -0700671 $(product_FILES) \
Joe Onoratoe2139442012-05-22 17:33:22 -0700672 $(foreach tag,$(tags_to_install),$($(tag)_MODULES)) \
Joe Onoratoe2139442012-05-22 17:33:22 -0700673 $(CUSTOM_MODULES) \
674 )
The Android Open Source Project88b60792009-03-03 19:28:42 -0800675
676# Some packages may override others using LOCAL_OVERRIDES_PACKAGES.
677# Filter out (do not install) any overridden packages.
The Android Open Source Project2f312932009-03-09 11:52:11 -0700678overridden_packages := $(call get-package-overrides,$(modules_to_install))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800679ifdef overridden_packages
The Android Open Source Project2f312932009-03-09 11:52:11 -0700680# old_modules_to_install := $(modules_to_install)
681 modules_to_install := \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800682 $(filter-out $(foreach p,$(overridden_packages),$(p) %/$(p).apk), \
The Android Open Source Project2f312932009-03-09 11:52:11 -0700683 $(modules_to_install))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800684endif
The Android Open Source Project2f312932009-03-09 11:52:11 -0700685#$(error filtered out
686# $(filter-out $(modules_to_install),$(old_modules_to_install)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800687
688# Don't include any GNU targets in the SDK. It's ok (and necessary)
689# to build the host tools, but nothing that's going to be installed
690# on the target (including static libraries).
Joe Onoratoeb19b3e2009-04-13 16:32:16 -0700691ifdef is_sdk_build
The Android Open Source Project88b60792009-03-03 19:28:42 -0800692 target_gnu_MODULES := \
693 $(filter \
694 $(TARGET_OUT_INTERMEDIATES)/% \
695 $(TARGET_OUT)/% \
696 $(TARGET_OUT_DATA)/%, \
697 $(sort $(call get-tagged-modules,gnu)))
698 $(info Removing from sdk:)$(foreach d,$(target_gnu_MODULES),$(info : $(d)))
The Android Open Source Project2f312932009-03-09 11:52:11 -0700699 modules_to_install := \
700 $(filter-out $(target_gnu_MODULES),$(modules_to_install))
Ying Wang486be822011-10-08 14:31:54 -0700701
Joe Onoratod7d0afc2012-06-05 15:54:09 -0700702 # Ensure every module listed in PRODUCT_PACKAGES* gets something installed
703 # TODO: Should we do this for all builds and not just the sdk?
Ying Wang486be822011-10-08 14:31:54 -0700704 $(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES), \
Joe Onoratocea08a52012-08-17 00:09:27 -0700705 $(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
Ying Wang92cd50c2012-10-31 11:55:53 -0700706 $(error $(ALL_MODULES.$(m).MAKEFILE): Module '$(m)' in PRODUCT_PACKAGES has nothing to install!)))
Joe Onoratod7d0afc2012-06-05 15:54:09 -0700707 $(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_DEBUG), \
Joe Onoratocea08a52012-08-17 00:09:27 -0700708 $(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
Joe Onoratoc5fbef52012-08-17 01:26:41 -0700709 $(warning $(ALL_MODULES.$(m).MAKEFILE): Module '$(m)' in PRODUCT_PACKAGES_DEBUG has nothing to install!)))
Joe Onoratod7d0afc2012-06-05 15:54:09 -0700710 $(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_ENG), \
Joe Onoratocea08a52012-08-17 00:09:27 -0700711 $(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
Joe Onoratoc5fbef52012-08-17 01:26:41 -0700712 $(warning $(ALL_MODULES.$(m).MAKEFILE): Module '$(m)' in PRODUCT_PACKAGES_ENG has nothing to install!)))
Joe Onoratod7d0afc2012-06-05 15:54:09 -0700713 $(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_TESTS), \
Joe Onoratocea08a52012-08-17 00:09:27 -0700714 $(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
Joe Onoratoc5fbef52012-08-17 01:26:41 -0700715 $(warning $(ALL_MODULES.$(m).MAKEFILE): Module '$(m)' in PRODUCT_PACKAGES_TESTS has nothing to install!)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800716endif
717
Joe Onoratoe334d252009-07-17 15:33:40 -0400718# build/core/Makefile contains extra stuff that we don't want to pollute this
The Android Open Source Project88b60792009-03-03 19:28:42 -0800719# top-level makefile with. It expects that ALL_DEFAULT_INSTALLED_MODULES
720# contains everything that's built during the current make, but it also further
721# extends ALL_DEFAULT_INSTALLED_MODULES.
The Android Open Source Project2f312932009-03-09 11:52:11 -0700722ALL_DEFAULT_INSTALLED_MODULES := $(modules_to_install)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800723include $(BUILD_SYSTEM)/Makefile
The Android Open Source Project2f312932009-03-09 11:52:11 -0700724modules_to_install := $(sort $(ALL_DEFAULT_INSTALLED_MODULES))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800725ALL_DEFAULT_INSTALLED_MODULES :=
726
Joe Onoratof93f5be2012-05-21 12:16:05 -0700727
Joe Onoratoe334d252009-07-17 15:33:40 -0400728# These are additional goals that we build, in order to make sure that there
729# is as little code as possible in the tree that doesn't build.
730modules_to_check := $(foreach m,$(ALL_MODULES),$(ALL_MODULES.$(m).CHECKED))
731
732# If you would like to build all goals, and not skip any intermediate
733# steps, you can pass the "all" modifier goal on the commandline.
734ifneq ($(filter all,$(MAKECMDGOALS)),)
735modules_to_check += $(foreach m,$(ALL_MODULES),$(ALL_MODULES.$(m).BUILT))
736endif
737
738# for easier debugging
739modules_to_check := $(sort $(modules_to_check))
740#$(error modules_to_check $(modules_to_check))
741
The Android Open Source Project88b60792009-03-03 19:28:42 -0800742# -------------------------------------------------------------------
743# This is used to to get the ordering right, you can also use these,
744# but they're considered undocumented, so don't complain if their
745# behavior changes.
746.PHONY: prebuilt
747prebuilt: $(ALL_PREBUILT)
748
749# An internal target that depends on all copied headers
750# (see copy_headers.make). Other targets that need the
751# headers to be copied first can depend on this target.
752.PHONY: all_copied_headers
753all_copied_headers: ;
754
755$(ALL_C_CPP_ETC_OBJECTS): | all_copied_headers
756
757# All the droid stuff, in directories
758.PHONY: files
Joe Onoratoe334d252009-07-17 15:33:40 -0400759files: prebuilt \
760 $(modules_to_install) \
Joe Onoratoe334d252009-07-17 15:33:40 -0400761 $(INSTALLED_ANDROID_INFO_TXT_TARGET)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800762
763# -------------------------------------------------------------------
764
Joe Onoratoe334d252009-07-17 15:33:40 -0400765.PHONY: checkbuild
766checkbuild: $(modules_to_check)
Ying Wang31268312013-02-21 18:41:51 -0800767ifeq (true,$(ANDROID_BUILD_EVERYTHING_BY_DEFAULT)$(filter $(MAKECMDGOALS),checkbuild))
768droid: checkbuild
769else
770# ANDROID_BUILD_EVERYTHING_BY_DEFAULT not set, or checkbuild is one of the cmd goals.
771checkbuild: droid
772endif
Joe Onoratoe334d252009-07-17 15:33:40 -0400773
The Android Open Source Project88b60792009-03-03 19:28:42 -0800774.PHONY: ramdisk
775ramdisk: $(INSTALLED_RAMDISK_TARGET)
776
Ying Wang89686532011-12-16 11:27:52 -0800777.PHONY: factory_ramdisk
778factory_ramdisk: $(INSTALLED_FACTORY_RAMDISK_TARGET)
779
Joe Onoratoe1d191e2012-05-17 11:32:26 -0700780.PHONY: factory_bundle
781factory_bundle: $(INSTALLED_FACTORY_BUNDLE_TARGET)
782
The Android Open Source Project88b60792009-03-03 19:28:42 -0800783.PHONY: systemtarball
784systemtarball: $(INSTALLED_SYSTEMTARBALL_TARGET)
785
Bruce Beare52aac202010-06-04 15:24:49 -0700786.PHONY: boottarball
787boottarball: $(INSTALLED_BOOTTARBALL_TARGET)
788
The Android Open Source Project88b60792009-03-03 19:28:42 -0800789.PHONY: userdataimage
790userdataimage: $(INSTALLED_USERDATAIMAGE_TARGET)
791
Ying Wang9c0f3e32011-02-01 14:52:05 -0800792ifneq (,$(filter userdataimage, $(MAKECMDGOALS)))
793$(call dist-for-goals, userdataimage, $(BUILT_USERDATAIMAGE_TARGET))
794endif
795
The Android Open Source Project88b60792009-03-03 19:28:42 -0800796.PHONY: userdatatarball
797userdatatarball: $(INSTALLED_USERDATATARBALL_TARGET)
798
Ying Wang9f8e8db2011-11-04 11:37:01 -0700799.PHONY: cacheimage
800cacheimage: $(INSTALLED_CACHEIMAGE_TARGET)
801
Ying Wanga0febe52013-03-20 11:02:05 -0700802.PHONY: vendorimage
803vendorimage: $(INSTALLED_VENDORIMAGE_TARGET)
804
The Android Open Source Project88b60792009-03-03 19:28:42 -0800805.PHONY: bootimage
806bootimage: $(INSTALLED_BOOTIMAGE_TARGET)
807
Ying Wangb607f7b2013-02-08 18:01:04 -0800808# phony target that include any targets in $(ALL_MODULES)
809.PHONY: all_modules
810ifndef BUILD_MODULES_IN_PATHS
811all_modules: $(ALL_MODULES)
812else
813# BUILD_MODULES_IN_PATHS is a list of paths relative to the top of the tree
814module_path_patterns := $(foreach p, $(BUILD_MODULES_IN_PATHS),\
815 $(if $(filter %/,$(p)),$(p)%,$(p)/%))
816my_all_modules := $(sort $(foreach m, $(ALL_MODULES),$(if $(filter\
817 $(module_path_patterns), $(addsuffix /,$(ALL_MODULES.$(m).PATH))),$(m))))
818all_modules: $(my_all_modules)
819endif
820
821
The Android Open Source Project88b60792009-03-03 19:28:42 -0800822# Build files and then package it into the rom formats
823.PHONY: droidcore
824droidcore: files \
825 systemimage \
826 $(INSTALLED_BOOTIMAGE_TARGET) \
827 $(INSTALLED_RECOVERYIMAGE_TARGET) \
828 $(INSTALLED_USERDATAIMAGE_TARGET) \
Ying Wang9f8e8db2011-11-04 11:37:01 -0700829 $(INSTALLED_CACHEIMAGE_TARGET) \
Ying Wanga0febe52013-03-20 11:02:05 -0700830 $(INSTALLED_VENDORIMAGE_TARGET) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800831 $(INSTALLED_FILES_FILE)
832
Ying Wang228fcef2010-12-08 20:07:48 -0800833# dist_files only for putting your library into the dist directory with a full build.
834.PHONY: dist_files
Ying Wangad8aec92010-07-13 21:08:38 -0700835
Joe Onorato16fa4b22010-06-09 16:35:58 -0700836ifneq ($(TARGET_BUILD_APPS),)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700837 # If this build is just for apps, only build apps and not the full system by default.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800838
Joe Onorato16fa4b22010-06-09 16:35:58 -0700839 unbundled_build_modules :=
840 ifneq ($(filter all,$(TARGET_BUILD_APPS)),)
Ying Wangc048c9b2010-06-24 15:08:33 -0700841 # If they used the magic goal "all" then build all apps in the source tree.
842 unbundled_build_modules := $(foreach m,$(sort $(ALL_MODULES)),$(if $(filter APPS,$(ALL_MODULES.$(m).CLASS)),$(m)))
Joe Onorato16fa4b22010-06-09 16:35:58 -0700843 else
844 unbundled_build_modules := $(TARGET_BUILD_APPS)
845 endif
Guang Zhu0198d6e2010-04-23 11:54:37 -0700846
Ying Wang1e1241c2013-06-12 15:25:23 -0700847 # Dist the installed files if they exist.
Ying Wangda19eaf2012-08-15 12:22:44 -0700848 apps_only_installed_files := $(foreach m,$(unbundled_build_modules),$(ALL_MODULES.$(m).INSTALLED))
Ying Wangda19eaf2012-08-15 12:22:44 -0700849 $(call dist-for-goals,apps_only, $(apps_only_installed_files))
Ying Wang1e1241c2013-06-12 15:25:23 -0700850 # For uninstallable modules such as static Java library, we have to dist the built file,
851 # as <module_name>.<suffix>
852 apps_only_dist_built_files := $(foreach m,$(unbundled_build_modules),$(if $(ALL_MODULES.$(m).INSTALLED),,\
Ying Wang495f6842013-08-27 15:04:57 -0700853 $(if $(ALL_MODULES.$(m).BUILT),$(ALL_MODULES.$(m).BUILT):$(m)$(suffix $(ALL_MODULES.$(m).BUILT)))))
Ying Wang1e1241c2013-06-12 15:25:23 -0700854 $(call dist-for-goals,apps_only, $(apps_only_dist_built_files))
Ying Wangda19eaf2012-08-15 12:22:44 -0700855
856 ifeq ($(EMMA_INSTRUMENT),true)
857 $(EMMA_META_ZIP) : $(apps_only_installed_files)
858
859 $(call dist-for-goals,apps_only, $(EMMA_META_ZIP))
860 endif
Joe Onorato16fa4b22010-06-09 16:35:58 -0700861
Ying Wangae9115a2013-08-22 20:52:47 -0700862 $(PROGUARD_DICT_ZIP) : $(apps_only_installed_files)
863 $(call dist-for-goals,apps_only, $(PROGUARD_DICT_ZIP))
864
Joe Onoratoda12daf2010-06-09 18:18:31 -0700865.PHONY: apps_only
866apps_only: $(unbundled_build_modules)
Joe Onorato16fa4b22010-06-09 16:35:58 -0700867
Joe Onoratoda12daf2010-06-09 18:18:31 -0700868droid: apps_only
869
Ying Wang62c81f82013-08-22 20:02:03 -0700870# Combine the NOTICE files for a apps_only build
871$(eval $(call combine-notice-files, \
872 $(target_notice_file_txt), \
873 $(target_notice_file_html), \
874 "Notices for files for apps:", \
875 $(TARGET_OUT_NOTICE_FILES), \
876 $(apps_only_installed_files)))
877
878
Joe Onoratoda12daf2010-06-09 18:18:31 -0700879else # TARGET_BUILD_APPS
880 $(call dist-for-goals, droidcore, \
Joe Onorato16fa4b22010-06-09 16:35:58 -0700881 $(INTERNAL_UPDATE_PACKAGE_TARGET) \
882 $(INTERNAL_OTA_PACKAGE_TARGET) \
883 $(SYMBOLS_ZIP) \
Joe Onorato16fa4b22010-06-09 16:35:58 -0700884 $(INSTALLED_FILES_FILE) \
885 $(INSTALLED_BUILD_PROP_TARGET) \
886 $(BUILT_TARGET_FILES_PACKAGE) \
887 $(INSTALLED_ANDROID_INFO_TXT_TARGET) \
Ed Heyl8532aa02010-07-01 10:07:28 -0700888 $(INSTALLED_RAMDISK_TARGET) \
Ying Wang89686532011-12-16 11:27:52 -0800889 $(INSTALLED_FACTORY_RAMDISK_TARGET) \
Joe Onoratoe1d191e2012-05-17 11:32:26 -0700890 $(INSTALLED_FACTORY_BUNDLE_TARGET) \
Joe Onorato16fa4b22010-06-09 16:35:58 -0700891 )
892
Ying Wang94de1eb2013-07-26 12:19:20 -0700893 # Put a copy of the radio/bootloader files in the dist dir.
894 $(foreach f,$(INSTALLED_RADIOIMAGE_TARGET), \
895 $(call dist-for-goals, droidcore, $(f)))
896
Mike Lockwood253555b2013-10-02 07:51:11 -0700897 ifneq ($(ANDROID_BUILD_EMBEDDED),true)
Colin Cross971c2462012-03-29 14:31:08 -0700898 ifneq ($(TARGET_BUILD_PDK),true)
899 $(call dist-for-goals, droidcore, \
900 $(APPS_ZIP) \
901 $(INTERNAL_EMULATOR_PACKAGE_TARGET) \
902 $(PACKAGE_STATS_FILE) \
903 )
904 endif
Mike Lockwood253555b2013-10-02 07:51:11 -0700905 endif
Colin Cross971c2462012-03-29 14:31:08 -0700906
Ying Wangda19eaf2012-08-15 12:22:44 -0700907 ifeq ($(EMMA_INSTRUMENT),true)
908 $(EMMA_META_ZIP) : $(INSTALLED_SYSTEMIMAGE)
909
910 $(call dist-for-goals, dist_files, $(EMMA_META_ZIP))
911 endif
912
Joe Onoratoda12daf2010-06-09 18:18:31 -0700913# Building a full system-- the default is to build droidcore
Ying Wang228fcef2010-12-08 20:07:48 -0800914droid: droidcore dist_files
Joe Onoratoda12daf2010-06-09 18:18:31 -0700915
Ying Wangf9cd36a2010-06-15 15:43:13 -0700916endif # TARGET_BUILD_APPS
The Android Open Source Project88b60792009-03-03 19:28:42 -0800917
918.PHONY: docs
919docs: $(ALL_DOCS)
920
921.PHONY: sdk
922ALL_SDK_TARGETS := $(INTERNAL_SDK_TARGET)
923sdk: $(ALL_SDK_TARGETS)
Raphaelc4d47312011-02-15 16:09:36 -0800924$(call dist-for-goals,sdk win_sdk, \
Ying Wangbe188ca2011-03-07 16:13:32 -0800925 $(ALL_SDK_TARGETS) \
926 $(SYMBOLS_ZIP) \
927 $(INSTALLED_BUILD_PROP_TARGET) \
928)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800929
Ying Wangef4d82f2013-01-29 16:59:18 -0800930# umbrella targets to assit engineers in verifying builds
Ying Wang1d977e32013-01-30 11:22:06 -0800931.PHONY: java native target host java-host java-target native-host native-target \
Ying Wangef4d82f2013-01-29 16:59:18 -0800932 java-host-tests java-target-tests native-host-tests native-target-tests \
933 java-tests native-tests host-tests target-tests
934# some synonyms
935.PHONY: host-java target-java host-native target-native \
936 target-java-tests target-native-tests
937host-java : java-host
938target-java : java-target
939host-native : native-host
940target-native : native-target
941target-java-tests : java-target-tests
942target-native-tests : native-target-tests
943
944
Ying Wang0d570a72012-06-18 18:45:40 -0700945.PHONY: lintall
946
Ying Wang8b9b39e2010-02-25 20:20:43 -0800947.PHONY: samplecode
948sample_MODULES := $(sort $(call get-tagged-modules,samples))
949sample_APKS_DEST_PATH := $(TARGET_COMMON_OUT_ROOT)/samples
950sample_APKS_COLLECTION := \
951 $(foreach module,$(sample_MODULES),$(sample_APKS_DEST_PATH)/$(notdir $(module)))
952$(foreach module,$(sample_MODULES),$(eval $(call \
953 copy-one-file,$(module),$(sample_APKS_DEST_PATH)/$(notdir $(module)))))
954sample_ADDITIONAL_INSTALLED := \
955 $(filter-out $(modules_to_install) $(modules_to_check) $(ALL_PREBUILT),$(sample_MODULES))
956samplecode: $(sample_APKS_COLLECTION)
957 @echo "Collect sample code apks: $^"
958 # remove apks that are not intended to be installed.
959 rm -f $(sample_ADDITIONAL_INSTALLED)
960
The Android Open Source Project88b60792009-03-03 19:28:42 -0800961.PHONY: findbugs
962findbugs: $(INTERNAL_FINDBUGS_HTML_TARGET) $(INTERNAL_FINDBUGS_XML_TARGET)
963
964.PHONY: clean
The Android Open Source Project88b60792009-03-03 19:28:42 -0800965clean:
The Android Open Source Project88b60792009-03-03 19:28:42 -0800966 @rm -rf $(OUT_DIR)
967 @echo "Entire build directory removed."
968
Joe Onoratodfc5e0c2010-09-03 13:25:11 -0400969.PHONY: clobber
970clobber: clean
971
The Android Open Source Project88b60792009-03-03 19:28:42 -0800972# The rules for dataclean and installclean are defined in cleanbuild.mk.
973
974#xxx scrape this from ALL_MODULE_NAME_TAGS
975.PHONY: modules
976modules:
977 @echo "Available sub-modules:"
978 @echo "$(call module-names-for-tag-list,$(ALL_MODULE_TAGS))" | \
Evan JIANGf3806922009-01-24 00:11:30 +0800979 tr -s ' ' '\n' | sort -u | $(COLUMN)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800980
981.PHONY: showcommands
982showcommands:
983 @echo >/dev/null
Joe Onorato10649c62012-05-18 20:41:38 -0700984
985.PHONY: nothing
986nothing:
987 @echo Successfully read the makefiles.