blob: 7d6b3b27ff55763676988acb32c4f8bd00a2058f [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)))
Ying Wang4f9269e2010-11-18 10:32:12 -080043ifeq (0,$(shell expr $$(echo $(MAKE_VERSION) | sed "s/[^0-9\.].*//") = 3.81))
Conley Owensd7a1a9b2011-12-22 09:46:19 -080044ifeq (0,$(shell expr $$(echo $(MAKE_VERSION) | sed "s/[^0-9\.].*//") = 3.82))
The Android Open Source Project88b60792009-03-03 19:28:42 -080045$(warning ********************************************************************************)
46$(warning * You are using version $(MAKE_VERSION) of make.)
Conley Owensd7a1a9b2011-12-22 09:46:19 -080047$(warning * Android can only be built by versions 3.81 and 3.82.)
Jean-Baptiste Queru5d4bcb42012-04-19 14:53:27 -070048$(warning * see https://source.android.com/source/download.html)
The Android Open Source Project88b60792009-03-03 19:28:42 -080049$(warning ********************************************************************************)
50$(error stopping)
51endif
Raphael76bf62d2011-12-19 13:37:55 -080052endif
Conley Owensd7a1a9b2011-12-22 09:46:19 -080053endif
The Android Open Source Project88b60792009-03-03 19:28:42 -080054
Ying Wang9ccacd72012-05-22 18:29:02 -070055# Absolute path of the present working direcotry.
56# This overrides the shell variable $PWD, which does not necessarily points to
57# the top of the source tree, for example when "make -C" is used in m/mm/mmm.
58PWD := $(shell pwd)
59
The Android Open Source Project88b60792009-03-03 19:28:42 -080060TOP := .
61TOPDIR :=
62
63BUILD_SYSTEM := $(TOPDIR)build/core
64
65# This is the default target. It must be the first declared target.
Joe Onoratoda12daf2010-06-09 18:18:31 -070066.PHONY: droid
The Android Open Source Project88b60792009-03-03 19:28:42 -080067DEFAULT_GOAL := droid
68$(DEFAULT_GOAL):
69
Joe Onorato77dc0a52010-05-17 18:16:11 -070070# Used to force goals to build. Only use for conditionally defined goals.
71.PHONY: FORCE
72FORCE:
73
Daniel Sandler95661222010-10-28 15:31:47 -040074# Targets that provide quick help on the build system.
75include $(BUILD_SYSTEM)/help.mk
76
The Android Open Source Project88b60792009-03-03 19:28:42 -080077# Set up various standard variables based on configuration
78# and host information.
79include $(BUILD_SYSTEM)/config.mk
80
81# This allows us to force a clean build - included after the config.make
82# environment setup is done, but before we generate any dependencies. This
83# file does the rm -rf inline so the deps which are all done below will
84# be generated correctly
85include $(BUILD_SYSTEM)/cleanbuild.mk
86
Joe Onoratoe35a4452012-07-25 17:55:03 -070087VERSION_CHECK_SEQUENCE_NUMBER := 3
Joe Onorato1de66882009-07-30 11:54:27 -070088-include $(OUT_DIR)/versions_checked.mk
89ifneq ($(VERSION_CHECK_SEQUENCE_NUMBER),$(VERSIONS_CHECKED))
90
91$(info Checking build tools versions...)
92
The Android Open Source Project88b60792009-03-03 19:28:42 -080093ifneq ($(HOST_OS),windows)
94ifneq ($(HOST_OS)-$(HOST_ARCH),darwin-ppc)
95# check for a case sensitive file system
96ifneq (a,$(shell mkdir -p $(OUT_DIR) ; \
97 echo a > $(OUT_DIR)/casecheck.txt; \
98 echo B > $(OUT_DIR)/CaseCheck.txt; \
99 cat $(OUT_DIR)/casecheck.txt))
100$(warning ************************************************************)
101$(warning You are building on a case-insensitive filesystem.)
102$(warning Please move your source tree to a case-sensitive filesystem.)
103$(warning ************************************************************)
104$(error Case-insensitive filesystems not supported)
105endif
106endif
107endif
108
109# Make sure that there are no spaces in the absolute path; the
110# build system can't deal with them.
111ifneq ($(words $(shell pwd)),1)
112$(warning ************************************************************)
113$(warning You are building in a directory whose absolute path contains)
114$(warning a space character:)
115$(warning $(space))
116$(warning "$(shell pwd)")
117$(warning $(space))
118$(warning Please move your source tree to a path that does not contain)
119$(warning any spaces.)
120$(warning ************************************************************)
121$(error Directory names containing spaces not supported)
122endif
123
Tim Roes304f5192013-02-23 20:25:00 +0100124# Check for the corrent jdk
125ifneq ($(shell java -version 2>&1 | grep -i openjdk),)
126$(info ************************************************************)
127$(info You are attempting to build with an unsupported JDK.)
128$(info $(space))
129$(info You use OpenJDK but only Sun/Oracle JDK is supported.)
130$(info Please follow the machine setup instructions at)
131$(info $(space)$(space)$(space)$(space)https://source.android.com/source/download.html)
132$(info ************************************************************)
133$(error stop)
134endif
Joe Onorato9d9f3672009-06-22 18:15:38 -0700135
Joe Onorato9d9f3672009-06-22 18:15:38 -0700136# Check for the correct version of java
Jean-Baptiste Querud7d096d2010-10-08 10:58:38 -0700137java_version := $(shell java -version 2>&1 | head -n 1 | grep '^java .*[ "]1\.6[\. "$$]')
Joe Onorato9d9f3672009-06-22 18:15:38 -0700138ifeq ($(strip $(java_version)),)
139$(info ************************************************************)
140$(info You are attempting to build with the incorrect version)
141$(info of java.)
142$(info $(space))
143$(info Your version is: $(shell java -version 2>&1 | head -n 1).)
Jean-Baptiste Querud7d096d2010-10-08 10:58:38 -0700144$(info The correct version is: Java SE 1.6.)
Joe Onorato9d9f3672009-06-22 18:15:38 -0700145$(info $(space))
146$(info Please follow the machine setup instructions at)
Jean-Baptiste Queru5d4bcb42012-04-19 14:53:27 -0700147$(info $(space)$(space)$(space)$(space)https://source.android.com/source/download.html)
Joe Onorato9d9f3672009-06-22 18:15:38 -0700148$(info ************************************************************)
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500149$(error stop)
Joe Onorato9d9f3672009-06-22 18:15:38 -0700150endif
151
152# Check for the correct version of javac
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500153javac_version := $(shell javac -version 2>&1 | head -n 1 | grep '[ "]1\.6[\. "$$]')
Joe Onorato9d9f3672009-06-22 18:15:38 -0700154ifeq ($(strip $(javac_version)),)
155$(info ************************************************************)
156$(info You are attempting to build with the incorrect version)
157$(info of javac.)
158$(info $(space))
159$(info Your version is: $(shell javac -version 2>&1 | head -n 1).)
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500160$(info The correct version is: 1.6.)
Joe Onorato9d9f3672009-06-22 18:15:38 -0700161$(info $(space))
162$(info Please follow the machine setup instructions at)
Jean-Baptiste Queru5d4bcb42012-04-19 14:53:27 -0700163$(info $(space)$(space)$(space)$(space)https://source.android.com/source/download.html)
Joe Onorato9d9f3672009-06-22 18:15:38 -0700164$(info ************************************************************)
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500165$(error stop)
Joe Onorato9d9f3672009-06-22 18:15:38 -0700166endif
167
Ying Wang478ba5e2012-06-28 16:02:19 -0700168ifeq (darwin,$(HOST_OS))
Andrew Hsieh1dcca612012-11-09 02:06:33 -0800169GCC_REALPATH = $(realpath $(shell which $(HOST_CC)))
Ying Wang478ba5e2012-06-28 16:02:19 -0700170ifneq ($(findstring llvm-gcc,$(GCC_REALPATH)),)
171 # Using LLVM GCC results in a non functional emulator due to it
172 # not honouring global register variables
Joe Onoratoe35a4452012-07-25 17:55:03 -0700173 $(warning ****************************************)
174 $(warning * gcc is linked to llvm-gcc which will *)
175 $(warning * not create a useable emulator. *)
176 $(warning ****************************************)
Joe Onorato74e883d2012-07-25 14:28:05 -0700177 BUILD_EMULATOR := false
178else
179 BUILD_EMULATOR := true
180endif
Ying Wang7d8c5352012-07-26 10:15:21 -0700181else # HOST_OS is not darwin
182 BUILD_EMULATOR := true
183endif # HOST_OS is darwin
Ying Wang478ba5e2012-06-28 16:02:19 -0700184
Joe Onorato1de66882009-07-30 11:54:27 -0700185$(shell echo 'VERSIONS_CHECKED := $(VERSION_CHECK_SEQUENCE_NUMBER)' \
186 > $(OUT_DIR)/versions_checked.mk)
Joe Onoratoe35a4452012-07-25 17:55:03 -0700187$(shell echo 'BUILD_EMULATOR := $(BUILD_EMULATOR)' \
188 >> $(OUT_DIR)/versions_checked.mk)
Joe Onorato1de66882009-07-30 11:54:27 -0700189endif
190
The Android Open Source Project88b60792009-03-03 19:28:42 -0800191# These are the modifier targets that don't do anything themselves, but
192# change the behavior of the build.
193# (must be defined before including definitions.make)
Ying Wang015edd22011-01-20 15:01:56 -0800194INTERNAL_MODIFIER_TARGETS := showcommands checkbuild all incrementaljavac
195
196.PHONY: incrementaljavac
197incrementaljavac: ;
198
199# WARNING:
200# ENABLE_INCREMENTALJAVAC should NOT be enabled by default, because change of
201# a Java source file won't trigger rebuild of its dependent Java files.
202# You can only enable it by adding "incrementaljavac" to your make command line.
203# You are responsible for the correctness of the incremental build.
204# This may decrease incremental build time dramatically for large Java libraries,
205# such as core.jar, framework.jar, etc.
206ENABLE_INCREMENTALJAVAC :=
207ifneq (,$(filter incrementaljavac, $(MAKECMDGOALS)))
208ENABLE_INCREMENTALJAVAC := true
209MAKECMDGOALS := $(filter-out incrementaljavac, $(MAKECMDGOALS))
210endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800211
Ying Wangaf4800c2012-08-21 16:59:01 -0700212# EMMA_INSTRUMENT_STATIC merges the static emma library to each emma-enabled module.
213ifeq (true,$(EMMA_INSTRUMENT_STATIC))
214EMMA_INSTRUMENT := true
215endif
216
The Android Open Source Project88b60792009-03-03 19:28:42 -0800217# Bring in standard build system definitions.
218include $(BUILD_SYSTEM)/definitions.mk
219
Ying Wange7874c42010-09-17 16:36:06 -0700220# Bring in dex_preopt.mk
221include $(BUILD_SYSTEM)/dex_preopt.mk
222
Joe Onorato529302d2012-05-22 14:08:50 -0700223ifneq ($(filter user userdebug eng,$(MAKECMDGOALS)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800224$(info ***************************************************************)
225$(info ***************************************************************)
Joe Onorato529302d2012-05-22 14:08:50 -0700226$(info Do not pass '$(filter user userdebug eng tests,$(MAKECMDGOALS))' on \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800227 the make command line.)
228$(info Set TARGET_BUILD_VARIANT in buildspec.mk, or use lunch or)
229$(info choosecombo.)
230$(info ***************************************************************)
231$(info ***************************************************************)
232$(error stopping)
233endif
234
The Android Open Source Project2f312932009-03-09 11:52:11 -0700235ifneq ($(filter-out $(INTERNAL_VALID_VARIANTS),$(TARGET_BUILD_VARIANT)),)
236$(info ***************************************************************)
237$(info ***************************************************************)
238$(info Invalid variant: $(TARGET_BUILD_VARIANT)
239$(info Valid values are: $(INTERNAL_VALID_VARIANTS)
240$(info ***************************************************************)
241$(info ***************************************************************)
242$(error stopping)
243endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800244
Keun young Park7fc7aad2012-02-27 15:49:23 -0800245# -----------------------------------------------------------------
Keun young Parkefe02ce2012-06-06 17:19:29 -0700246# Variable to check java support level inside PDK build.
247# Not necessary if the components is not in PDK.
248# not defined : not supported
249# "sdk" : sdk API only
250# "platform" : platform API supproted
251TARGET_BUILD_JAVA_SUPPORT_LEVEL := platform
252
253# -----------------------------------------------------------------
Keun young Park7fc7aad2012-02-27 15:49:23 -0800254# The pdk (Platform Development Kit) build
Ying Wang82b836f2012-03-30 18:08:07 -0700255include build/core/pdk_config.mk
Keun young Park7fc7aad2012-02-27 15:49:23 -0800256
Keun young Park7fc7aad2012-02-27 15:49:23 -0800257# -----------------------------------------------------------------
The Android Open Source Project88b60792009-03-03 19:28:42 -0800258###
259### In this section we set up the things that are different
260### between the build variants
261###
262
Joe Onoratoeb19b3e2009-04-13 16:32:16 -0700263is_sdk_build :=
Raphaelc4d47312011-02-15 16:09:36 -0800264
265ifneq ($(filter sdk win_sdk sdk_addon,$(MAKECMDGOALS)),)
Joe Onoratoeb19b3e2009-04-13 16:32:16 -0700266is_sdk_build := true
267endif
268
The Android Open Source Project88b60792009-03-03 19:28:42 -0800269## user/userdebug ##
270
Joe Onorato529302d2012-05-22 14:08:50 -0700271user_variant := $(filter user userdebug,$(TARGET_BUILD_VARIANT))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800272enable_target_debugging := true
Joe Onorato529302d2012-05-22 14:08:50 -0700273tags_to_install :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800274ifneq (,$(user_variant))
275 # Target is secure in user builds.
276 ADDITIONAL_DEFAULT_PROPERTIES += ro.secure=1
277
The Android Open Source Project88b60792009-03-03 19:28:42 -0800278 ifeq ($(user_variant),userdebug)
279 # Pick up some extra useful tools
The Android Open Source Project2f312932009-03-09 11:52:11 -0700280 tags_to_install += debug
Brad Fitzpatrick135677a2010-04-16 16:55:41 -0700281
282 # Enable Dalvik lock contention logging for userdebug builds.
283 ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.lockprof.threshold=500
The Android Open Source Project88b60792009-03-03 19:28:42 -0800284 else
285 # Disable debugging in plain user builds.
286 enable_target_debugging :=
287 endif
Dan Bornsteinf13bdd92010-09-07 17:45:44 -0700288
Dan Bornsteinf7ad63a2011-05-31 10:29:47 -0700289 # Turn on Dalvik preoptimization for user builds, but only if not
290 # explicitly disabled and the build is running on Linux (since host
291 # Dalvik isn't built for non-Linux hosts).
Ying Wang02352372010-09-27 10:37:25 -0700292 ifneq (true,$(DISABLE_DEXPREOPT))
Dan Bornsteinf7ad63a2011-05-31 10:29:47 -0700293 ifeq ($(user_variant),user)
294 ifeq ($(HOST_OS),linux)
295 WITH_DEXPREOPT := true
296 endif
297 endif
Ying Wang02352372010-09-27 10:37:25 -0700298 endif
Dan Bornsteinf13bdd92010-09-07 17:45:44 -0700299
The Android Open Source Project88b60792009-03-03 19:28:42 -0800300 # Disallow mock locations by default for user builds
301 ADDITIONAL_DEFAULT_PROPERTIES += ro.allow.mock.location=0
Dan Bornsteinf13bdd92010-09-07 17:45:44 -0700302
The Android Open Source Project88b60792009-03-03 19:28:42 -0800303else # !user_variant
304 # Turn on checkjni for non-user builds.
305 ADDITIONAL_BUILD_PROPERTIES += ro.kernel.android.checkjni=1
306 # Set device insecure for non-user builds.
307 ADDITIONAL_DEFAULT_PROPERTIES += ro.secure=0
308 # Allow mock locations by default for non user builds
309 ADDITIONAL_DEFAULT_PROPERTIES += ro.allow.mock.location=1
310endif # !user_variant
311
312ifeq (true,$(strip $(enable_target_debugging)))
313 # Target is more debuggable and adbd is on by default
Mike Lockwood40b5a672011-07-01 12:31:47 -0400314 ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=1
The Android Open Source Project88b60792009-03-03 19:28:42 -0800315 # Include the debugging/testing OTA keys in this build.
316 INCLUDE_TEST_OTA_KEYS := true
317else # !enable_target_debugging
318 # Target is less debuggable and adbd is off by default
Mike Lockwood40b5a672011-07-01 12:31:47 -0400319 ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=0
The Android Open Source Project88b60792009-03-03 19:28:42 -0800320endif # !enable_target_debugging
321
The Android Open Source Project2f312932009-03-09 11:52:11 -0700322## eng ##
323
324ifeq ($(TARGET_BUILD_VARIANT),eng)
Joe Onorato529302d2012-05-22 14:08:50 -0700325tags_to_install := debug eng
Bruce Beareb056d712011-12-01 12:46:12 -0800326ifneq ($(filter ro.setupwizard.mode=ENABLED, $(call collapse-pairs, $(ADDITIONAL_BUILD_PROPERTIES))),)
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -0700327 # Don't require the setup wizard on eng builds
328 ADDITIONAL_BUILD_PROPERTIES := $(filter-out ro.setupwizard.mode=%,\
Joe Onorato08896612009-10-07 10:01:13 -0700329 $(call collapse-pairs, $(ADDITIONAL_BUILD_PROPERTIES))) \
330 ro.setupwizard.mode=OPTIONAL
The Android Open Source Project2f312932009-03-09 11:52:11 -0700331endif
Bruce Beareb056d712011-12-01 12:46:12 -0800332endif
The Android Open Source Project2f312932009-03-09 11:52:11 -0700333
The Android Open Source Project88b60792009-03-03 19:28:42 -0800334## tests ##
335
336ifeq ($(TARGET_BUILD_VARIANT),tests)
Joe Onorato529302d2012-05-22 14:08:50 -0700337tags_to_install := debug eng tests
The Android Open Source Project88b60792009-03-03 19:28:42 -0800338endif
339
340## sdk ##
341
Joe Onoratoeb19b3e2009-04-13 16:32:16 -0700342ifdef is_sdk_build
Raphaelc4d47312011-02-15 16:09:36 -0800343
344# Detect if we want to build a repository for the SDK
345sdk_repo_goal := $(strip $(filter sdk_repo,$(MAKECMDGOALS)))
346MAKECMDGOALS := $(strip $(filter-out sdk_repo,$(MAKECMDGOALS)))
347
The Android Open Source Project88b60792009-03-03 19:28:42 -0800348ifneq ($(words $(filter-out $(INTERNAL_MODIFIER_TARGETS),$(MAKECMDGOALS))),1)
349$(error The 'sdk' target may not be specified with any other targets)
350endif
Raphael3d224a02010-04-16 17:50:09 -0700351
The Android Open Source Project2f312932009-03-09 11:52:11 -0700352# TODO: this should be eng I think. Since the sdk is built from the eng
353# variant.
Joe Onorato529302d2012-05-22 14:08:50 -0700354tags_to_install := debug eng
The Android Open Source Project88b60792009-03-03 19:28:42 -0800355ADDITIONAL_BUILD_PROPERTIES += xmpp.auto-presence=true
356ADDITIONAL_BUILD_PROPERTIES += ro.config.nocheckin=yes
357else # !sdk
The Android Open Source Project88b60792009-03-03 19:28:42 -0800358endif
359
Andreas Huber200f2592010-08-30 12:48:03 -0700360BUILD_WITHOUT_PV := true
361
Andy McFadden743e2502009-04-13 14:48:35 -0700362## precise GC ##
363
364ifneq ($(filter dalvik.gc.type-precise,$(PRODUCT_TAGS)),)
365 # Enabling type-precise GC results in larger optimized DEX files. The
366 # additional storage requirements for ".odex" files can cause /system
367 # to overflow on some devices, so this is configured separately for
368 # each product.
369 ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.dexopt-flags=m=y
370endif
371
The Android Open Source Project88b60792009-03-03 19:28:42 -0800372ADDITIONAL_BUILD_PROPERTIES += net.bt.name=Android
373
374# enable vm tracing in files for now to help track
375# the cause of ANRs in the content process
376ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.stack-trace-file=/data/anr/traces.txt
377
The Android Open Source Project88b60792009-03-03 19:28:42 -0800378# ------------------------------------------------------------
379# Define a function that, given a list of module tags, returns
380# non-empty if that module should be installed in /system.
381
The Android Open Source Project2f312932009-03-09 11:52:11 -0700382# For most goals, anything not tagged with the "tests" tag should
The Android Open Source Project88b60792009-03-03 19:28:42 -0800383# be installed in /system.
384define should-install-to-system
The Android Open Source Project2f312932009-03-09 11:52:11 -0700385$(if $(filter tests,$(1)),,true)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800386endef
387
Joe Onoratoeb19b3e2009-04-13 16:32:16 -0700388ifdef is_sdk_build
The Android Open Source Project88b60792009-03-03 19:28:42 -0800389# For the sdk goal, anything with the "samples" tag should be
390# installed in /data even if that module also has "eng"/"debug"/"user".
391define should-install-to-system
The Android Open Source Project2f312932009-03-09 11:52:11 -0700392$(if $(filter samples tests,$(1)),,true)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800393endef
394endif
395
396
Joe Onoratoe334d252009-07-17 15:33:40 -0400397# If they only used the modifier goals (showcommands, checkbuild), we'll actually
398# build the default target.
399ifeq ($(filter-out $(INTERNAL_MODIFIER_TARGETS),$(MAKECMDGOALS)),)
400.PHONY: $(INTERNAL_MODIFIER_TARGETS)
401$(INTERNAL_MODIFIER_TARGETS): $(DEFAULT_GOAL)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800402endif
403
404# These targets are going to delete stuff, don't bother including
405# the whole directory tree if that's all we're going to do
406ifeq ($(MAKECMDGOALS),clean)
407dont_bother := true
408endif
409ifeq ($(MAKECMDGOALS),clobber)
410dont_bother := true
411endif
412ifeq ($(MAKECMDGOALS),dataclean)
413dont_bother := true
414endif
415ifeq ($(MAKECMDGOALS),installclean)
416dont_bother := true
417endif
418
419# Bring in all modules that need to be built.
420ifneq ($(dont_bother),true)
421
The Android Open Source Project88b60792009-03-03 19:28:42 -0800422ifeq ($(HOST_OS)-$(HOST_ARCH),darwin-ppc)
423SDK_ONLY := true
Raphael Moll7058f492010-04-13 10:38:35 -0700424$(info Building the SDK under darwin-ppc is actually obsolete and unsupported.)
425$(error stop)
426endif
427
428ifeq ($(HOST_OS),windows)
429SDK_ONLY := true
The Android Open Source Project88b60792009-03-03 19:28:42 -0800430endif
431
432ifeq ($(SDK_ONLY),true)
Raphael Moll8a2b7702013-03-13 15:30:35 -0700433include $(TOPDIR)sdk/build/windows_sdk_whitelist.mk
434include $(TOPDIR)development/build/windows_sdk_whitelist.mk
The Android Open Source Project88b60792009-03-03 19:28:42 -0800435
436# Exclude tools/acp when cross-compiling windows under linux
437ifeq ($(findstring Linux,$(UNAME)),)
438subdirs += build/tools/acp
439endif
440
441else # !SDK_ONLY
The Android Open Source Project88b60792009-03-03 19:28:42 -0800442#
443# Typical build; include any Android.mk files we can find.
444#
The Android Open Source Project88b60792009-03-03 19:28:42 -0800445subdirs := $(TOP)
446
447FULL_BUILD := true
448
The Android Open Source Project88b60792009-03-03 19:28:42 -0800449endif # !SDK_ONLY
450
Joe Onorato8dc8faa2010-09-14 13:09:48 -0400451# Before we go and include all of the module makefiles, stash away
Ying Wang7522f042010-10-11 16:31:49 -0700452# the PRODUCT_* values so that later we can verify they are not modified.
453stash_product_vars:=true
Joe Onorato8dc8faa2010-09-14 13:09:48 -0400454ifeq ($(stash_product_vars),true)
Ying Wang7522f042010-10-11 16:31:49 -0700455 $(call stash-product-vars, __STASHED)
Joe Onorato8dc8faa2010-09-14 13:09:48 -0400456endif
457
The Android Open Source Project88b60792009-03-03 19:28:42 -0800458ifneq ($(ONE_SHOT_MAKEFILE),)
459# We've probably been invoked by the "mm" shell function
460# with a subdirectory's makefile.
461include $(ONE_SHOT_MAKEFILE)
462# Change CUSTOM_MODULES to include only modules that were
463# defined by this makefile; this will install all of those
464# modules as a side-effect. Do this after including ONE_SHOT_MAKEFILE
465# so that the modules will be installed in the same place they
466# would have been with a normal make.
Jean-Baptiste Queru6907cfe2010-01-07 11:19:39 -0800467CUSTOM_MODULES := $(sort $(call get-tagged-modules,$(ALL_MODULE_TAGS)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800468FULL_BUILD :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800469# Stub out the notice targets, which probably aren't defined
470# when using ONE_SHOT_MAKEFILE.
471NOTICE-HOST-%: ;
472NOTICE-TARGET-%: ;
Joe Onoratoead96462009-07-30 11:20:04 -0700473
474else # ONE_SHOT_MAKEFILE
475
476#
477# Include all of the makefiles in the system
478#
479
480# Can't use first-makefiles-under here because
481# --mindepth=2 makes the prunes not work.
482subdir_makefiles := \
Joe Onoratodc1a7282009-08-04 15:58:26 -0400483 $(shell build/tools/findleaves.py --prune=out --prune=.repo --prune=.git $(subdirs) Android.mk)
Joe Onoratoead96462009-07-30 11:20:04 -0700484
The Android Open Source Project88b60792009-03-03 19:28:42 -0800485include $(subdir_makefiles)
Ying Wang71004f82012-05-24 21:05:19 -0700486
Joe Onoratoead96462009-07-30 11:20:04 -0700487endif # ONE_SHOT_MAKEFILE
488
Ying Wang71004f82012-05-24 21:05:19 -0700489# Now with all Android.mks loaded we can do post cleaning steps.
490include $(BUILD_SYSTEM)/post_clean.mk
491
Joe Onorato8dc8faa2010-09-14 13:09:48 -0400492ifeq ($(stash_product_vars),true)
Ying Wang7522f042010-10-11 16:31:49 -0700493 $(call assert-product-vars, __STASHED)
Joe Onorato8dc8faa2010-09-14 13:09:48 -0400494endif
495
Jean-Baptiste Queru09447712010-09-26 13:05:41 -0700496include $(BUILD_SYSTEM)/legacy_prebuilts.mk
497ifneq ($(filter-out $(GRANDFATHERED_ALL_PREBUILT),$(strip $(notdir $(ALL_PREBUILT)))),)
498 $(warning *** Some files have been added to ALL_PREBUILT.)
499 $(warning *)
Kenny Root824d7b22010-11-18 14:27:00 -0800500 $(warning * ALL_PREBUILT is a deprecated mechanism that)
Jean-Baptiste Queru09447712010-09-26 13:05:41 -0700501 $(warning * should not be used for new files.)
502 $(warning * As an alternative, use PRODUCT_COPY_FILES in)
503 $(warning * the appropriate product definition.)
504 $(warning * build/target/product/core.mk is the product)
505 $(warning * definition used in all products.)
506 $(warning *)
507 $(foreach bad_prebuilt,$(filter-out $(GRANDFATHERED_ALL_PREBUILT),$(strip $(notdir $(ALL_PREBUILT)))),$(warning * unexpected $(bad_prebuilt) in ALL_PREBUILT))
508 $(warning *)
509 $(error ALL_PREBUILT contains unexpected files)
510endif
511
The Android Open Source Project88b60792009-03-03 19:28:42 -0800512# -------------------------------------------------------------------
513# All module makefiles have been included at this point.
514# -------------------------------------------------------------------
515
516# -------------------------------------------------------------------
517# Include any makefiles that must happen after the module makefiles
518# have been included.
519# TODO: have these files register themselves via a global var rather
520# than hard-coding the list here.
521ifdef FULL_BUILD
522 # Only include this during a full build, otherwise we can't be
523 # guaranteed that any policies were included.
524 -include frameworks/policies/base/PolicyConfig.mk
525endif
526
527# -------------------------------------------------------------------
528# Fix up CUSTOM_MODULES to refer to installed files rather than
529# just bare module names. Leave unknown modules alone in case
530# they're actually full paths to a particular file.
531known_custom_modules := $(filter $(ALL_MODULES),$(CUSTOM_MODULES))
532unknown_custom_modules := $(filter-out $(ALL_MODULES),$(CUSTOM_MODULES))
533CUSTOM_MODULES := \
534 $(call module-installed-files,$(known_custom_modules)) \
535 $(unknown_custom_modules)
536
537# -------------------------------------------------------------------
538# Define dependencies for modules that require other modules.
539# This can only happen now, after we've read in all module makefiles.
540#
541# TODO: deal with the fact that a bare module name isn't
542# unambiguous enough. Maybe declare short targets like
543# APPS:Quake or HOST:SHARED_LIBRARIES:libutils.
544# BUG: the system image won't know to depend on modules that are
545# brought in as requirements of other modules.
546define add-required-deps
547$(1): $(2)
548endef
549$(foreach m,$(ALL_MODULES), \
550 $(eval r := $(ALL_MODULES.$(m).REQUIRED)) \
551 $(if $(r), \
552 $(eval r := $(call module-installed-files,$(r))) \
Dima Zavin531f5242010-09-27 17:37:17 -0700553 $(eval $(call add-required-deps,$(ALL_MODULES.$(m).INSTALLED),$(r))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800554 ) \
555 )
556m :=
557r :=
Dima Zavinc2901aa2010-09-23 19:07:32 -0700558i :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800559add-required-deps :=
560
561# -------------------------------------------------------------------
562# Figure out our module sets.
Joe Onorato529302d2012-05-22 14:08:50 -0700563#
The Android Open Source Project88b60792009-03-03 19:28:42 -0800564# Of the modules defined by the component makefiles,
565# determine what we actually want to build.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800566
567ifdef FULL_BUILD
568 # The base list of modules to build for this product is specified
569 # by the appropriate product definition file, which was included
570 # by product_config.make.
Joe Onorato26ead962012-07-11 19:38:48 -0700571 product_MODULES := $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES)
Ying Wang489458f2012-08-23 15:08:34 -0700572 # Filter out the overridden packages before doing expansion
573 product_MODULES := $(filter-out $(foreach p, $(product_MODULES), \
574 $(PACKAGES.$(p).OVERRIDES)), $(product_MODULES))
Joe Onorato26ead962012-07-11 19:38:48 -0700575 $(call expand-required-modules,product_MODULES,$(product_MODULES))
576 product_FILES := $(call module-installed-files, $(product_MODULES))
Joe Onorato529302d2012-05-22 14:08:50 -0700577 ifeq (0,1)
Joe Onorato26ead962012-07-11 19:38:48 -0700578 $(info product_FILES for $(TARGET_DEVICE) ($(INTERNAL_PRODUCT)):)
579 $(foreach p,$(product_FILES),$(info : $(p)))
Joe Onorato529302d2012-05-22 14:08:50 -0700580 $(error done)
581 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800582else
583 # We're not doing a full build, and are probably only including
584 # a subset of the module makefiles. Don't try to build any modules
585 # requested by the product, because we probably won't have rules
586 # to build them.
Joe Onorato26ead962012-07-11 19:38:48 -0700587 product_FILES :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800588endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800589
Joe Onorato529302d2012-05-22 14:08:50 -0700590# When modules are tagged with debug eng or tests, they are installed
591# for those variants regardless of what the product spec says.
Joe Onoratod7d0afc2012-06-05 15:54:09 -0700592debug_MODULES := $(sort \
593 $(call get-tagged-modules,debug) \
594 $(call module-installed-files, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_DEBUG)) \
595 )
Joe Onoratocea08a52012-08-17 00:09:27 -0700596eng_MODULES := $(sort \
597 $(call get-tagged-modules,eng) \
598 $(call module-installed-files, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_ENG)) \
599 )
Joe Onoratod7d0afc2012-06-05 15:54:09 -0700600tests_MODULES := $(sort \
601 $(call get-tagged-modules,tests) \
602 $(call module-installed-files, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_TESTS)) \
603 )
The Android Open Source Project88b60792009-03-03 19:28:42 -0800604
Joe Onorato529302d2012-05-22 14:08:50 -0700605# TODO: Remove the 3 places in the tree that use ALL_DEFAULT_INSTALLED_MODULES
606# and get rid of it from this list.
607# TODO: The shell is chosen by magic. Do we still need this?
608modules_to_install := $(sort \
Joe Onorato75493612012-05-22 17:33:22 -0700609 $(ALL_DEFAULT_INSTALLED_MODULES) \
Joe Onorato26ead962012-07-11 19:38:48 -0700610 $(product_FILES) \
Joe Onorato75493612012-05-22 17:33:22 -0700611 $(foreach tag,$(tags_to_install),$($(tag)_MODULES)) \
612 $(call get-tagged-modules, shell_$(TARGET_SHELL)) \
613 $(CUSTOM_MODULES) \
614 )
The Android Open Source Project88b60792009-03-03 19:28:42 -0800615
616# Some packages may override others using LOCAL_OVERRIDES_PACKAGES.
617# Filter out (do not install) any overridden packages.
The Android Open Source Project2f312932009-03-09 11:52:11 -0700618overridden_packages := $(call get-package-overrides,$(modules_to_install))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800619ifdef overridden_packages
The Android Open Source Project2f312932009-03-09 11:52:11 -0700620# old_modules_to_install := $(modules_to_install)
621 modules_to_install := \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800622 $(filter-out $(foreach p,$(overridden_packages),$(p) %/$(p).apk), \
The Android Open Source Project2f312932009-03-09 11:52:11 -0700623 $(modules_to_install))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800624endif
The Android Open Source Project2f312932009-03-09 11:52:11 -0700625#$(error filtered out
626# $(filter-out $(modules_to_install),$(old_modules_to_install)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800627
628# Don't include any GNU targets in the SDK. It's ok (and necessary)
629# to build the host tools, but nothing that's going to be installed
630# on the target (including static libraries).
Joe Onoratoeb19b3e2009-04-13 16:32:16 -0700631ifdef is_sdk_build
The Android Open Source Project88b60792009-03-03 19:28:42 -0800632 target_gnu_MODULES := \
633 $(filter \
634 $(TARGET_OUT_INTERMEDIATES)/% \
635 $(TARGET_OUT)/% \
636 $(TARGET_OUT_DATA)/%, \
637 $(sort $(call get-tagged-modules,gnu)))
638 $(info Removing from sdk:)$(foreach d,$(target_gnu_MODULES),$(info : $(d)))
The Android Open Source Project2f312932009-03-09 11:52:11 -0700639 modules_to_install := \
640 $(filter-out $(target_gnu_MODULES),$(modules_to_install))
Ying Wang486be822011-10-08 14:31:54 -0700641
Joe Onoratod7d0afc2012-06-05 15:54:09 -0700642 # Ensure every module listed in PRODUCT_PACKAGES* gets something installed
643 # TODO: Should we do this for all builds and not just the sdk?
Ying Wang486be822011-10-08 14:31:54 -0700644 $(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES), \
Joe Onoratocea08a52012-08-17 00:09:27 -0700645 $(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
Ying Wang512b9622013-03-07 18:28:53 -0800646 $(error $(ALL_MODULES.$(m).MAKEFILE): Module '$(m)' in PRODUCT_PACKAGES has nothing to install!)))
Joe Onoratod7d0afc2012-06-05 15:54:09 -0700647 $(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_DEBUG), \
Joe Onoratocea08a52012-08-17 00:09:27 -0700648 $(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
Joe Onoratoc5fbef52012-08-17 01:26:41 -0700649 $(warning $(ALL_MODULES.$(m).MAKEFILE): Module '$(m)' in PRODUCT_PACKAGES_DEBUG has nothing to install!)))
Joe Onoratod7d0afc2012-06-05 15:54:09 -0700650 $(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_ENG), \
Joe Onoratocea08a52012-08-17 00:09:27 -0700651 $(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
Joe Onoratoc5fbef52012-08-17 01:26:41 -0700652 $(warning $(ALL_MODULES.$(m).MAKEFILE): Module '$(m)' in PRODUCT_PACKAGES_ENG has nothing to install!)))
Joe Onoratod7d0afc2012-06-05 15:54:09 -0700653 $(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_TESTS), \
Joe Onoratocea08a52012-08-17 00:09:27 -0700654 $(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
Joe Onoratoc5fbef52012-08-17 01:26:41 -0700655 $(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 -0800656endif
657
Joe Onoratoe334d252009-07-17 15:33:40 -0400658# build/core/Makefile contains extra stuff that we don't want to pollute this
The Android Open Source Project88b60792009-03-03 19:28:42 -0800659# top-level makefile with. It expects that ALL_DEFAULT_INSTALLED_MODULES
660# contains everything that's built during the current make, but it also further
661# extends ALL_DEFAULT_INSTALLED_MODULES.
The Android Open Source Project2f312932009-03-09 11:52:11 -0700662ALL_DEFAULT_INSTALLED_MODULES := $(modules_to_install)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800663include $(BUILD_SYSTEM)/Makefile
The Android Open Source Project2f312932009-03-09 11:52:11 -0700664modules_to_install := $(sort $(ALL_DEFAULT_INSTALLED_MODULES))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800665ALL_DEFAULT_INSTALLED_MODULES :=
666
667endif # dont_bother
668
Joe Onoratod23c3232012-05-21 12:16:05 -0700669
Joe Onoratoe334d252009-07-17 15:33:40 -0400670# These are additional goals that we build, in order to make sure that there
671# is as little code as possible in the tree that doesn't build.
672modules_to_check := $(foreach m,$(ALL_MODULES),$(ALL_MODULES.$(m).CHECKED))
673
674# If you would like to build all goals, and not skip any intermediate
675# steps, you can pass the "all" modifier goal on the commandline.
676ifneq ($(filter all,$(MAKECMDGOALS)),)
677modules_to_check += $(foreach m,$(ALL_MODULES),$(ALL_MODULES.$(m).BUILT))
678endif
679
680# for easier debugging
681modules_to_check := $(sort $(modules_to_check))
682#$(error modules_to_check $(modules_to_check))
683
The Android Open Source Project88b60792009-03-03 19:28:42 -0800684# -------------------------------------------------------------------
685# This is used to to get the ordering right, you can also use these,
686# but they're considered undocumented, so don't complain if their
687# behavior changes.
688.PHONY: prebuilt
689prebuilt: $(ALL_PREBUILT)
690
691# An internal target that depends on all copied headers
692# (see copy_headers.make). Other targets that need the
693# headers to be copied first can depend on this target.
694.PHONY: all_copied_headers
695all_copied_headers: ;
696
697$(ALL_C_CPP_ETC_OBJECTS): | all_copied_headers
698
699# All the droid stuff, in directories
700.PHONY: files
Joe Onoratoe334d252009-07-17 15:33:40 -0400701files: prebuilt \
702 $(modules_to_install) \
Joe Onoratoe334d252009-07-17 15:33:40 -0400703 $(INSTALLED_ANDROID_INFO_TXT_TARGET)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800704
705# -------------------------------------------------------------------
706
Joe Onoratoe334d252009-07-17 15:33:40 -0400707.PHONY: checkbuild
708checkbuild: $(modules_to_check)
709
The Android Open Source Project88b60792009-03-03 19:28:42 -0800710.PHONY: ramdisk
711ramdisk: $(INSTALLED_RAMDISK_TARGET)
712
Ying Wang89686532011-12-16 11:27:52 -0800713.PHONY: factory_ramdisk
714factory_ramdisk: $(INSTALLED_FACTORY_RAMDISK_TARGET)
715
Joe Onoratoe1d191e2012-05-17 11:32:26 -0700716.PHONY: factory_bundle
717factory_bundle: $(INSTALLED_FACTORY_BUNDLE_TARGET)
718
The Android Open Source Project88b60792009-03-03 19:28:42 -0800719.PHONY: systemtarball
720systemtarball: $(INSTALLED_SYSTEMTARBALL_TARGET)
721
Bruce Beare52aac202010-06-04 15:24:49 -0700722.PHONY: boottarball
723boottarball: $(INSTALLED_BOOTTARBALL_TARGET)
724
The Android Open Source Project88b60792009-03-03 19:28:42 -0800725.PHONY: userdataimage
726userdataimage: $(INSTALLED_USERDATAIMAGE_TARGET)
727
Ying Wang9c0f3e32011-02-01 14:52:05 -0800728ifneq (,$(filter userdataimage, $(MAKECMDGOALS)))
729$(call dist-for-goals, userdataimage, $(BUILT_USERDATAIMAGE_TARGET))
730endif
731
The Android Open Source Project88b60792009-03-03 19:28:42 -0800732.PHONY: userdatatarball
733userdatatarball: $(INSTALLED_USERDATATARBALL_TARGET)
734
Ying Wang9f8e8db2011-11-04 11:37:01 -0700735.PHONY: cacheimage
736cacheimage: $(INSTALLED_CACHEIMAGE_TARGET)
737
The Android Open Source Project88b60792009-03-03 19:28:42 -0800738.PHONY: bootimage
739bootimage: $(INSTALLED_BOOTIMAGE_TARGET)
740
The Android Open Source Project88b60792009-03-03 19:28:42 -0800741# Build files and then package it into the rom formats
742.PHONY: droidcore
743droidcore: files \
744 systemimage \
745 $(INSTALLED_BOOTIMAGE_TARGET) \
746 $(INSTALLED_RECOVERYIMAGE_TARGET) \
747 $(INSTALLED_USERDATAIMAGE_TARGET) \
Ying Wang9f8e8db2011-11-04 11:37:01 -0700748 $(INSTALLED_CACHEIMAGE_TARGET) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800749 $(INSTALLED_FILES_FILE)
750
Ying Wang228fcef2010-12-08 20:07:48 -0800751# dist_files only for putting your library into the dist directory with a full build.
752.PHONY: dist_files
Ying Wangad8aec92010-07-13 21:08:38 -0700753
Ying Wanga37a2cb2010-04-28 12:59:51 -0700754# Dist for droid if droid is among the cmd goals, or no cmd goal is given.
755ifneq ($(filter droid,$(MAKECMDGOALS))$(filter ||,|$(filter-out $(INTERNAL_MODIFIER_TARGETS),$(MAKECMDGOALS))|),)
Ying Wang8d9cbe52010-07-07 16:57:28 -0700756
Joe Onorato16fa4b22010-06-09 16:35:58 -0700757ifneq ($(TARGET_BUILD_APPS),)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700758 # 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 -0800759
Joe Onorato16fa4b22010-06-09 16:35:58 -0700760 unbundled_build_modules :=
761 ifneq ($(filter all,$(TARGET_BUILD_APPS)),)
Ying Wangc048c9b2010-06-24 15:08:33 -0700762 # If they used the magic goal "all" then build all apps in the source tree.
763 unbundled_build_modules := $(foreach m,$(sort $(ALL_MODULES)),$(if $(filter APPS,$(ALL_MODULES.$(m).CLASS)),$(m)))
Joe Onorato16fa4b22010-06-09 16:35:58 -0700764 else
765 unbundled_build_modules := $(TARGET_BUILD_APPS)
766 endif
Guang Zhu0198d6e2010-04-23 11:54:37 -0700767
Ying Wangbc415dd2012-08-15 12:22:44 -0700768 apps_only_installed_files := $(foreach m,$(unbundled_build_modules),$(ALL_MODULES.$(m).INSTALLED))
Joe Onorato16fa4b22010-06-09 16:35:58 -0700769 # dist the unbundled app.
Ying Wangbc415dd2012-08-15 12:22:44 -0700770 $(call dist-for-goals,apps_only, $(apps_only_installed_files))
771
772 ifeq ($(EMMA_INSTRUMENT),true)
773 $(EMMA_META_ZIP) : $(apps_only_installed_files)
774
775 $(call dist-for-goals,apps_only, $(EMMA_META_ZIP))
776 endif
Joe Onorato16fa4b22010-06-09 16:35:58 -0700777
Joe Onoratoda12daf2010-06-09 18:18:31 -0700778.PHONY: apps_only
779apps_only: $(unbundled_build_modules)
Joe Onorato16fa4b22010-06-09 16:35:58 -0700780
Joe Onoratoda12daf2010-06-09 18:18:31 -0700781droid: apps_only
782
783else # TARGET_BUILD_APPS
784 $(call dist-for-goals, droidcore, \
Joe Onorato16fa4b22010-06-09 16:35:58 -0700785 $(INTERNAL_UPDATE_PACKAGE_TARGET) \
786 $(INTERNAL_OTA_PACKAGE_TARGET) \
787 $(SYMBOLS_ZIP) \
Joe Onorato16fa4b22010-06-09 16:35:58 -0700788 $(INSTALLED_FILES_FILE) \
789 $(INSTALLED_BUILD_PROP_TARGET) \
790 $(BUILT_TARGET_FILES_PACKAGE) \
791 $(INSTALLED_ANDROID_INFO_TXT_TARGET) \
Ed Heyl8532aa02010-07-01 10:07:28 -0700792 $(INSTALLED_RAMDISK_TARGET) \
Ying Wang89686532011-12-16 11:27:52 -0800793 $(INSTALLED_FACTORY_RAMDISK_TARGET) \
Joe Onoratoe1d191e2012-05-17 11:32:26 -0700794 $(INSTALLED_FACTORY_BUNDLE_TARGET) \
Joe Onorato16fa4b22010-06-09 16:35:58 -0700795 )
796
Colin Cross971c2462012-03-29 14:31:08 -0700797 ifneq ($(TARGET_BUILD_PDK),true)
798 $(call dist-for-goals, droidcore, \
799 $(APPS_ZIP) \
800 $(INTERNAL_EMULATOR_PACKAGE_TARGET) \
801 $(PACKAGE_STATS_FILE) \
802 )
803 endif
804
Ying Wangbc415dd2012-08-15 12:22:44 -0700805 ifeq ($(EMMA_INSTRUMENT),true)
806 $(EMMA_META_ZIP) : $(INSTALLED_SYSTEMIMAGE)
807
808 $(call dist-for-goals, dist_files, $(EMMA_META_ZIP))
809 endif
810
Joe Onoratoda12daf2010-06-09 18:18:31 -0700811# Building a full system-- the default is to build droidcore
Ying Wang228fcef2010-12-08 20:07:48 -0800812droid: droidcore dist_files
Joe Onoratoda12daf2010-06-09 18:18:31 -0700813
Ying Wangf9cd36a2010-06-15 15:43:13 -0700814endif # TARGET_BUILD_APPS
815endif # droid in $(MAKECMDGOALS)
Ying Wang52911302010-05-26 13:13:56 -0700816
Joe Onoratoda12daf2010-06-09 18:18:31 -0700817
Ying Wang160b6702012-03-13 18:58:27 -0700818.PHONY: droid
The Android Open Source Project88b60792009-03-03 19:28:42 -0800819
Ying Wang01884142010-07-20 16:18:16 -0700820# phony target that include any targets in $(ALL_MODULES)
821.PHONY: all_modules
822all_modules: $(ALL_MODULES)
823
The Android Open Source Project88b60792009-03-03 19:28:42 -0800824.PHONY: docs
825docs: $(ALL_DOCS)
826
827.PHONY: sdk
828ALL_SDK_TARGETS := $(INTERNAL_SDK_TARGET)
829sdk: $(ALL_SDK_TARGETS)
Raphaelc4d47312011-02-15 16:09:36 -0800830ifneq ($(filter sdk win_sdk,$(MAKECMDGOALS)),)
831$(call dist-for-goals,sdk win_sdk, \
Ying Wangbe188ca2011-03-07 16:13:32 -0800832 $(ALL_SDK_TARGETS) \
833 $(SYMBOLS_ZIP) \
834 $(INSTALLED_BUILD_PROP_TARGET) \
835)
Ying Wanga37a2cb2010-04-28 12:59:51 -0700836endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800837
Ying Wang0d570a72012-06-18 18:45:40 -0700838.PHONY: lintall
839
Ying Wang8b9b39e2010-02-25 20:20:43 -0800840.PHONY: samplecode
841sample_MODULES := $(sort $(call get-tagged-modules,samples))
842sample_APKS_DEST_PATH := $(TARGET_COMMON_OUT_ROOT)/samples
843sample_APKS_COLLECTION := \
844 $(foreach module,$(sample_MODULES),$(sample_APKS_DEST_PATH)/$(notdir $(module)))
845$(foreach module,$(sample_MODULES),$(eval $(call \
846 copy-one-file,$(module),$(sample_APKS_DEST_PATH)/$(notdir $(module)))))
847sample_ADDITIONAL_INSTALLED := \
848 $(filter-out $(modules_to_install) $(modules_to_check) $(ALL_PREBUILT),$(sample_MODULES))
849samplecode: $(sample_APKS_COLLECTION)
850 @echo "Collect sample code apks: $^"
851 # remove apks that are not intended to be installed.
852 rm -f $(sample_ADDITIONAL_INSTALLED)
853
The Android Open Source Project88b60792009-03-03 19:28:42 -0800854.PHONY: findbugs
855findbugs: $(INTERNAL_FINDBUGS_HTML_TARGET) $(INTERNAL_FINDBUGS_XML_TARGET)
856
857.PHONY: clean
The Android Open Source Project88b60792009-03-03 19:28:42 -0800858clean:
The Android Open Source Project88b60792009-03-03 19:28:42 -0800859 @rm -rf $(OUT_DIR)
860 @echo "Entire build directory removed."
861
Joe Onoratodfc5e0c2010-09-03 13:25:11 -0400862.PHONY: clobber
863clobber: clean
864
The Android Open Source Project88b60792009-03-03 19:28:42 -0800865# The rules for dataclean and installclean are defined in cleanbuild.mk.
866
867#xxx scrape this from ALL_MODULE_NAME_TAGS
868.PHONY: modules
869modules:
870 @echo "Available sub-modules:"
871 @echo "$(call module-names-for-tag-list,$(ALL_MODULE_TAGS))" | \
Evan JIANGf3806922009-01-24 00:11:30 +0800872 tr -s ' ' '\n' | sort -u | $(COLUMN)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800873
874.PHONY: showcommands
875showcommands:
876 @echo >/dev/null
Joe Onoratod6b1d622012-05-18 20:41:38 -0700877
878.PHONY: nothing
879nothing:
880 @echo Successfully read the makefiles.