main.mk revision f22789edd095c5a79e341cc1973cf9cde8bc9698
1# Only use ANDROID_BUILD_SHELL to wrap around bash.
2# DO NOT use other shells such as zsh.
3ifdef ANDROID_BUILD_SHELL
4SHELL := $(ANDROID_BUILD_SHELL)
5else
6# Use bash, not whatever shell somebody has installed as /bin/sh
7# This is repeated in config.mk, since envsetup.sh runs that file
8# directly.
9SHELL := /bin/bash
10endif
11
12# this turns off the suffix rules built into make
13.SUFFIXES:
14
15# this turns off the RCS / SCCS implicit rules of GNU Make
16% : RCS/%,v
17% : RCS/%
18% : %,v
19% : s.%
20% : SCCS/s.%
21
22# If a rule fails, delete $@.
23.DELETE_ON_ERROR:
24
25# Figure out where we are.
26#TOP := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)))
27#TOP := $(patsubst %/,%,$(TOP))
28
29# TOPDIR is the normal variable you should use, because
30# if we are executing relative to the current directory
31# it can be "", whereas TOP must be "." which causes
32# pattern matching problems when make strips off the
33# trailing "./" from paths in various places.
34#ifeq ($(TOP),.)
35#TOPDIR :=
36#else
37#TOPDIR := $(TOP)/
38#endif
39
40# Check for broken versions of make.
41ifneq (1,$(strip $(shell expr $(MAKE_VERSION) \>= 3.81)))
42$(warning ********************************************************************************)
43$(warning *  You are using version $(MAKE_VERSION) of make.)
44$(warning *  Android can only be built by versions 3.81 and higher.)
45$(warning *  see https://source.android.com/source/download.html)
46$(warning ********************************************************************************)
47$(error stopping)
48endif
49
50# Absolute path of the present working direcotry.
51# This overrides the shell variable $PWD, which does not necessarily points to
52# the top of the source tree, for example when "make -C" is used in m/mm/mmm.
53PWD := $(shell pwd)
54
55TOP := .
56TOPDIR :=
57
58BUILD_SYSTEM := $(TOPDIR)build/core
59
60# Ensure JAVA_NOT_REQUIRED is not set externally.
61JAVA_NOT_REQUIRED := false
62
63# This is the default target.  It must be the first declared target.
64.PHONY: droid
65DEFAULT_GOAL := droid
66$(DEFAULT_GOAL): droid_targets
67
68.PHONY: droid_targets
69droid_targets:
70
71# Used to force goals to build.  Only use for conditionally defined goals.
72.PHONY: FORCE
73FORCE:
74
75# These goals don't need to collect and include Android.mks/CleanSpec.mks
76# in the source tree.
77dont_bother_goals := clean clobber dataclean installclean \
78    help out \
79    snod systemimage-nodeps \
80    stnod systemtarball-nodeps \
81    userdataimage-nodeps userdatatarball-nodeps \
82    cacheimage-nodeps \
83    vendorimage-nodeps \
84    ramdisk-nodeps \
85    bootimage-nodeps \
86    recoveryimage-nodeps \
87    product-graph dump-products
88
89ifneq ($(filter $(dont_bother_goals), $(MAKECMDGOALS)),)
90dont_bother := true
91endif
92
93ORIGINAL_MAKECMDGOALS := $(MAKECMDGOALS)
94
95# Targets that provide quick help on the build system.
96include $(BUILD_SYSTEM)/help.mk
97
98# Set up various standard variables based on configuration
99# and host information.
100include $(BUILD_SYSTEM)/config.mk
101
102relaunch_with_ninja :=
103ifneq ($(USE_NINJA),false)
104ifndef BUILDING_WITH_NINJA
105relaunch_with_ninja := true
106endif
107endif
108
109ifeq ($(relaunch_with_ninja),true)
110# Mark this is a ninja build.
111$(shell mkdir -p $(OUT_DIR) && touch $(OUT_DIR)/ninja_build)
112include build/core/ninja.mk
113else # !relaunch_with_ninja
114ifndef BUILDING_WITH_NINJA
115# Remove ninja build mark if it exists.
116$(shell rm -f $(OUT_DIR)/ninja_build)
117endif
118
119# With these files findleaves.py won't be unnecessarily slower even if
120# there is a user creates a copy of $(OUT_DIR).
121$(shell echo '# This file prevents findleaves.py from traversing this directory further' > $(OUT_DIR)/Android.mk)
122$(shell echo '# This file prevents findleaves.py from traversing this directory further' > $(OUT_DIR)/CleanSpec.mk)
123
124# Write the build number to a file so it can be read back in
125# without changing the command line every time.  Avoids rebuilds
126# when using ninja.
127$(shell mkdir -p $(OUT_DIR) && \
128    echo -n $(BUILD_NUMBER) > $(OUT_DIR)/build_number.txt && \
129    echo -n $(BUILD_DATETIME) > $(OUT_DIR)/build_date.txt)
130BUILD_NUMBER_FROM_FILE := $$(cat $(OUT_DIR)/build_number.txt)
131BUILD_DATETIME_FROM_FILE := $$(cat $(OUT_DIR)/build_date.txt)
132ifeq ($(HOST_OS),darwin)
133DATE_FROM_FILE := date -r $(BUILD_DATETIME_FROM_FILE)
134else
135DATE_FROM_FILE := date -d @$(BUILD_DATETIME_FROM_FILE)
136endif
137
138# CTS-specific config.
139-include cts/build/config.mk
140# VTS-specific config.
141-include test/vts/tools/vts-tradefed/build/config.mk
142
143# This allows us to force a clean build - included after the config.mk
144# environment setup is done, but before we generate any dependencies.  This
145# file does the rm -rf inline so the deps which are all done below will
146# be generated correctly
147include $(BUILD_SYSTEM)/cleanbuild.mk
148
149# Include the google-specific config
150-include vendor/google/build/config.mk
151
152VERSION_CHECK_SEQUENCE_NUMBER := 6
153-include $(OUT_DIR)/versions_checked.mk
154ifneq ($(VERSION_CHECK_SEQUENCE_NUMBER),$(VERSIONS_CHECKED))
155
156$(info Checking build tools versions...)
157
158# check for a case sensitive file system
159ifneq (a,$(shell mkdir -p $(OUT_DIR) ; \
160                echo a > $(OUT_DIR)/casecheck.txt; \
161                    echo B > $(OUT_DIR)/CaseCheck.txt; \
162                cat $(OUT_DIR)/casecheck.txt))
163$(warning ************************************************************)
164$(warning You are building on a case-insensitive filesystem.)
165$(warning Please move your source tree to a case-sensitive filesystem.)
166$(warning ************************************************************)
167$(error Case-insensitive filesystems not supported)
168endif
169
170# Make sure that there are no spaces in the absolute path; the
171# build system can't deal with them.
172ifneq ($(words $(shell pwd)),1)
173$(warning ************************************************************)
174$(warning You are building in a directory whose absolute path contains)
175$(warning a space character:)
176$(warning $(space))
177$(warning "$(shell pwd)")
178$(warning $(space))
179$(warning Please move your source tree to a path that does not contain)
180$(warning any spaces.)
181$(warning ************************************************************)
182$(error Directory names containing spaces not supported)
183endif
184
185ifeq ($(JAVA_NOT_REQUIRED), false)
186java_version_str := $(shell unset _JAVA_OPTIONS && java -version 2>&1)
187javac_version_str := $(shell unset _JAVA_OPTIONS && javac -version 2>&1)
188
189# Check for the correct version of java, should be 1.8 by
190# default and only 1.7 if LEGACY_USE_JAVA7 is set.
191ifeq ($(LEGACY_USE_JAVA7),) # if LEGACY_USE_JAVA7 == ''
192required_version := "1.8.x"
193required_javac_version := "1.8"
194java_version := $(shell echo '$(java_version_str)' | grep '[ "]1\.8[\. "$$]')
195javac_version := $(shell echo '$(javac_version_str)' | grep '[ "]1\.8[\. "$$]')
196else
197required_version := "1.7.x"
198required_javac_version := "1.7"
199java_version := $(shell echo '$(java_version_str)' | grep '^java .*[ "]1\.7[\. "$$]')
200javac_version := $(shell echo '$(javac_version_str)' | grep '[ "]1\.7[\. "$$]')
201endif # if LEGACY_USE_JAVA7 == ''
202
203ifeq ($(strip $(java_version)),)
204$(info ************************************************************)
205$(info You are attempting to build with the incorrect version)
206$(info of java.)
207$(info $(space))
208$(info Your version is: $(java_version_str).)
209$(info The required version is: $(required_version))
210$(info $(space))
211$(info Please follow the machine setup instructions at)
212$(info $(space)$(space)$(space)$(space)https://source.android.com/source/initializing.html)
213$(info ************************************************************)
214$(error stop)
215endif
216
217# Check for the current JDK.
218#
219# For Java 1.7/1.8, we require OpenJDK on linux and Oracle JDK on Mac OS.
220requires_openjdk := false
221ifeq ($(BUILD_OS),linux)
222requires_openjdk := true
223endif
224
225
226# Check for the current jdk
227ifeq ($(requires_openjdk), true)
228# The user asked for openjdk, so check that the host
229# java version is really openjdk and not some other JDK.
230ifeq ($(shell echo '$(java_version_str)' | grep -i openjdk),)
231$(info ************************************************************)
232$(info You asked for an OpenJDK based build but your version is)
233$(info $(java_version_str).)
234$(info ************************************************************)
235$(error stop)
236endif # java version is not OpenJdk
237else # if requires_openjdk
238ifneq ($(shell echo '$(java_version_str)' | grep -i openjdk),)
239$(info ************************************************************)
240$(info You are attempting to build with an unsupported JDK.)
241$(info $(space))
242$(info You use OpenJDK but only Sun/Oracle JDK is supported.)
243$(info Please follow the machine setup instructions at)
244$(info $(space)$(space)$(space)$(space)https://source.android.com/source/download.html)
245$(info ************************************************************)
246$(error stop)
247endif # java version is not Sun Oracle JDK
248endif # if requires_openjdk
249
250# Check for the correct version of javac
251ifeq ($(strip $(javac_version)),)
252$(info ************************************************************)
253$(info You are attempting to build with the incorrect version)
254$(info of javac.)
255$(info $(space))
256$(info Your version is: $(javac_version_str).)
257$(info The required version is: $(required_javac_version))
258$(info $(space))
259$(info Please follow the machine setup instructions at)
260$(info $(space)$(space)$(space)$(space)https://source.android.com/source/download.html)
261$(info ************************************************************)
262$(error stop)
263endif
264
265endif # if JAVA_NOT_REQUIRED
266
267ifndef BUILD_EMULATOR
268  # Emulator binaries are now provided under prebuilts/android-emulator/
269  BUILD_EMULATOR := false
270endif
271
272$(shell echo 'VERSIONS_CHECKED := $(VERSION_CHECK_SEQUENCE_NUMBER)' \
273        > $(OUT_DIR)/versions_checked.mk)
274$(shell echo 'BUILD_EMULATOR ?= $(BUILD_EMULATOR)' \
275        >> $(OUT_DIR)/versions_checked.mk)
276endif
277
278# These are the modifier targets that don't do anything themselves, but
279# change the behavior of the build.
280# (must be defined before including definitions.make)
281INTERNAL_MODIFIER_TARGETS := showcommands all
282
283# EMMA_INSTRUMENT_STATIC merges the static emma library to each emma-enabled module.
284ifeq (true,$(EMMA_INSTRUMENT_STATIC))
285EMMA_INSTRUMENT := true
286endif
287
288# Bring in standard build system definitions.
289include $(BUILD_SYSTEM)/definitions.mk
290
291# Bring in dex_preopt.mk
292include $(BUILD_SYSTEM)/dex_preopt.mk
293
294ifneq ($(filter user userdebug eng,$(MAKECMDGOALS)),)
295$(info ***************************************************************)
296$(info ***************************************************************)
297$(info Do not pass '$(filter user userdebug eng,$(MAKECMDGOALS))' on \
298       the make command line.)
299$(info Set TARGET_BUILD_VARIANT in buildspec.mk, or use lunch or)
300$(info choosecombo.)
301$(info ***************************************************************)
302$(info ***************************************************************)
303$(error stopping)
304endif
305
306ifneq ($(filter-out $(INTERNAL_VALID_VARIANTS),$(TARGET_BUILD_VARIANT)),)
307$(info ***************************************************************)
308$(info ***************************************************************)
309$(info Invalid variant: $(TARGET_BUILD_VARIANT))
310$(info Valid values are: $(INTERNAL_VALID_VARIANTS))
311$(info ***************************************************************)
312$(info ***************************************************************)
313$(error stopping)
314endif
315
316# -----------------------------------------------------------------
317# Variable to check java support level inside PDK build.
318# Not necessary if the components is not in PDK.
319# not defined : not supported
320# "sdk" : sdk API only
321# "platform" : platform API supproted
322TARGET_BUILD_JAVA_SUPPORT_LEVEL := platform
323
324# -----------------------------------------------------------------
325# The pdk (Platform Development Kit) build
326include build/core/pdk_config.mk
327
328#
329# -----------------------------------------------------------------
330# Jack version configuration
331-include $(TOPDIR)prebuilts/sdk/tools/jack_versions.mk
332-include $(TOPDIR)prebuilts/sdk/tools/jack_for_module.mk
333
334#
335# -----------------------------------------------------------------
336# Install and start Jack server
337-include $(TOPDIR)prebuilts/sdk/tools/jack_server_setup.mk
338
339#
340# -----------------------------------------------------------------
341# Jacoco package name for Jack
342-include $(TOPDIR)external/jacoco/config.mk
343
344#
345# -----------------------------------------------------------------
346# Enable dynamic linker developer warnings for all builds except
347# final release.
348ifneq ($(PLATFORM_VERSION_CODENAME),REL)
349  ADDITIONAL_BUILD_PROPERTIES += ro.bionic.ld.warning=1
350endif
351
352# -----------------------------------------------------------------
353###
354### In this section we set up the things that are different
355### between the build variants
356###
357
358is_sdk_build :=
359
360ifneq ($(filter sdk win_sdk sdk_addon,$(MAKECMDGOALS)),)
361is_sdk_build := true
362endif
363
364# Add build properties for ART. These define system properties used by installd
365# to pass flags to dex2oat.
366ADDITIONAL_BUILD_PROPERTIES += persist.sys.dalvik.vm.lib.2=libart.so
367ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.isa.$(TARGET_ARCH).variant=$(DEX2OAT_TARGET_CPU_VARIANT)
368ifneq ($(DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES),)
369  ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.isa.$(TARGET_ARCH).features=$(DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES)
370endif
371
372ifdef TARGET_2ND_ARCH
373  ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.isa.$(TARGET_2ND_ARCH).variant=$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_CPU_VARIANT)
374  ifneq ($($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES),)
375    ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.isa.$(TARGET_2ND_ARCH).features=$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES)
376  endif
377endif
378
379## user/userdebug ##
380
381user_variant := $(filter user userdebug,$(TARGET_BUILD_VARIANT))
382enable_target_debugging := true
383tags_to_install :=
384ifneq (,$(user_variant))
385  # Target is secure in user builds.
386  ADDITIONAL_DEFAULT_PROPERTIES += ro.secure=1
387
388  ifeq ($(user_variant),user)
389    ADDITIONAL_DEFAULT_PROPERTIES += ro.adb.secure=1
390  endif
391
392  ifeq ($(user_variant),userdebug)
393    # Pick up some extra useful tools
394    tags_to_install += debug
395  else
396    # Disable debugging in plain user builds.
397    enable_target_debugging :=
398  endif
399
400  # Disallow mock locations by default for user builds
401  ADDITIONAL_DEFAULT_PROPERTIES += ro.allow.mock.location=0
402
403else # !user_variant
404  # Turn on checkjni for non-user builds.
405  ADDITIONAL_BUILD_PROPERTIES += ro.kernel.android.checkjni=1
406  # Set device insecure for non-user builds.
407  ADDITIONAL_DEFAULT_PROPERTIES += ro.secure=0
408  # Allow mock locations by default for non user builds
409  ADDITIONAL_DEFAULT_PROPERTIES += ro.allow.mock.location=1
410endif # !user_variant
411
412ifeq (true,$(strip $(enable_target_debugging)))
413  # Target is more debuggable and adbd is on by default
414  ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=1
415  # Enable Dalvik lock contention logging.
416  ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.lockprof.threshold=500
417  # Include the debugging/testing OTA keys in this build.
418  INCLUDE_TEST_OTA_KEYS := true
419else # !enable_target_debugging
420  # Target is less debuggable and adbd is off by default
421  ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=0
422endif # !enable_target_debugging
423
424## eng ##
425
426ifeq ($(TARGET_BUILD_VARIANT),eng)
427tags_to_install := debug eng
428ifneq ($(filter ro.setupwizard.mode=ENABLED, $(call collapse-pairs, $(ADDITIONAL_BUILD_PROPERTIES))),)
429  # Don't require the setup wizard on eng builds
430  ADDITIONAL_BUILD_PROPERTIES := $(filter-out ro.setupwizard.mode=%,\
431          $(call collapse-pairs, $(ADDITIONAL_BUILD_PROPERTIES))) \
432          ro.setupwizard.mode=OPTIONAL
433endif
434ifndef is_sdk_build
435  # To speedup startup of non-preopted builds, don't verify or compile the boot image.
436  ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.image-dex2oat-filter=verify-at-runtime
437endif
438endif
439
440## sdk ##
441
442ifdef is_sdk_build
443
444# Detect if we want to build a repository for the SDK
445sdk_repo_goal := $(strip $(filter sdk_repo,$(MAKECMDGOALS)))
446MAKECMDGOALS := $(strip $(filter-out sdk_repo,$(MAKECMDGOALS)))
447
448ifneq ($(words $(sort $(filter-out $(INTERNAL_MODIFIER_TARGETS) checkbuild emulator_tests target-files-package,$(MAKECMDGOALS)))),1)
449$(error The 'sdk' target may not be specified with any other targets)
450endif
451
452# TODO: this should be eng I think.  Since the sdk is built from the eng
453# variant.
454tags_to_install := debug eng
455ADDITIONAL_BUILD_PROPERTIES += xmpp.auto-presence=true
456ADDITIONAL_BUILD_PROPERTIES += ro.config.nocheckin=yes
457else # !sdk
458endif
459
460BUILD_WITHOUT_PV := true
461
462ADDITIONAL_BUILD_PROPERTIES += net.bt.name=Android
463
464# enable vm tracing in files for now to help track
465# the cause of ANRs in the content process
466ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.stack-trace-file=/data/anr/traces.txt
467
468# ------------------------------------------------------------
469# Define a function that, given a list of module tags, returns
470# non-empty if that module should be installed in /system.
471
472# For most goals, anything not tagged with the "tests" tag should
473# be installed in /system.
474define should-install-to-system
475$(if $(filter tests,$(1)),,true)
476endef
477
478ifdef is_sdk_build
479# For the sdk goal, anything with the "samples" tag should be
480# installed in /data even if that module also has "eng"/"debug"/"user".
481define should-install-to-system
482$(if $(filter samples tests,$(1)),,true)
483endef
484endif
485
486
487# If they only used the modifier goals (showcommands, etc), we'll actually
488# build the default target.
489ifeq ($(filter-out $(INTERNAL_MODIFIER_TARGETS),$(MAKECMDGOALS)),)
490.PHONY: $(INTERNAL_MODIFIER_TARGETS)
491$(INTERNAL_MODIFIER_TARGETS): $(DEFAULT_GOAL)
492endif
493
494#
495# Typical build; include any Android.mk files we can find.
496#
497subdirs := $(TOP)
498
499FULL_BUILD := true
500
501# Before we go and include all of the module makefiles, stash away
502# the PRODUCT_* values so that later we can verify they are not modified.
503stash_product_vars:=true
504ifeq ($(stash_product_vars),true)
505  $(call stash-product-vars, __STASHED)
506endif
507
508ifneq ($(ONE_SHOT_MAKEFILE),)
509# We've probably been invoked by the "mm" shell function
510# with a subdirectory's makefile.
511include $(ONE_SHOT_MAKEFILE)
512# Change CUSTOM_MODULES to include only modules that were
513# defined by this makefile; this will install all of those
514# modules as a side-effect.  Do this after including ONE_SHOT_MAKEFILE
515# so that the modules will be installed in the same place they
516# would have been with a normal make.
517CUSTOM_MODULES := $(sort $(call get-tagged-modules,$(ALL_MODULE_TAGS)))
518FULL_BUILD :=
519# Stub out the notice targets, which probably aren't defined
520# when using ONE_SHOT_MAKEFILE.
521NOTICE-HOST-%: ;
522NOTICE-TARGET-%: ;
523
524# A helper goal printing out install paths
525.PHONY: GET-INSTALL-PATH
526GET-INSTALL-PATH:
527	@echo "Install paths for modules in $(ONE_SHOT_MAKEFILE):"
528	@$(foreach m, $(ALL_MODULES), $(if $(ALL_MODULES.$(m).INSTALLED), \
529		echo 'INSTALL-PATH: $(m) $(ALL_MODULES.$(m).INSTALLED)';))
530
531else # ONE_SHOT_MAKEFILE
532
533ifneq ($(dont_bother),true)
534#
535# Include all of the makefiles in the system
536#
537
538# Can't use first-makefiles-under here because
539# --mindepth=2 makes the prunes not work.
540subdir_makefiles := \
541	$(shell build/tools/findleaves.py $(FIND_LEAVES_EXCLUDES) $(subdirs) Android.mk)
542ifeq ($(USE_SOONG),true)
543subdir_makefiles := $(SOONG_ANDROID_MK) $(subdir_makefiles)
544endif
545
546$(foreach mk, $(subdir_makefiles), $(info including $(mk) ...)$(eval include $(mk)))
547
548endif # dont_bother
549
550endif # ONE_SHOT_MAKEFILE
551
552# Now with all Android.mks loaded we can do post cleaning steps.
553include $(BUILD_SYSTEM)/post_clean.mk
554
555ifeq ($(stash_product_vars),true)
556  $(call assert-product-vars, __STASHED)
557endif
558
559include $(BUILD_SYSTEM)/legacy_prebuilts.mk
560ifneq ($(filter-out $(GRANDFATHERED_ALL_PREBUILT),$(strip $(notdir $(ALL_PREBUILT)))),)
561  $(warning *** Some files have been added to ALL_PREBUILT.)
562  $(warning *)
563  $(warning * ALL_PREBUILT is a deprecated mechanism that)
564  $(warning * should not be used for new files.)
565  $(warning * As an alternative, use PRODUCT_COPY_FILES in)
566  $(warning * the appropriate product definition.)
567  $(warning * build/target/product/core.mk is the product)
568  $(warning * definition used in all products.)
569  $(warning *)
570  $(foreach bad_prebuilt,$(filter-out $(GRANDFATHERED_ALL_PREBUILT),$(strip $(notdir $(ALL_PREBUILT)))),$(warning * unexpected $(bad_prebuilt) in ALL_PREBUILT))
571  $(warning *)
572  $(error ALL_PREBUILT contains unexpected files)
573endif
574
575# -------------------------------------------------------------------
576# All module makefiles have been included at this point.
577# -------------------------------------------------------------------
578
579
580# -------------------------------------------------------------------
581# Fix up CUSTOM_MODULES to refer to installed files rather than
582# just bare module names.  Leave unknown modules alone in case
583# they're actually full paths to a particular file.
584known_custom_modules := $(filter $(ALL_MODULES),$(CUSTOM_MODULES))
585unknown_custom_modules := $(filter-out $(ALL_MODULES),$(CUSTOM_MODULES))
586CUSTOM_MODULES := \
587	$(call module-installed-files,$(known_custom_modules)) \
588	$(unknown_custom_modules)
589
590# -------------------------------------------------------------------
591# Define dependencies for modules that require other modules.
592# This can only happen now, after we've read in all module makefiles.
593#
594# TODO: deal with the fact that a bare module name isn't
595# unambiguous enough.  Maybe declare short targets like
596# APPS:Quake or HOST:SHARED_LIBRARIES:libutils.
597# BUG: the system image won't know to depend on modules that are
598# brought in as requirements of other modules.
599#
600# Resolve the required module name to 32-bit or 64-bit variant.
601# Get a list of corresponding 32-bit module names, if one exists.
602define get-32-bit-modules
603$(strip $(foreach m,$(1),\
604  $(if $(ALL_MODULES.$(m)$(TARGET_2ND_ARCH_MODULE_SUFFIX).CLASS),\
605    $(m)$(TARGET_2ND_ARCH_MODULE_SUFFIX))))
606endef
607# Get a list of corresponding 32-bit module names, if one exists;
608# otherwise return the original module name
609define get-32-bit-modules-if-we-can
610$(strip $(foreach m,$(1),\
611  $(if $(ALL_MODULES.$(m)$(TARGET_2ND_ARCH_MODULE_SUFFIX).CLASS),\
612    $(m)$(TARGET_2ND_ARCH_MODULE_SUFFIX),
613    $(m))))
614endef
615
616# If a module is for a cross host os, the required modules must be for
617# that OS too.
618# If a module is built for 32-bit, the required modules must be 32-bit too;
619# Otherwise if the module is an exectuable or shared library,
620#   the required modules must be 64-bit;
621#   otherwise we require both 64-bit and 32-bit variant, if one exists.
622$(foreach m,$(ALL_MODULES),\
623  $(eval r := $(ALL_MODULES.$(m).REQUIRED))\
624  $(if $(r),\
625    $(if $(ALL_MODULES.$(m).FOR_HOST_CROSS),\
626      $(eval r := $(addprefix host_cross_,$(r))))\
627    $(if $(ALL_MODULES.$(m).FOR_2ND_ARCH),\
628      $(eval r_r := $(call get-32-bit-modules-if-we-can,$(r))),\
629      $(if $(filter EXECUTABLES SHARED_LIBRARIES,$(ALL_MODULES.$(m).CLASS)),\
630        $(eval r_r := $(r)),\
631        $(eval r_r := $(r) $(call get-32-bit-modules,$(r)))\
632       )\
633     )\
634     $(eval ALL_MODULES.$(m).REQUIRED := $(strip $(r_r)))\
635  )\
636)
637r_r :=
638
639define add-required-deps
640$(1): | $(2)
641endef
642
643$(foreach m,$(ALL_MODULES), \
644  $(eval r := $(ALL_MODULES.$(m).REQUIRED)) \
645  $(if $(r), \
646    $(eval r := $(call module-installed-files,$(r))) \
647    $(eval t_m := $(filter $(TARGET_OUT_ROOT)/%, $(ALL_MODULES.$(m).INSTALLED))) \
648    $(eval h_m := $(filter $(HOST_OUT_ROOT)/%, $(ALL_MODULES.$(m).INSTALLED))) \
649    $(eval hc_m := $(filter $(HOST_CROSS_OUT_ROOT)/%, $(ALL_MODULES.$(m).INSTALLED))) \
650    $(eval t_r := $(filter $(TARGET_OUT_ROOT)/%, $(r))) \
651    $(eval h_r := $(filter $(HOST_OUT_ROOT)/%, $(r))) \
652    $(eval hc_r := $(filter $(HOST_CROSS_OUT_ROOT)/%, $(r))) \
653    $(eval t_m := $(filter-out $(t_r), $(t_m))) \
654    $(eval h_m := $(filter-out $(h_r), $(h_m))) \
655    $(eval hc_m := $(filter-out $(hc_r), $(hc_m))) \
656    $(if $(t_m), $(eval $(call add-required-deps, $(t_m),$(t_r)))) \
657    $(if $(h_m), $(eval $(call add-required-deps, $(h_m),$(h_r)))) \
658    $(if $(hc_m), $(eval $(call add-required-deps, $(hc_m),$(hc_r)))) \
659   ) \
660 )
661
662t_m :=
663h_m :=
664hc_m :=
665t_r :=
666h_r :=
667hc_r :=
668
669# Establish the dependecies on the shared libraries.
670# It also adds the shared library module names to ALL_MODULES.$(m).REQUIRED,
671# so they can be expanded to product_MODULES later.
672# $(1): TARGET_ or HOST_ or HOST_CROSS_.
673# $(2): non-empty for 2nd arch.
674# $(3): non-empty for host cross compile.
675define resolve-shared-libs-depes
676$(foreach m,$($(if $(2),$($(1)2ND_ARCH_VAR_PREFIX))$(1)DEPENDENCIES_ON_SHARED_LIBRARIES),\
677  $(eval p := $(subst :,$(space),$(m)))\
678  $(eval mod := $(firstword $(p)))\
679  $(eval deps := $(subst $(comma),$(space),$(lastword $(p))))\
680  $(if $(2),$(eval deps := $(addsuffix $($(1)2ND_ARCH_MODULE_SUFFIX),$(deps))))\
681  $(if $(3),$(eval deps := $(addprefix host_cross_,$(deps))))\
682  $(eval r := $(filter $($(1)OUT)/%,$(call module-installed-files,\
683    $(deps))))\
684  $(eval $(call add-required-deps,$(word 2,$(p)),$(r)))\
685  $(eval ALL_MODULES.$(mod).REQUIRED += $(deps)))
686endef
687
688$(call resolve-shared-libs-depes,TARGET_)
689ifdef TARGET_2ND_ARCH
690$(call resolve-shared-libs-depes,TARGET_,true)
691endif
692$(call resolve-shared-libs-depes,HOST_)
693ifdef HOST_2ND_ARCH
694$(call resolve-shared-libs-depes,HOST_,true)
695endif
696ifdef HOST_CROSS_OS
697$(call resolve-shared-libs-depes,HOST_CROSS_,,true)
698endif
699
700m :=
701r :=
702p :=
703deps :=
704add-required-deps :=
705
706# -------------------------------------------------------------------
707# Figure out our module sets.
708#
709# Of the modules defined by the component makefiles,
710# determine what we actually want to build.
711
712###########################################################
713## Expand a module name list with REQUIRED modules
714###########################################################
715# $(1): The variable name that holds the initial module name list.
716#       the variable will be modified to hold the expanded results.
717# $(2): The initial module name list.
718# Returns empty string (maybe with some whitespaces).
719define expand-required-modules
720$(eval _erm_new_modules := $(sort $(filter-out $($(1)),\
721  $(foreach m,$(2),$(ALL_MODULES.$(m).REQUIRED)))))\
722$(if $(_erm_new_modules),$(eval $(1) += $(_erm_new_modules))\
723  $(call expand-required-modules,$(1),$(_erm_new_modules)))
724endef
725
726ifdef FULL_BUILD
727  # The base list of modules to build for this product is specified
728  # by the appropriate product definition file, which was included
729  # by product_config.mk.
730  product_MODULES := $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES)
731  # Filter out the overridden packages before doing expansion
732  product_MODULES := $(filter-out $(foreach p, $(product_MODULES), \
733      $(PACKAGES.$(p).OVERRIDES)), $(product_MODULES))
734
735  # Resolve the :32 :64 module name
736  modules_32 := $(patsubst %:32,%,$(filter %:32, $(product_MODULES)))
737  modules_64 := $(patsubst %:64,%,$(filter %:64, $(product_MODULES)))
738  modules_rest := $(filter-out %:32 %:64,$(product_MODULES))
739  # Note for 32-bit product, $(modules_32) and $(modules_64) will be
740  # added as their original module names.
741  product_MODULES := $(call get-32-bit-modules-if-we-can, $(modules_32))
742  product_MODULES += $(modules_64)
743  # For the rest we add both
744  product_MODULES += $(call get-32-bit-modules, $(modules_rest))
745  product_MODULES += $(modules_rest)
746
747  $(call expand-required-modules,product_MODULES,$(product_MODULES))
748
749  product_FILES := $(call module-installed-files, $(product_MODULES))
750  ifeq (0,1)
751    $(info product_FILES for $(TARGET_DEVICE) ($(INTERNAL_PRODUCT)):)
752    $(foreach p,$(product_FILES),$(info :   $(p)))
753    $(error done)
754  endif
755else
756  # We're not doing a full build, and are probably only including
757  # a subset of the module makefiles.  Don't try to build any modules
758  # requested by the product, because we probably won't have rules
759  # to build them.
760  product_FILES :=
761endif
762
763eng_MODULES := $(sort \
764        $(call get-tagged-modules,eng) \
765        $(call module-installed-files, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_ENG)) \
766    )
767debug_MODULES := $(sort \
768        $(call get-tagged-modules,debug) \
769        $(call module-installed-files, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_DEBUG)) \
770    )
771tests_MODULES := $(sort \
772        $(call get-tagged-modules,tests) \
773        $(call module-installed-files, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_TESTS)) \
774    )
775
776# TODO: Remove the 3 places in the tree that use ALL_DEFAULT_INSTALLED_MODULES
777# and get rid of it from this list.
778modules_to_install := $(sort \
779    $(ALL_DEFAULT_INSTALLED_MODULES) \
780    $(product_FILES) \
781    $(foreach tag,$(tags_to_install),$($(tag)_MODULES)) \
782    $(CUSTOM_MODULES) \
783  )
784
785# Some packages may override others using LOCAL_OVERRIDES_PACKAGES.
786# Filter out (do not install) any overridden packages.
787overridden_packages := $(call get-package-overrides,$(modules_to_install))
788ifdef overridden_packages
789#  old_modules_to_install := $(modules_to_install)
790  modules_to_install := \
791      $(filter-out $(foreach p,$(overridden_packages),$(p) %/$(p).apk), \
792          $(modules_to_install))
793endif
794#$(error filtered out
795#           $(filter-out $(modules_to_install),$(old_modules_to_install)))
796
797# Don't include any GNU General Public License shared objects or static
798# libraries in SDK images.  GPL executables (not static/dynamic libraries)
799# are okay if they don't link against any closed source libraries (directly
800# or indirectly)
801
802# It's ok (and necessary) to build the host tools, but nothing that's
803# going to be installed on the target (including static libraries).
804
805ifdef is_sdk_build
806  target_gnu_MODULES := \
807              $(filter \
808                      $(TARGET_OUT_INTERMEDIATES)/% \
809                      $(TARGET_OUT)/% \
810                      $(TARGET_OUT_DATA)/%, \
811                              $(sort $(call get-tagged-modules,gnu)))
812  target_gnu_MODULES := $(filter-out $(TARGET_OUT_EXECUTABLES)/%,$(target_gnu_MODULES))
813  $(info Removing from sdk:)$(foreach d,$(target_gnu_MODULES),$(info : $(d)))
814  modules_to_install := \
815              $(filter-out $(target_gnu_MODULES),$(modules_to_install))
816
817  # Ensure every module listed in PRODUCT_PACKAGES* gets something installed
818  # TODO: Should we do this for all builds and not just the sdk?
819  dangling_modules :=
820  $(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES), \
821    $(if $(strip $(ALL_MODULES.$(m).INSTALLED) $(ALL_MODULES.$(m)$(TARGET_2ND_ARCH_MODULE_SUFFIX).INSTALLED)),,\
822      $(eval dangling_modules += $(m))))
823  ifneq ($(dangling_modules),)
824    $(warning: Modules '$(dangling_modules)' in PRODUCT_PACKAGES have nothing to install!)
825  endif
826  $(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_DEBUG), \
827    $(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
828      $(warning $(ALL_MODULES.$(m).MAKEFILE): Module '$(m)' in PRODUCT_PACKAGES_DEBUG has nothing to install!)))
829  $(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_ENG), \
830    $(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
831      $(warning $(ALL_MODULES.$(m).MAKEFILE): Module '$(m)' in PRODUCT_PACKAGES_ENG has nothing to install!)))
832  $(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES_TESTS), \
833    $(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
834      $(warning $(ALL_MODULES.$(m).MAKEFILE): Module '$(m)' in PRODUCT_PACKAGES_TESTS has nothing to install!)))
835endif
836
837# build/core/Makefile contains extra stuff that we don't want to pollute this
838# top-level makefile with.  It expects that ALL_DEFAULT_INSTALLED_MODULES
839# contains everything that's built during the current make, but it also further
840# extends ALL_DEFAULT_INSTALLED_MODULES.
841ALL_DEFAULT_INSTALLED_MODULES := $(modules_to_install)
842include $(BUILD_SYSTEM)/Makefile
843modules_to_install := $(sort $(ALL_DEFAULT_INSTALLED_MODULES))
844ALL_DEFAULT_INSTALLED_MODULES :=
845
846
847# These are additional goals that we build, in order to make sure that there
848# is as little code as possible in the tree that doesn't build.
849modules_to_check := $(foreach m,$(ALL_MODULES),$(ALL_MODULES.$(m).CHECKED))
850
851# If you would like to build all goals, and not skip any intermediate
852# steps, you can pass the "all" modifier goal on the commandline.
853ifneq ($(filter all,$(MAKECMDGOALS)),)
854modules_to_check += $(foreach m,$(ALL_MODULES),$(ALL_MODULES.$(m).BUILT))
855endif
856
857# for easier debugging
858modules_to_check := $(sort $(modules_to_check))
859#$(error modules_to_check $(modules_to_check))
860
861# -------------------------------------------------------------------
862# This is used to to get the ordering right, you can also use these,
863# but they're considered undocumented, so don't complain if their
864# behavior changes.
865.PHONY: prebuilt
866prebuilt: $(ALL_PREBUILT)
867
868# An internal target that depends on all copied headers
869# (see copy_headers.make).  Other targets that need the
870# headers to be copied first can depend on this target.
871.PHONY: all_copied_headers
872all_copied_headers: ;
873
874$(ALL_C_CPP_ETC_OBJECTS): | all_copied_headers
875
876# All the droid stuff, in directories
877.PHONY: files
878files: prebuilt \
879        $(modules_to_install) \
880        $(INSTALLED_ANDROID_INFO_TXT_TARGET)
881
882# -------------------------------------------------------------------
883
884.PHONY: checkbuild
885checkbuild: $(modules_to_check) droid_targets
886ifeq ($(USE_SOONG),true)
887checkbuild: checkbuild-soong
888endif
889ifeq (true,$(ANDROID_BUILD_EVERYTHING_BY_DEFAULT))
890droid: checkbuild
891endif
892
893.PHONY: ramdisk
894ramdisk: $(INSTALLED_RAMDISK_TARGET)
895
896.PHONY: systemtarball
897systemtarball: $(INSTALLED_SYSTEMTARBALL_TARGET)
898
899.PHONY: boottarball
900boottarball: $(INSTALLED_BOOTTARBALL_TARGET)
901
902.PHONY: userdataimage
903userdataimage: $(INSTALLED_USERDATAIMAGE_TARGET)
904
905ifneq (,$(filter userdataimage, $(MAKECMDGOALS)))
906$(call dist-for-goals, userdataimage, $(BUILT_USERDATAIMAGE_TARGET))
907endif
908
909.PHONY: userdatatarball
910userdatatarball: $(INSTALLED_USERDATATARBALL_TARGET)
911
912.PHONY: cacheimage
913cacheimage: $(INSTALLED_CACHEIMAGE_TARGET)
914
915.PHONY: vendorimage
916vendorimage: $(INSTALLED_VENDORIMAGE_TARGET)
917
918.PHONY: bootimage
919bootimage: $(INSTALLED_BOOTIMAGE_TARGET)
920
921# phony target that include any targets in $(ALL_MODULES)
922.PHONY: all_modules
923ifndef BUILD_MODULES_IN_PATHS
924all_modules: $(ALL_MODULES)
925else
926# BUILD_MODULES_IN_PATHS is a list of paths relative to the top of the tree
927build_modules_in_paths := $(patsubst ./%,%,$(BUILD_MODULES_IN_PATHS))
928module_path_patterns := $(foreach p, $(build_modules_in_paths),\
929    $(if $(filter %/,$(p)),$(p)%,$(p)/%))
930my_all_modules := $(sort $(foreach m, $(ALL_MODULES),$(if $(filter\
931    $(module_path_patterns), $(addsuffix /,$(ALL_MODULES.$(m).PATH))),$(m))))
932all_modules: $(my_all_modules)
933endif
934
935
936# Build files and then package it into the rom formats
937.PHONY: droidcore
938droidcore: files \
939	systemimage \
940	$(INSTALLED_BOOTIMAGE_TARGET) \
941	$(INSTALLED_RECOVERYIMAGE_TARGET) \
942	$(INSTALLED_USERDATAIMAGE_TARGET) \
943	$(INSTALLED_CACHEIMAGE_TARGET) \
944	$(INSTALLED_VENDORIMAGE_TARGET) \
945	$(INSTALLED_FILES_FILE) \
946	$(INSTALLED_FILES_FILE_VENDOR)
947
948# dist_files only for putting your library into the dist directory with a full build.
949.PHONY: dist_files
950
951ifneq ($(TARGET_BUILD_APPS),)
952  # If this build is just for apps, only build apps and not the full system by default.
953
954  unbundled_build_modules :=
955  ifneq ($(filter all,$(TARGET_BUILD_APPS)),)
956    # If they used the magic goal "all" then build all apps in the source tree.
957    unbundled_build_modules := $(foreach m,$(sort $(ALL_MODULES)),$(if $(filter APPS,$(ALL_MODULES.$(m).CLASS)),$(m)))
958  else
959    unbundled_build_modules := $(TARGET_BUILD_APPS)
960  endif
961
962  # Dist the installed files if they exist.
963  apps_only_installed_files := $(foreach m,$(unbundled_build_modules),$(ALL_MODULES.$(m).INSTALLED))
964  $(call dist-for-goals,apps_only, $(apps_only_installed_files))
965  # For uninstallable modules such as static Java library, we have to dist the built file,
966  # as <module_name>.<suffix>
967  apps_only_dist_built_files := $(foreach m,$(unbundled_build_modules),$(if $(ALL_MODULES.$(m).INSTALLED),,\
968      $(if $(ALL_MODULES.$(m).BUILT),$(ALL_MODULES.$(m).BUILT):$(m)$(suffix $(ALL_MODULES.$(m).BUILT)))\
969      $(if $(ALL_MODULES.$(m).AAR),$(ALL_MODULES.$(m).AAR):$(m).aar)\
970      ))
971  $(call dist-for-goals,apps_only, $(apps_only_dist_built_files))
972
973  ifeq ($(EMMA_INSTRUMENT),true)
974    $(EMMA_META_ZIP) : $(apps_only_installed_files)
975
976    $(call dist-for-goals,apps_only, $(EMMA_META_ZIP))
977  endif
978
979  $(PROGUARD_DICT_ZIP) : $(apps_only_installed_files)
980  $(call dist-for-goals,apps_only, $(PROGUARD_DICT_ZIP))
981
982  $(SYMBOLS_ZIP) : $(apps_only_installed_files)
983  $(call dist-for-goals,apps_only, $(SYMBOLS_ZIP))
984
985.PHONY: apps_only
986apps_only: $(unbundled_build_modules)
987
988droid_targets: apps_only
989
990# Combine the NOTICE files for a apps_only build
991$(eval $(call combine-notice-files, \
992    $(target_notice_file_txt), \
993    $(target_notice_file_html), \
994    "Notices for files for apps:", \
995    $(TARGET_OUT_NOTICE_FILES), \
996    $(apps_only_installed_files)))
997
998
999else # TARGET_BUILD_APPS
1000  $(call dist-for-goals, droidcore, \
1001    $(INTERNAL_UPDATE_PACKAGE_TARGET) \
1002    $(INTERNAL_OTA_PACKAGE_TARGET) \
1003    $(BUILT_OTATOOLS_PACKAGE) \
1004    $(SYMBOLS_ZIP) \
1005    $(INSTALLED_FILES_FILE) \
1006    $(INSTALLED_FILES_FILE_VENDOR) \
1007    $(INSTALLED_BUILD_PROP_TARGET) \
1008    $(BUILT_TARGET_FILES_PACKAGE) \
1009    $(INSTALLED_ANDROID_INFO_TXT_TARGET) \
1010    $(INSTALLED_RAMDISK_TARGET) \
1011   )
1012
1013  # Put a copy of the radio/bootloader files in the dist dir.
1014  $(foreach f,$(INSTALLED_RADIOIMAGE_TARGET), \
1015    $(call dist-for-goals, droidcore, $(f)))
1016
1017  ifneq ($(ANDROID_BUILD_EMBEDDED),true)
1018  ifneq ($(TARGET_BUILD_PDK),true)
1019    $(call dist-for-goals, droidcore, \
1020      $(APPS_ZIP) \
1021      $(INTERNAL_EMULATOR_PACKAGE_TARGET) \
1022      $(PACKAGE_STATS_FILE) \
1023    )
1024  endif
1025  endif
1026
1027  ifeq ($(EMMA_INSTRUMENT),true)
1028    $(EMMA_META_ZIP) : $(INSTALLED_SYSTEMIMAGE)
1029
1030    $(call dist-for-goals, dist_files, $(EMMA_META_ZIP))
1031  endif
1032
1033# Building a full system-- the default is to build droidcore
1034droid_targets: droidcore dist_files
1035
1036endif # TARGET_BUILD_APPS
1037
1038.PHONY: docs
1039docs: $(ALL_DOCS)
1040
1041.PHONY: sdk
1042ALL_SDK_TARGETS := $(INTERNAL_SDK_TARGET)
1043sdk: $(ALL_SDK_TARGETS)
1044$(call dist-for-goals,sdk win_sdk, \
1045    $(ALL_SDK_TARGETS) \
1046    $(SYMBOLS_ZIP) \
1047    $(INSTALLED_BUILD_PROP_TARGET) \
1048)
1049
1050# umbrella targets to assit engineers in verifying builds
1051.PHONY: java native target host java-host java-target native-host native-target \
1052        java-host-tests java-target-tests native-host-tests native-target-tests \
1053        java-tests native-tests host-tests target-tests tests
1054# some synonyms
1055.PHONY: host-java target-java host-native target-native \
1056        target-java-tests target-native-tests
1057host-java : java-host
1058target-java : java-target
1059host-native : native-host
1060target-native : native-target
1061target-java-tests : java-target-tests
1062target-native-tests : native-target-tests
1063tests : host-tests target-tests
1064
1065# To catch more build breakage, check build tests modules in eng and userdebug builds.
1066ifneq ($(ANDROID_NO_TEST_CHECK),true)
1067ifneq ($(TARGET_BUILD_PDK),true)
1068ifneq ($(filter eng userdebug,$(TARGET_BUILD_VARIANT)),)
1069droidcore : target-tests host-tests
1070endif
1071endif
1072endif
1073
1074ifneq (,$(filter samplecode, $(MAKECMDGOALS)))
1075.PHONY: samplecode
1076sample_MODULES := $(sort $(call get-tagged-modules,samples))
1077sample_APKS_DEST_PATH := $(TARGET_COMMON_OUT_ROOT)/samples
1078sample_APKS_COLLECTION := \
1079        $(foreach module,$(sample_MODULES),$(sample_APKS_DEST_PATH)/$(notdir $(module)))
1080$(foreach module,$(sample_MODULES),$(eval $(call \
1081        copy-one-file,$(module),$(sample_APKS_DEST_PATH)/$(notdir $(module)))))
1082sample_ADDITIONAL_INSTALLED := \
1083        $(filter-out $(modules_to_install) $(modules_to_check) $(ALL_PREBUILT),$(sample_MODULES))
1084samplecode: $(sample_APKS_COLLECTION)
1085	@echo "Collect sample code apks: $^"
1086	# remove apks that are not intended to be installed.
1087	rm -f $(sample_ADDITIONAL_INSTALLED)
1088endif  # samplecode in $(MAKECMDGOALS)
1089
1090.PHONY: findbugs
1091findbugs: $(INTERNAL_FINDBUGS_HTML_TARGET) $(INTERNAL_FINDBUGS_XML_TARGET)
1092
1093.PHONY: clean
1094clean:
1095	@rm -rf $(OUT_DIR)/*
1096	@echo "Entire build directory removed."
1097
1098.PHONY: clobber
1099clobber: clean
1100
1101# The rules for dataclean and installclean are defined in cleanbuild.mk.
1102
1103#xxx scrape this from ALL_MODULE_NAME_TAGS
1104.PHONY: modules
1105modules:
1106	@echo "Available sub-modules:"
1107	@echo "$(call module-names-for-tag-list,$(ALL_MODULE_TAGS))" | \
1108	      tr -s ' ' '\n' | sort -u | $(COLUMN)
1109
1110.PHONY: showcommands
1111showcommands:
1112	@echo >/dev/null
1113
1114.PHONY: nothing
1115nothing:
1116	@echo Successfully read the makefiles.
1117endif # !relaunch_with_ninja
1118