blob: a1374a23ebf67232364cc3e1225437156c6bded5 [file] [log] [blame]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001
2# Use bash, not whatever shell somebody has installed as /bin/sh
The Android Open Source Project4f85cc52009-01-09 17:50:54 -08003# This is repeated in config.mk, since envsetup.sh runs that file
4# directly.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07005SHELL := /bin/bash
6
7# this turns off the suffix rules built into make
8.SUFFIXES:
9
10# If a rule fails, delete $@.
11.DELETE_ON_ERROR:
12
13# Figure out where we are.
14#TOP := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)))
15#TOP := $(patsubst %/,%,$(TOP))
16
17# TOPDIR is the normal variable you should use, because
18# if we are executing relative to the current directory
19# it can be "", whereas TOP must be "." which causes
20# pattern matching probles when make strips off the
21# trailing "./" from paths in various places.
22#ifeq ($(TOP),.)
23#TOPDIR :=
24#else
25#TOPDIR := $(TOP)/
26#endif
27
28# check for broken versions of make
29ifeq (0,$(shell expr $$(echo $(MAKE_VERSION) | sed "s/[^0-9\.].*//") \>= 3.81))
30$(warning ********************************************************************************)
31$(warning * You are using version $(MAKE_VERSION) of make.)
32$(warning * You must upgrade to version 3.81 or greater.)
33$(warning * see file://$(shell pwd)/docs/development-environment/machine-setup.html)
34$(warning ********************************************************************************)
35$(error stopping)
36endif
37
38TOP := .
39TOPDIR :=
40
41BUILD_SYSTEM := $(TOPDIR)build/core
42
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080043# This is the default target. It must be the first declared target.
44DEFAULT_GOAL := droid
45$(DEFAULT_GOAL):
46
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070047# Set up various standard variables based on configuration
48# and host information.
49include $(BUILD_SYSTEM)/config.mk
50
51# This allows us to force a clean build - included after the config.make
52# environment setup is done, but before we generate any dependencies. This
53# file does the rm -rf inline so the deps which are all done below will
54# be generated correctly
55include $(BUILD_SYSTEM)/cleanbuild.mk
56
57ifneq ($(HOST_OS),windows)
58ifneq ($(HOST_OS)-$(HOST_ARCH),darwin-ppc)
59# check for a case sensitive file system
60ifneq (a,$(shell mkdir -p $(OUT_DIR) ; \
61 echo a > $(OUT_DIR)/casecheck.txt; \
62 echo B > $(OUT_DIR)/CaseCheck.txt; \
63 cat $(OUT_DIR)/casecheck.txt))
64$(warning ************************************************************)
65$(warning You are building on a case-insensitive filesystem.)
66$(warning Please move your source tree to a case-sensitive filesystem.)
67$(warning ************************************************************)
68$(error Case-insensitive filesystems not supported)
69endif
70endif
71endif
72
73# Make sure that there are no spaces in the absolute path; the
74# build system can't deal with them.
75ifneq ($(words $(shell pwd)),1)
76$(warning ************************************************************)
77$(warning You are building in a directory whose absolute path contains)
78$(warning a space character:)
79$(warning $(space))
80$(warning "$(shell pwd)")
81$(warning $(space))
82$(warning Please move your source tree to a path that does not contain)
83$(warning any spaces.)
84$(warning ************************************************************)
85$(error Directory names containing spaces not supported)
86endif
87
88# Set up version information.
89include $(BUILD_SYSTEM)/version_defaults.mk
90
91# These are the modifier targets that don't do anything themselves, but
92# change the behavior of the build.
93# (must be defined before including definitions.make)
94INTERNAL_MODIFIER_TARGETS := showcommands
95
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070096# Bring in standard build system definitions.
97include $(BUILD_SYSTEM)/definitions.mk
98
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080099ifneq ($(filter eng user userdebug tests,$(MAKECMDGOALS)),)
100$(info ***************************************************************)
101$(info ***************************************************************)
102$(info Don't pass '$(filter eng user userdebug tests,$(MAKECMDGOALS))' on \
103 the make command line.)
104$(info Set TARGET_BUILD_VARIANT in buildspec.mk, or use lunch or)
105$(info choosecombo.)
106$(info ***************************************************************)
107$(info ***************************************************************)
108$(error stopping)
109endif
110
111
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700112###
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800113### In this section we set up the things that are different
114### between the build variants
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700115###
116
117## user/userdebug ##
118
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800119user_variant := $(filter userdebug user,$(TARGET_BUILD_VARIANT))
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700120enable_target_debugging := true
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800121ifneq (,$(user_variant))
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700122 # Target is secure in user builds.
123 ADDITIONAL_DEFAULT_PROPERTIES += ro.secure=1
124
125 override_build_tags := user
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800126 ifeq ($(user_variant),userdebug)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700127 # Pick up some extra useful tools
128 override_build_tags += debug
129 else
130 # Disable debugging in plain user builds.
131 enable_target_debugging :=
132 endif
133
134 # TODO: Always set WITH_DEXPREOPT (for user builds) once it works on OSX.
135 # Also, remove the corresponding block in config/product_config.make.
136 ifeq ($(HOST_OS)-$(WITH_DEXPREOPT_buildbot),linux-true)
137 WITH_DEXPREOPT := true
138 endif
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800139else # !user_variant
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700140 # Turn on checkjni for non-user builds.
141 ADDITIONAL_BUILD_PROPERTIES += ro.kernel.android.checkjni=1
142 # Set device insecure for non-user builds.
143 ADDITIONAL_DEFAULT_PROPERTIES += ro.secure=0
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800144endif # !user_variant
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700145
146ifeq (true,$(strip $(enable_target_debugging)))
147 # Target is more debuggable and adbd is on by default
148 ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=1 persist.service.adb.enable=1
149 # Include the debugging/testing OTA keys in this build.
150 INCLUDE_TEST_OTA_KEYS := true
151else # !enable_target_debugging
152 # Target is less debuggable and adbd is off by default
153 ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=0 persist.service.adb.enable=0
154endif # !enable_target_debugging
155
156## tests ##
157
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800158ifeq ($(TARGET_BUILD_VARIANT),tests)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700159override_build_tags := eng debug user development tests
160endif
161
162## sdk ##
163
164ifneq ($(filter sdk,$(MAKECMDGOALS)),)
165ifneq ($(words $(filter-out $(INTERNAL_MODIFIER_TARGETS),$(MAKECMDGOALS))),1)
166$(error The 'sdk' target may not be specified with any other targets)
167endif
The Android Open Source Project66339ad2009-01-15 16:12:07 -0800168override_build_tags := user
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700169ADDITIONAL_BUILD_PROPERTIES += xmpp.auto-presence=true
170ADDITIONAL_BUILD_PROPERTIES += ro.config.nocheckin=yes
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700171else # !sdk
172# Enable sync for non-sdk builds only (sdk builds lack SubscribedFeedsProvider).
173ADDITIONAL_BUILD_PROPERTIES += ro.config.sync=yes
174endif
175
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800176ifeq "" "$(filter %:system/etc/apns-conf.xml, $(PRODUCT_COPY_FILES))"
177 # Install an apns-conf.xml file if one's not already being installed.
178 PRODUCT_COPY_FILES += development/data/etc/apns-conf_sdk.xml:system/etc/apns-conf.xml
179 ifeq ($(filter sdk,$(MAKECMDGOALS)),)
180 $(warning implicitly installing apns-conf_sdk.xml)
181 endif
182endif
183
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700184ADDITIONAL_BUILD_PROPERTIES += net.bt.name=Android
185
186# enable vm tracing in files for now to help track
187# the cause of ANRs in the content process
188ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.stack-trace-file=/data/anr/traces.txt
189
190
191# ------------------------------------------------------------
192# Define a function that, given a list of module tags, returns
193# non-empty if that module should be installed in /system.
194
195# For most goals, anything tagged with "eng"/"debug"/"user" should
196# be installed in /system.
197define should-install-to-system
198$(filter eng debug user,$(1))
199endef
200
201ifneq (,$(filter sdk,$(MAKECMDGOALS)))
202# For the sdk goal, anything with the "samples" tag should be
203# installed in /data even if that module also has "eng"/"debug"/"user".
204define should-install-to-system
205$(if $(filter samples,$(1)),,$(filter eng debug user development,$(1)))
206endef
207endif
208
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800209ifeq ($(TARGET_BUILD_VARIANT),)
210# For the default goal, everything should be installed in /system.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700211define should-install-to-system
212true
213endef
214endif
215
216
217# If all they typed was make showcommands, we'll actually build
218# the default target.
219ifeq ($(MAKECMDGOALS),showcommands)
220.PHONY: showcommands
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800221showcommands: $(DEFAULT_GOAL)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700222endif
223
224# These targets are going to delete stuff, don't bother including
225# the whole directory tree if that's all we're going to do
226ifeq ($(MAKECMDGOALS),clean)
227dont_bother := true
228endif
229ifeq ($(MAKECMDGOALS),clobber)
230dont_bother := true
231endif
232ifeq ($(MAKECMDGOALS),dataclean)
233dont_bother := true
234endif
235ifeq ($(MAKECMDGOALS),installclean)
236dont_bother := true
237endif
238
239# Bring in all modules that need to be built.
240ifneq ($(dont_bother),true)
241
242subdir_makefiles :=
243
244ifeq ($(HOST_OS),windows)
245SDK_ONLY := true
246endif
247ifeq ($(HOST_OS)-$(HOST_ARCH),darwin-ppc)
248SDK_ONLY := true
249endif
250
251ifeq ($(SDK_ONLY),true)
252
253subdirs := \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800254 prebuilt \
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700255 build/libs/host \
256 dalvik/dexdump \
257 dalvik/libdex \
258 dalvik/tools/dmtracedump \
259 development/emulator/mksdcard \
260 development/tools/activitycreator \
261 development/tools/line_endings \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800262 development/host \
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700263 external/expat \
264 external/libpng \
265 external/qemu \
266 external/sqlite/dist \
267 external/zlib \
268 frameworks/base/libs/utils \
269 frameworks/base/tools/aapt \
270 frameworks/base/tools/aidl \
271 system/core/adb \
272 system/core/fastboot \
273 system/core/libcutils \
274 system/core/liblog \
275 system/core/libzipfile
276
277# The following can only be built if "javac" is available.
278# This check is used when building parts of the SDK under Cygwin.
279ifneq (,$(shell which javac 2>/dev/null))
280$(warning sdk-only: javac available.)
281subdirs += \
282 build/tools/signapk \
283 build/tools/zipalign \
284 dalvik/dx \
285 dalvik/libcore \
286 development/apps \
287 development/tools/androidprefs \
288 development/tools/apkbuilder \
289 development/tools/jarutils \
290 development/tools/layoutlib_utils \
291 development/tools/ninepatch \
292 development/tools/sdkstats \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800293 development/tools/sdkmanager \
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700294 frameworks/base \
295 frameworks/base/tools/layoutlib \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800296 external/googleclient \
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700297 packages
298else
299$(warning sdk-only: javac not available.)
300endif
301
302# Exclude tools/acp when cross-compiling windows under linux
303ifeq ($(findstring Linux,$(UNAME)),)
304subdirs += build/tools/acp
305endif
306
307else # !SDK_ONLY
308ifeq ($(BUILD_TINY_ANDROID), true)
309
310# TINY_ANDROID is a super-minimal build configuration, handy for board
311# bringup and very low level debugging
312
313INTERNAL_DEFAULT_DOCS_TARGETS :=
314
315subdirs := \
316 system/core \
317 external/zlib \
318 build/tools \
319 tools/kcm \
320 external/yaffs2
321else # !BUILD_TINY_ANDROID
322
323#
324# Typical build; include any Android.mk files we can find.
325#
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800326INTERNAL_DEFAULT_DOCS_TARGETS := offline-sdk-docs
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700327subdirs := $(TOP)
328
329FULL_BUILD := true
330
331endif # !BUILD_TINY_ANDROID
332
333endif # !SDK_ONLY
334
335# Can't use first-makefiles-under here because
336# --mindepth=2 makes the prunes not work.
337subdir_makefiles += \
The Android Open Source Project475fa122009-02-10 15:43:57 -0800338 $(shell build/tools/findleaves.sh --prune="./out" $(subdirs) Android.mk)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700339
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800340# Boards may be defined under $(SRC_TARGET_DIR)/board/$(TARGET_DEVICE)
341# or under vendor/*/$(TARGET_DEVICE). Search in both places, but
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700342# make sure only one exists.
343# Real boards should always be associated with an OEM vendor.
344board_config_mk := \
345 $(strip $(wildcard \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800346 $(SRC_TARGET_DIR)/board/$(TARGET_DEVICE)/BoardConfig.mk \
347 vendor/*/$(TARGET_DEVICE)/BoardConfig.mk \
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700348 ))
349ifeq ($(board_config_mk),)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800350 $(error No config file found for TARGET_DEVICE $(TARGET_DEVICE))
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700351endif
352ifneq ($(words $(board_config_mk)),1)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800353 $(error Multiple board config files for TARGET_DEVICE $(TARGET_DEVICE): $(board_config_mk))
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700354endif
355include $(board_config_mk)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800356TARGET_DEVICE_DIR := $(patsubst %/,%,$(dir $(board_config_mk)))
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700357board_config_mk :=
358
The Android Open Source Project35cfb082009-01-22 00:13:40 -0800359# Clean up/verify variables defined by the board config file.
360TARGET_BOOTLOADER_BOARD_NAME := $(strip $(TARGET_BOOTLOADER_BOARD_NAME))
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700361
362#
363# Include all of the makefiles in the system
364#
365
366ifneq ($(ONE_SHOT_MAKEFILE),)
367# We've probably been invoked by the "mm" shell function
368# with a subdirectory's makefile.
369include $(ONE_SHOT_MAKEFILE)
370# Change CUSTOM_MODULES to include only modules that were
371# defined by this makefile; this will install all of those
372# modules as a side-effect. Do this after including ONE_SHOT_MAKEFILE
373# so that the modules will be installed in the same place they
374# would have been with a normal make.
375CUSTOM_MODULES := $(sort $(call get-tagged-modules,$(ALL_MODULE_TAGS),))
376FULL_BUILD :=
377INTERNAL_DEFAULT_DOCS_TARGETS :=
378# Stub out the notice targets, which probably aren't defined
379# when using ONE_SHOT_MAKEFILE.
380NOTICE-HOST-%: ;
381NOTICE-TARGET-%: ;
382else
383include $(subdir_makefiles)
384endif
385# -------------------------------------------------------------------
386# All module makefiles have been included at this point.
387# -------------------------------------------------------------------
388
389# -------------------------------------------------------------------
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800390# Include any makefiles that must happen after the module makefiles
391# have been included.
392# TODO: have these files register themselves via a global var rather
393# than hard-coding the list here.
394ifdef FULL_BUILD
395 # Only include this during a full build, otherwise we can't be
396 # guaranteed that any policies were included.
397 -include frameworks/policies/base/PolicyConfig.mk
398endif
399
400# -------------------------------------------------------------------
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700401# Fix up CUSTOM_MODULES to refer to installed files rather than
402# just bare module names. Leave unknown modules alone in case
403# they're actually full paths to a particular file.
404known_custom_modules := $(filter $(ALL_MODULES),$(CUSTOM_MODULES))
405unknown_custom_modules := $(filter-out $(ALL_MODULES),$(CUSTOM_MODULES))
406CUSTOM_MODULES := \
407 $(call module-installed-files,$(known_custom_modules)) \
408 $(unknown_custom_modules)
409
410# -------------------------------------------------------------------
411# Define dependencies for modules that require other modules.
412# This can only happen now, after we've read in all module makefiles.
413#
414# TODO: deal with the fact that a bare module name isn't
415# unambiguous enough. Maybe declare short targets like
416# APPS:Quake or HOST:SHARED_LIBRARIES:libutils.
417# BUG: the system image won't know to depend on modules that are
418# brought in as requirements of other modules.
419define add-required-deps
420$(1): $(2)
421endef
422$(foreach m,$(ALL_MODULES), \
423 $(eval r := $(ALL_MODULES.$(m).REQUIRED)) \
424 $(if $(r), \
425 $(eval r := $(call module-installed-files,$(r))) \
426 $(eval $(call add-required-deps,$(ALL_MODULES.$(m).INSTALLED),$(r))) \
427 ) \
428 )
429m :=
430r :=
431add-required-deps :=
432
433# -------------------------------------------------------------------
434# Figure out our module sets.
435
436# Of the modules defined by the component makefiles,
437# determine what we actually want to build.
438# If a module has the "restricted" tag on it, it
439# poisons the rest of the tags and shouldn't appear
440# on any list.
441Default_MODULES := $(sort $(ALL_DEFAULT_INSTALLED_MODULES) \
442 $(ALL_BUILT_MODULES) \
443 $(CUSTOM_MODULES))
444
445ifdef FULL_BUILD
446 # The base list of modules to build for this product is specified
447 # by the appropriate product definition file, which was included
448 # by product_config.make.
449 user_PACKAGES := $(call module-installed-files, \
450 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES))
451 ifeq (0,1)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800452 $(info user packages for $(TARGET_DEVICE) ($(INTERNAL_PRODUCT)):)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700453 $(foreach p,$(user_PACKAGES),$(info : $(p)))
454 $(error done)
455 endif
456else
457 # We're not doing a full build, and are probably only including
458 # a subset of the module makefiles. Don't try to build any modules
459 # requested by the product, because we probably won't have rules
460 # to build them.
461 user_PACKAGES :=
462endif
463# Use tags to get the non-APPS user modules. Use the product
464# definition files to get the APPS user modules.
465user_MODULES := $(sort $(call get-tagged-modules,user,_class@APPS restricted))
466user_MODULES := $(user_MODULES) $(user_PACKAGES)
467
468eng_MODULES := $(sort $(call get-tagged-modules,eng,restricted))
469debug_MODULES := $(sort $(call get-tagged-modules,debug,restricted))
470tests_MODULES := $(sort $(call get-tagged-modules,tests,restricted))
471
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700472droid_MODULES := $(sort $(Default_MODULES) \
473 $(eng_MODULES) \
474 $(debug_MODULES) \
475 $(user_MODULES) \
476 $(all_development_MODULES))
477
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700478# THIS IS A TOTAL HACK AND SHOULD NOT BE USED AS AN EXAMPLE
479modules_to_build := $(droid_MODULES)
480ifneq ($(override_build_tags),)
481 modules_to_build := $(sort $(Default_MODULES) \
482 $(foreach tag,$(override_build_tags),$($(tag)_MODULES)))
483#$(error skipping modules $(filter-out $(modules_to_build),$(Default_MODULES) $(droid_MODULES)))
484endif
485
486# Some packages may override others using LOCAL_OVERRIDES_PACKAGES.
487# Filter out (do not install) any overridden packages.
488overridden_packages := $(call get-package-overrides,$(modules_to_build))
489ifdef overridden_packages
490# old_modules_to_build := $(modules_to_build)
491 modules_to_build := \
492 $(filter-out $(foreach p,$(overridden_packages),%/$(p) %/$(p).apk), \
493 $(modules_to_build))
494endif
495#$(error filtered out $(filter-out $(modules_to_build),$(old_modules_to_build)))
496
The Android Open Source Project66339ad2009-01-15 16:12:07 -0800497# Don't include any GNU targets in the SDK. It's ok (and necessary)
498# to build the host tools, but nothing that's going to be installed
499# on the target (including static libraries).
500ifneq ($(filter sdk,$(MAKECMDGOALS)),)
501 target_gnu_MODULES := \
502 $(filter \
503 $(TARGET_OUT_INTERMEDIATES)/% \
504 $(TARGET_OUT)/% \
505 $(TARGET_OUT_DATA)/%, \
506 $(sort $(call get-tagged-modules,gnu)))
507 $(info Removing from sdk:)$(foreach d,$(target_gnu_MODULES),$(info : $(d)))
508 modules_to_build := \
509 $(filter-out $(target_gnu_MODULES),$(modules_to_build))
510endif
511
512
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700513# config/Makefile contains extra stuff that we don't want to pollute this
514# top-level makefile with. It expects that ALL_DEFAULT_INSTALLED_MODULES
515# contains everything that's built during the current make, but it also further
516# extends ALL_DEFAULT_INSTALLED_MODULES.
517ALL_DEFAULT_INSTALLED_MODULES := $(modules_to_build)
518include $(BUILD_SYSTEM)/Makefile
519modules_to_build := $(sort $(ALL_DEFAULT_INSTALLED_MODULES))
520ALL_DEFAULT_INSTALLED_MODULES :=
521
522endif # dont_bother
523
524# -------------------------------------------------------------------
525# This is used to to get the ordering right, you can also use these,
526# but they're considered undocumented, so don't complain if their
527# behavior changes.
528.PHONY: prebuilt
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800529prebuilt: $(ALL_PREBUILT)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700530
531# An internal target that depends on all copied headers
532# (see copy_headers.make). Other targets that need the
533# headers to be copied first can depend on this target.
534.PHONY: all_copied_headers
535all_copied_headers: ;
536
537$(ALL_C_CPP_ETC_OBJECTS): | all_copied_headers
538
539# All the droid stuff, in directories
540.PHONY: files
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800541files: prebuilt $(modules_to_build) $(INSTALLED_ANDROID_INFO_TXT_TARGET)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700542
543# -------------------------------------------------------------------
544
545.PHONY: ramdisk
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800546ramdisk: $(INSTALLED_RAMDISK_TARGET)
547
548.PHONY: systemtarball
549systemtarball: $(INSTALLED_SYSTEMTARBALL_TARGET)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700550
551.PHONY: userdataimage
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800552userdataimage: $(INSTALLED_USERDATAIMAGE_TARGET)
553
554.PHONY: userdatatarball
555userdatatarball: $(INSTALLED_USERDATATARBALL_TARGET)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700556
557.PHONY: bootimage
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800558bootimage: $(INSTALLED_BOOTIMAGE_TARGET)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700559
560ifeq ($(BUILD_TINY_ANDROID), true)
561INSTALLED_RECOVERYIMAGE_TARGET :=
562endif
563
564# Build files and then package it into the rom formats
565.PHONY: droidcore
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800566droidcore: files \
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700567 systemimage \
568 $(INSTALLED_BOOTIMAGE_TARGET) \
569 $(INSTALLED_RECOVERYIMAGE_TARGET) \
570 $(INSTALLED_USERDATAIMAGE_TARGET) \
571 $(INTERNAL_DEFAULT_DOCS_TARGETS)
572
573# The actual files built by the droidcore target changes depending
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800574# on the build variant.
575.PHONY: droid tests
576droid tests: droidcore
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700577
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800578$(call dist-for-goals, droid, \
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700579 $(INTERNAL_UPDATE_PACKAGE_TARGET) \
580 $(INTERNAL_OTA_PACKAGE_TARGET) \
581 $(SYMBOLS_ZIP) \
582 $(APPS_ZIP) \
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700583 $(INTERNAL_EMULATOR_PACKAGE_TARGET) \
584 $(PACKAGE_STATS_FILE) \
585 $(INSTALLED_FILES_FILE) \
586 $(INSTALLED_BUILD_PROP_TARGET) \
587 $(BUILT_TARGET_FILES_PACKAGE) \
588 )
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800589
590# Tests are installed in userdata.img. If we're building the tests
591# variant, copy it for "make tests dist". Also copy a zip of the
592# contents of userdata.img, so that people can easily extract a
593# single .apk.
594ifeq ($(TARGET_BUILD_VARIANT),tests)
595$(call dist-for-goals, droid, \
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700596 $(INSTALLED_USERDATAIMAGE_TARGET) \
597 $(BUILT_TESTS_ZIP_PACKAGE) \
598 )
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800599endif
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700600
601.PHONY: docs
602docs: $(ALL_DOCS)
603
604.PHONY: sdk
605ALL_SDK_TARGETS := $(INTERNAL_SDK_TARGET)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800606sdk: $(ALL_SDK_TARGETS)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700607$(call dist-for-goals,sdk,$(ALL_SDK_TARGETS))
608
609.PHONY: findbugs
610findbugs: $(INTERNAL_FINDBUGS_HTML_TARGET) $(INTERNAL_FINDBUGS_XML_TARGET)
611
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700612.PHONY: clean
613dirs_to_clean := \
614 $(PRODUCT_OUT) \
615 $(TARGET_COMMON_OUT_ROOT) \
616 $(HOST_OUT) \
617 $(HOST_COMMON_OUT_ROOT)
618clean:
619 @for dir in $(dirs_to_clean) ; do \
620 echo "Cleaning $$dir..."; \
621 rm -rf $$dir; \
622 done
623 @echo "Clean."; \
624
625.PHONY: clobber
626clobber:
627 @rm -rf $(OUT_DIR)
628 @echo "Entire build directory removed."
629
The Android Open Source Project475fa122009-02-10 15:43:57 -0800630# The rules for dataclean and installclean are defined in cleanbuild.mk.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700631
632#xxx scrape this from ALL_MODULE_NAME_TAGS
633.PHONY: modules
634modules:
635 @echo "Available sub-modules:"
636 @echo "$(call module-names-for-tag-list,$(ALL_MODULE_TAGS))" | \
637 sed -e 's/ */\n/g' | sort -u | $(COLUMN)
638
639.PHONY: showcommands
640showcommands:
641 @echo >/dev/null
642