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