main.mk revision eb19b3e0d1189cc7833f185a067c9f80b5487707
1
2# Use bash, not whatever shell somebody has installed as /bin/sh
3# This is repeated in config.mk, since envsetup.sh runs that file
4# directly.
5SHELL := /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
43# This is the default target.  It must be the first declared target.
44DEFAULT_GOAL := droid
45$(DEFAULT_GOAL):
46
47# 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
96# Bring in standard build system definitions.
97include $(BUILD_SYSTEM)/definitions.mk
98
99ifneq ($(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# XXX The single quote on this line fixes gvim's syntax highlighting.
105# Without which, the rest of this file is impossible to read.
106$(info Set TARGET_BUILD_VARIANT in buildspec.mk, or use lunch or)
107$(info choosecombo.)
108$(info ***************************************************************)
109$(info ***************************************************************)
110$(error stopping)
111endif
112
113ifneq ($(filter-out $(INTERNAL_VALID_VARIANTS),$(TARGET_BUILD_VARIANT)),)
114$(info ***************************************************************)
115$(info ***************************************************************)
116$(info Invalid variant: $(TARGET_BUILD_VARIANT)
117$(info Valid values are: $(INTERNAL_VALID_VARIANTS)
118$(info ***************************************************************)
119$(info ***************************************************************)
120$(error stopping)
121endif
122
123###
124### In this section we set up the things that are different
125### between the build variants
126###
127
128is_sdk_build :=
129ifneq ($(filter sdk,$(MAKECMDGOALS)),)
130is_sdk_build := true
131endif
132ifneq ($(filter sdk_addon,$(MAKECMDGOALS)),)
133is_sdk_build := true
134endif
135
136
137## user/userdebug ##
138
139user_variant := $(filter userdebug user,$(TARGET_BUILD_VARIANT))
140enable_target_debugging := true
141ifneq (,$(user_variant))
142  # Target is secure in user builds.
143  ADDITIONAL_DEFAULT_PROPERTIES += ro.secure=1
144
145  tags_to_install := user
146  ifeq ($(user_variant),userdebug)
147    # Pick up some extra useful tools
148    tags_to_install += debug
149  else
150    # Disable debugging in plain user builds.
151    enable_target_debugging :=
152  endif
153 
154  # TODO: Always set WITH_DEXPREOPT (for user builds) once it works on OSX.
155  # Also, remove the corresponding block in config/product_config.make.
156  ifeq ($(HOST_OS)-$(WITH_DEXPREOPT_buildbot),linux-true)
157    WITH_DEXPREOPT := true
158  endif
159  
160  # Disallow mock locations by default for user builds
161  ADDITIONAL_DEFAULT_PROPERTIES += ro.allow.mock.location=0
162  
163else # !user_variant
164  # Turn on checkjni for non-user builds.
165  ADDITIONAL_BUILD_PROPERTIES += ro.kernel.android.checkjni=1
166  # Set device insecure for non-user builds.
167  ADDITIONAL_DEFAULT_PROPERTIES += ro.secure=0
168  # Allow mock locations by default for non user builds
169  ADDITIONAL_DEFAULT_PROPERTIES += ro.allow.mock.location=1
170endif # !user_variant
171
172ifeq (true,$(strip $(enable_target_debugging)))
173  # Target is more debuggable and adbd is on by default
174  ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=1 persist.service.adb.enable=1
175  # Include the debugging/testing OTA keys in this build.
176  INCLUDE_TEST_OTA_KEYS := true
177else # !enable_target_debugging
178  # Target is less debuggable and adbd is off by default
179  ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=0 persist.service.adb.enable=0
180endif # !enable_target_debugging
181
182## eng ##
183
184ifeq ($(TARGET_BUILD_VARIANT),eng)
185tags_to_install := user debug eng
186  # Don't require the setup wizard on eng builds
187  ADDITIONAL_BUILD_PROPERTIES := $(filter-out ro.setupwizard.mode=%,\
188          $(call collapse-pairs, $(ADDITIONAL_BUILD_PROPERTIES)))
189endif
190
191## tests ##
192
193ifeq ($(TARGET_BUILD_VARIANT),tests)
194tags_to_install := user debug eng tests
195endif
196
197## sdk ##
198
199ifdef is_sdk_build
200ifneq ($(words $(filter-out $(INTERNAL_MODIFIER_TARGETS),$(MAKECMDGOALS))),1)
201$(error The 'sdk' target may not be specified with any other targets)
202endif
203# TODO: this should be eng I think.  Since the sdk is built from the eng
204# variant.
205tags_to_install := user debug eng
206ADDITIONAL_BUILD_PROPERTIES += xmpp.auto-presence=true
207ADDITIONAL_BUILD_PROPERTIES += ro.config.nocheckin=yes
208else # !sdk
209# Enable sync for non-sdk builds only (sdk builds lack SubscribedFeedsProvider).
210ADDITIONAL_BUILD_PROPERTIES += ro.config.sync=yes
211endif
212
213## precise GC ##
214
215ifneq ($(filter dalvik.gc.type-precise,$(PRODUCT_TAGS)),)
216  # Enabling type-precise GC results in larger optimized DEX files.  The
217  # additional storage requirements for ".odex" files can cause /system
218  # to overflow on some devices, so this is configured separately for
219  # each product.
220  ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.dexopt-flags=m=y
221endif
222
223# Install an apns-conf.xml file if one's not already being installed.
224ifeq (,$(filter %:system/etc/apns-conf.xml, $(PRODUCT_COPY_FILES)))
225  PRODUCT_COPY_FILES += \
226        development/data/etc/apns-conf_sdk.xml:system/etc/apns-conf.xml
227  ifeq ($(filter eng tests,$(TARGET_BUILD_VARIANT)),)
228    $(warning implicitly installing apns-conf_sdk.xml)
229  endif
230endif
231# If we're on an eng or tests build, but not on the sdk, and we have
232# a better one, use that instead.
233ifneq ($(filter eng tests,$(TARGET_BUILD_VARIANT)),)
234  ifdef is_sdk_build
235    apns_to_use := $(wildcard vendor/google/etc/apns-conf.xml)
236    ifneq ($(strip $(apns_to_use)),)
237      PRODUCT_COPY_FILES := \
238            $(filter-out %:system/etc/apns-conf.xml,$(PRODUCT_COPY_FILES)) \
239            $(strip $(apns_to_use)):system/etc/apns-conf.xml
240    endif
241  endif
242endif
243
244ADDITIONAL_BUILD_PROPERTIES += net.bt.name=Android
245
246# enable vm tracing in files for now to help track
247# the cause of ANRs in the content process
248ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.stack-trace-file=/data/anr/traces.txt
249
250
251# ------------------------------------------------------------
252# Define a function that, given a list of module tags, returns
253# non-empty if that module should be installed in /system.
254
255# For most goals, anything not tagged with the "tests" tag should
256# be installed in /system.
257define should-install-to-system
258$(if $(filter tests,$(1)),,true)
259endef
260
261ifdef is_sdk_build
262# For the sdk goal, anything with the "samples" tag should be
263# installed in /data even if that module also has "eng"/"debug"/"user".
264define should-install-to-system
265$(if $(filter samples tests,$(1)),,true)
266endef
267endif
268
269
270# If all they typed was make showcommands, we'll actually build
271# the default target.
272ifeq ($(MAKECMDGOALS),showcommands)
273.PHONY: showcommands
274showcommands: $(DEFAULT_GOAL)
275endif
276
277# These targets are going to delete stuff, don't bother including
278# the whole directory tree if that's all we're going to do
279ifeq ($(MAKECMDGOALS),clean)
280dont_bother := true
281endif
282ifeq ($(MAKECMDGOALS),clobber)
283dont_bother := true
284endif
285ifeq ($(MAKECMDGOALS),dataclean)
286dont_bother := true
287endif
288ifeq ($(MAKECMDGOALS),installclean)
289dont_bother := true
290endif
291
292# Bring in all modules that need to be built.
293ifneq ($(dont_bother),true)
294
295subdir_makefiles :=
296
297ifeq ($(HOST_OS),windows)
298SDK_ONLY := true
299endif
300ifeq ($(HOST_OS)-$(HOST_ARCH),darwin-ppc)
301SDK_ONLY := true
302endif
303
304ifeq ($(SDK_ONLY),true)
305
306subdirs := \
307	prebuilt \
308	build/libs/host \
309	dalvik/dexdump \
310	dalvik/libdex \
311	dalvik/tools/dmtracedump \
312	dalvik/tools/hprof-conv \
313	development/emulator/mksdcard \
314	development/tools/activitycreator \
315	development/tools/line_endings \
316	development/host \
317	external/expat \
318	external/libpng \
319	external/qemu \
320	external/sqlite/dist \
321	external/zlib \
322	frameworks/base/libs/utils \
323	frameworks/base/tools/aapt \
324	frameworks/base/tools/aidl \
325	system/core/adb \
326	system/core/fastboot \
327	system/core/libcutils \
328	system/core/liblog \
329	system/core/libzipfile
330
331# The following can only be built if "javac" is available.
332# This check is used when building parts of the SDK under Cygwin.
333ifneq (,$(shell which javac 2>/dev/null))
334$(warning sdk-only: javac available.)
335subdirs += \
336	build/tools/signapk \
337	build/tools/zipalign \
338	dalvik/dx \
339	dalvik/libcore \
340	development/apps \
341	development/tools/androidprefs \
342	development/tools/apkbuilder \
343	development/tools/jarutils \
344	development/tools/layoutlib_utils \
345	development/tools/ninepatch \
346	development/tools/sdkstats \
347	development/tools/sdkmanager \
348	frameworks/base \
349	frameworks/base/tools/layoutlib \
350	external/googleclient \
351	packages
352else
353$(warning sdk-only: javac not available.)
354endif
355
356# Exclude tools/acp when cross-compiling windows under linux
357ifeq ($(findstring Linux,$(UNAME)),)
358subdirs += build/tools/acp
359endif
360
361else	# !SDK_ONLY
362ifeq ($(BUILD_TINY_ANDROID), true)
363
364# TINY_ANDROID is a super-minimal build configuration, handy for board 
365# bringup and very low level debugging
366
367INTERNAL_DEFAULT_DOCS_TARGETS := 
368
369subdirs := \
370	bionic \
371	system/core \
372	build/libs \
373	build/target \
374	build/tools/acp \
375	build/tools/apriori \
376	build/tools/kcm \
377	build/tools/soslim \
378	external/elfcopy \
379	external/elfutils \
380	external/yaffs2 \
381	external/zlib
382else	# !BUILD_TINY_ANDROID
383
384#
385# Typical build; include any Android.mk files we can find.
386#
387INTERNAL_DEFAULT_DOCS_TARGETS := offline-sdk-docs
388subdirs := $(TOP)
389
390FULL_BUILD := true
391
392endif	# !BUILD_TINY_ANDROID
393
394endif	# !SDK_ONLY
395
396# Can't use first-makefiles-under here because
397# --mindepth=2 makes the prunes not work.
398subdir_makefiles += \
399	$(shell build/tools/findleaves.sh --prune="./out" $(subdirs) Android.mk)
400
401# Boards may be defined under $(SRC_TARGET_DIR)/board/$(TARGET_DEVICE)
402# or under vendor/*/$(TARGET_DEVICE).  Search in both places, but
403# make sure only one exists.
404# Real boards should always be associated with an OEM vendor.
405board_config_mk := \
406	$(strip $(wildcard \
407		$(SRC_TARGET_DIR)/board/$(TARGET_DEVICE)/BoardConfig.mk \
408		vendor/*/$(TARGET_DEVICE)/BoardConfig.mk \
409	))
410ifeq ($(board_config_mk),)
411  $(error No config file found for TARGET_DEVICE $(TARGET_DEVICE))
412endif
413ifneq ($(words $(board_config_mk)),1)
414  $(error Multiple board config files for TARGET_DEVICE $(TARGET_DEVICE): $(board_config_mk))
415endif
416include $(board_config_mk)
417TARGET_DEVICE_DIR := $(patsubst %/,%,$(dir $(board_config_mk)))
418board_config_mk :=
419
420# Clean up/verify variables defined by the board config file.
421TARGET_BOOTLOADER_BOARD_NAME := $(strip $(TARGET_BOOTLOADER_BOARD_NAME))
422
423#
424# Include all of the makefiles in the system
425#
426
427ifneq ($(ONE_SHOT_MAKEFILE),)
428# We've probably been invoked by the "mm" shell function
429# with a subdirectory's makefile.
430include $(ONE_SHOT_MAKEFILE)
431# Change CUSTOM_MODULES to include only modules that were
432# defined by this makefile; this will install all of those
433# modules as a side-effect.  Do this after including ONE_SHOT_MAKEFILE
434# so that the modules will be installed in the same place they
435# would have been with a normal make.
436CUSTOM_MODULES := $(sort $(call get-tagged-modules,$(ALL_MODULE_TAGS),))
437FULL_BUILD :=
438INTERNAL_DEFAULT_DOCS_TARGETS :=
439# Stub out the notice targets, which probably aren't defined
440# when using ONE_SHOT_MAKEFILE.
441NOTICE-HOST-%: ;
442NOTICE-TARGET-%: ;
443else
444include $(subdir_makefiles)
445endif
446# -------------------------------------------------------------------
447# All module makefiles have been included at this point.
448# -------------------------------------------------------------------
449
450# -------------------------------------------------------------------
451# Include any makefiles that must happen after the module makefiles
452# have been included.
453# TODO: have these files register themselves via a global var rather
454# than hard-coding the list here.
455ifdef FULL_BUILD
456  # Only include this during a full build, otherwise we can't be
457  # guaranteed that any policies were included.
458  -include frameworks/policies/base/PolicyConfig.mk
459endif
460
461# -------------------------------------------------------------------
462# Fix up CUSTOM_MODULES to refer to installed files rather than
463# just bare module names.  Leave unknown modules alone in case
464# they're actually full paths to a particular file.
465known_custom_modules := $(filter $(ALL_MODULES),$(CUSTOM_MODULES))
466unknown_custom_modules := $(filter-out $(ALL_MODULES),$(CUSTOM_MODULES))
467CUSTOM_MODULES := \
468	$(call module-installed-files,$(known_custom_modules)) \
469	$(unknown_custom_modules)
470
471# -------------------------------------------------------------------
472# Define dependencies for modules that require other modules.
473# This can only happen now, after we've read in all module makefiles.
474#
475# TODO: deal with the fact that a bare module name isn't
476# unambiguous enough.  Maybe declare short targets like
477# APPS:Quake or HOST:SHARED_LIBRARIES:libutils.
478# BUG: the system image won't know to depend on modules that are
479# brought in as requirements of other modules.
480define add-required-deps
481$(1): $(2)
482endef
483$(foreach m,$(ALL_MODULES), \
484  $(eval r := $(ALL_MODULES.$(m).REQUIRED)) \
485  $(if $(r), \
486    $(eval r := $(call module-installed-files,$(r))) \
487    $(eval $(call add-required-deps,$(ALL_MODULES.$(m).INSTALLED),$(r))) \
488   ) \
489 )
490m :=
491r :=
492add-required-deps :=
493
494# -------------------------------------------------------------------
495# Figure out our module sets.
496
497# Of the modules defined by the component makefiles,
498# determine what we actually want to build.
499# If a module has the "restricted" tag on it, it
500# poisons the rest of the tags and shouldn't appear
501# on any list.
502Default_MODULES := $(sort $(ALL_DEFAULT_INSTALLED_MODULES) \
503                          $(ALL_BUILT_MODULES) \
504                          $(CUSTOM_MODULES))
505# TODO: Remove the 3 places in the tree that use
506# ALL_DEFAULT_INSTALLED_MODULES and get rid of it from this list.
507
508ifdef FULL_BUILD
509  # The base list of modules to build for this product is specified
510  # by the appropriate product definition file, which was included
511  # by product_config.make.
512  user_PACKAGES := $(call module-installed-files, \
513                       $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES))
514  ifeq (0,1)
515    $(info user packages for $(TARGET_DEVICE) ($(INTERNAL_PRODUCT)):)
516    $(foreach p,$(user_PACKAGES),$(info :   $(p)))
517    $(error done)
518  endif
519else
520  # We're not doing a full build, and are probably only including
521  # a subset of the module makefiles.  Don't try to build any modules
522  # requested by the product, because we probably won't have rules
523  # to build them.
524  user_PACKAGES :=
525endif
526# Use tags to get the non-APPS user modules.  Use the product
527# definition files to get the APPS user modules.
528user_MODULES := $(sort $(call get-tagged-modules,user,_class@APPS restricted))
529user_MODULES := $(user_MODULES) $(user_PACKAGES)
530
531eng_MODULES := $(sort $(call get-tagged-modules,eng,restricted))
532debug_MODULES := $(sort $(call get-tagged-modules,debug,restricted))
533tests_MODULES := $(sort $(call get-tagged-modules,tests,restricted))
534
535ifeq ($(strip $(tags_to_install)),)
536$(error ASSERTION FAILED: tags_to_install should not be empty)
537endif
538modules_to_install := $(sort $(Default_MODULES) \
539          $(foreach tag,$(tags_to_install),$($(tag)_MODULES)))
540
541# Some packages may override others using LOCAL_OVERRIDES_PACKAGES.
542# Filter out (do not install) any overridden packages.
543overridden_packages := $(call get-package-overrides,$(modules_to_install))
544ifdef overridden_packages
545#  old_modules_to_install := $(modules_to_install)
546  modules_to_install := \
547      $(filter-out $(foreach p,$(overridden_packages),$(p) %/$(p).apk), \
548          $(modules_to_install))
549endif
550#$(error filtered out
551#           $(filter-out $(modules_to_install),$(old_modules_to_install)))
552
553# Don't include any GNU targets in the SDK.  It's ok (and necessary)
554# to build the host tools, but nothing that's going to be installed
555# on the target (including static libraries).
556ifdef is_sdk_build
557  target_gnu_MODULES := \
558              $(filter \
559                      $(TARGET_OUT_INTERMEDIATES)/% \
560                      $(TARGET_OUT)/% \
561                      $(TARGET_OUT_DATA)/%, \
562                              $(sort $(call get-tagged-modules,gnu)))
563  $(info Removing from sdk:)$(foreach d,$(target_gnu_MODULES),$(info : $(d)))
564  modules_to_install := \
565              $(filter-out $(target_gnu_MODULES),$(modules_to_install))
566endif
567
568
569# config/Makefile contains extra stuff that we don't want to pollute this
570# top-level makefile with.  It expects that ALL_DEFAULT_INSTALLED_MODULES
571# contains everything that's built during the current make, but it also further
572# extends ALL_DEFAULT_INSTALLED_MODULES.
573ALL_DEFAULT_INSTALLED_MODULES := $(modules_to_install)
574include $(BUILD_SYSTEM)/Makefile
575modules_to_install := $(sort $(ALL_DEFAULT_INSTALLED_MODULES))
576ALL_DEFAULT_INSTALLED_MODULES :=
577
578endif # dont_bother
579
580# -------------------------------------------------------------------
581# This is used to to get the ordering right, you can also use these,
582# but they're considered undocumented, so don't complain if their
583# behavior changes.
584.PHONY: prebuilt
585prebuilt: $(ALL_PREBUILT)
586
587# An internal target that depends on all copied headers
588# (see copy_headers.make).  Other targets that need the
589# headers to be copied first can depend on this target.
590.PHONY: all_copied_headers
591all_copied_headers: ;
592
593$(ALL_C_CPP_ETC_OBJECTS): | all_copied_headers
594
595# All the droid stuff, in directories
596.PHONY: files
597files: prebuilt $(modules_to_install) $(INSTALLED_ANDROID_INFO_TXT_TARGET)
598
599# -------------------------------------------------------------------
600
601.PHONY: ramdisk
602ramdisk: $(INSTALLED_RAMDISK_TARGET)
603
604.PHONY: systemtarball
605systemtarball: $(INSTALLED_SYSTEMTARBALL_TARGET)
606
607.PHONY: userdataimage
608userdataimage: $(INSTALLED_USERDATAIMAGE_TARGET)
609
610.PHONY: userdatatarball
611userdatatarball: $(INSTALLED_USERDATATARBALL_TARGET)
612
613.PHONY: bootimage
614bootimage: $(INSTALLED_BOOTIMAGE_TARGET)
615
616ifeq ($(BUILD_TINY_ANDROID), true)
617INSTALLED_RECOVERYIMAGE_TARGET :=
618endif
619
620# Build files and then package it into the rom formats
621.PHONY: droidcore
622droidcore: files \
623	systemimage \
624	$(INSTALLED_BOOTIMAGE_TARGET) \
625	$(INSTALLED_RECOVERYIMAGE_TARGET) \
626	$(INSTALLED_USERDATAIMAGE_TARGET) \
627	$(INTERNAL_DEFAULT_DOCS_TARGETS) \
628	$(INSTALLED_FILES_FILE)
629
630# The actual files built by the droidcore target changes depending
631# on the build variant.
632.PHONY: droid tests
633droid tests: droidcore
634
635$(call dist-for-goals, droid, \
636	$(INTERNAL_UPDATE_PACKAGE_TARGET) \
637	$(INTERNAL_OTA_PACKAGE_TARGET) \
638	$(SYMBOLS_ZIP) \
639	$(APPS_ZIP) \
640	$(INTERNAL_EMULATOR_PACKAGE_TARGET) \
641	$(PACKAGE_STATS_FILE) \
642	$(INSTALLED_FILES_FILE) \
643	$(INSTALLED_BUILD_PROP_TARGET) \
644	$(BUILT_TARGET_FILES_PACKAGE) \
645 )
646
647# Tests are installed in userdata.img.  If we're building the tests
648# variant, copy it for "make tests dist".  Also copy a zip of the
649# contents of userdata.img, so that people can easily extract a
650# single .apk.
651ifeq ($(TARGET_BUILD_VARIANT),tests)
652$(call dist-for-goals, droid, \
653	$(INSTALLED_USERDATAIMAGE_TARGET) \
654	$(BUILT_TESTS_ZIP_PACKAGE) \
655 )
656endif
657
658.PHONY: docs
659docs: $(ALL_DOCS)
660
661.PHONY: sdk
662ALL_SDK_TARGETS := $(INTERNAL_SDK_TARGET)
663sdk: $(ALL_SDK_TARGETS)
664$(call dist-for-goals,sdk,$(ALL_SDK_TARGETS))
665
666.PHONY: findbugs
667findbugs: $(INTERNAL_FINDBUGS_HTML_TARGET) $(INTERNAL_FINDBUGS_XML_TARGET)
668
669.PHONY: clean
670dirs_to_clean := \
671	$(PRODUCT_OUT) \
672	$(TARGET_COMMON_OUT_ROOT) \
673	$(HOST_OUT) \
674	$(HOST_COMMON_OUT_ROOT)
675clean:
676	@for dir in $(dirs_to_clean) ; do \
677	    echo "Cleaning $$dir..."; \
678	    rm -rf $$dir; \
679	done
680	@echo "Clean."; \
681
682.PHONY: clobber
683clobber:
684	@rm -rf $(OUT_DIR)
685	@echo "Entire build directory removed."
686
687# The rules for dataclean and installclean are defined in cleanbuild.mk.
688
689#xxx scrape this from ALL_MODULE_NAME_TAGS
690.PHONY: modules
691modules:
692	@echo "Available sub-modules:"
693	@echo "$(call module-names-for-tag-list,$(ALL_MODULE_TAGS))" | \
694	      sed -e 's/  */\n/g' | sort -u | $(COLUMN)
695
696.PHONY: showcommands
697showcommands:
698	@echo >/dev/null
699
700