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