Main.gmk revision 1790:b2a9c5ef147e
1#
2# Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# This code is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License version 2 only, as
7# published by the Free Software Foundation.  Oracle designates this
8# particular file as subject to the "Classpath" exception as provided
9# by Oracle in the LICENSE file that accompanied this code.
10#
11# This code is distributed in the hope that it will be useful, but WITHOUT
12# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14# version 2 for more details (a copy is included in the LICENSE file that
15# accompanied this code).
16#
17# You should have received a copy of the GNU General Public License version
18# 2 along with this work; if not, write to the Free Software Foundation,
19# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20#
21# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22# or visit www.oracle.com if you need additional information or have any
23# questions.
24#
25
26################################################################################
27# This is the main makefile containing most actual top level targets. It needs
28# to be called with a SPEC file defined.
29################################################################################
30
31# Declare default target
32default:
33
34ifeq ($(wildcard $(SPEC)),)
35  $(error Main.gmk needs SPEC set to a proper spec.gmk)
36endif
37
38# Now load the spec
39include $(SPEC)
40
41include $(SRC_ROOT)/make/MainSupport.gmk
42
43# Load the vital tools for all the makefiles.
44include $(SRC_ROOT)/make/common/MakeBase.gmk
45include $(SRC_ROOT)/make/common/Modules.gmk
46
47# Declare ALL_TARGETS as an immediate variable. This variable is a list of all
48# valid top level targets. It's used to declare them all as PHONY and to
49# generate the -only targets.
50ALL_TARGETS :=
51
52# Hook to include the corresponding custom file, if present.
53$(eval $(call IncludeCustomExtension, , Main.gmk))
54
55# All modules for the current target platform.
56# Manually add jdk.hotspot.agent for now.
57ALL_MODULES := $(call FindAllModules) jdk.hotspot.agent
58
59################################################################################
60################################################################################
61#
62# Recipes for all targets. Only recipes, dependencies are declared later.
63#
64################################################################################
65
66################################################################################
67# Interim/build tools targets, compiling tools used during the build
68
69buildtools-langtools:
70	+($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Tools.gmk)
71
72interim-langtools:
73	+($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterim.gmk)
74
75interim-rmic:
76	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterimRmic.gmk)
77
78interim-cldrconverter:
79	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CopyInterimCLDRConverter.gmk)
80
81buildtools-jdk:
82	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Tools.gmk java-tools)
83
84ALL_TARGETS += buildtools-langtools interim-langtools \
85    interim-rmic interim-cldrconverter buildtools-jdk
86
87################################################################################
88# Special targets for certain modules
89
90import-hotspot:
91	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Import.gmk)
92
93unpack-sec:
94	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f UnpackSecurity.gmk)
95
96generate-exported-symbols:
97	+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f BuildStatic.gmk)
98
99ALL_TARGETS += import-hotspot unpack-sec generate-exported-symbols
100
101################################################################################
102# Gensrc targets, generating source before java compilation can be done
103$(eval $(call DeclareRecipesForPhase, GENSRC, \
104    TARGET_SUFFIX := gensrc, \
105    FILE_PREFIX := Gensrc, \
106    MAKE_SUBDIR := gensrc, \
107    CHECK_MODULES := $(ALL_MODULES), \
108    MULTIPLE_MAKEFILES := true))
109
110JDK_GENSRC_TARGETS := $(filter %-gensrc-jdk, $(GENSRC_TARGETS))
111LANGTOOLS_GENSRC_TARGETS := $(filter %-gensrc-langtools, $(GENSRC_TARGETS))
112CORBA_GENSRC_TARGETS := $(filter %-gensrc-corba, $(GENSRC_TARGETS))
113HOTSPOT_GENSRC_TARGETS := $(filter %-gensrc-hotspot, $(GENSRC_TARGETS))
114
115ALL_TARGETS += $(GENSRC_TARGETS)
116
117################################################################################
118# Generate data targets
119$(eval $(call DeclareRecipesForPhase, GENDATA, \
120    TARGET_SUFFIX := gendata, \
121    FILE_PREFIX := Gendata, \
122    MAKE_SUBDIR := gendata, \
123    CHECK_MODULES := $(ALL_MODULES), \
124    USE_WRAPPER := true))
125
126ALL_TARGETS += $(GENDATA_TARGETS)
127
128################################################################################
129# Copy files targets
130$(eval $(call DeclareRecipesForPhase, COPY, \
131    TARGET_SUFFIX := copy, \
132    FILE_PREFIX := Copy, \
133    MAKE_SUBDIR := copy, \
134    CHECK_MODULES := $(ALL_MODULES), \
135    USE_WRAPPER := true, \
136    MULTIPLE_MAKEFILES := true))
137
138ALL_TARGETS += $(COPY_TARGETS)
139
140################################################################################
141# Targets for compiling all java modules. Nashorn is treated separately.
142JAVA_MODULES := $(call FindJavaModules)
143JAVA_TARGETS := $(addsuffix -java, $(JAVA_MODULES))
144
145define DeclareCompileJavaRecipe
146  $1-java:
147	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) \
148	    -f CompileJavaModules.gmk MODULE=$1)
149endef
150
151$(foreach m, $(filter-out jdk.scripting.nashorn, $(JAVA_MODULES)), \
152    $(eval $(call DeclareCompileJavaRecipe,$m)))
153
154# Build nashorn. Needs to be compiled separately from the rest of the modules
155# due to nasgen.
156jdk.scripting.nashorn-java:
157	+($(CD) $(NASHORN_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) \
158	    -f BuildNashorn.gmk compile)
159
160ALL_TARGETS += $(JAVA_TARGETS)
161
162################################################################################
163# Targets for running rmic.
164$(eval $(call DeclareRecipesForPhase, RMIC, \
165    TARGET_SUFFIX := rmic, \
166    FILE_PREFIX := Rmic, \
167    MAKE_SUBDIR := rmic, \
168    CHECK_MODULES := $(ALL_MODULES)))
169
170ALL_TARGETS += $(RMIC_TARGETS)
171
172################################################################################
173# Targets for compiling native libraries
174$(eval $(call DeclareRecipesForPhase, LIBS, \
175    TARGET_SUFFIX := libs, \
176    FILE_PREFIX := Lib, \
177    MAKE_SUBDIR := lib, \
178    CHECK_MODULES := $(ALL_MODULES), \
179    USE_WRAPPER := true))
180
181ALL_TARGETS += $(LIBS_TARGETS)
182
183################################################################################
184# Targets for compiling native executables
185$(eval $(call DeclareRecipesForPhase, LAUNCHER, \
186    TARGET_SUFFIX := launchers, \
187    FILE_PREFIX := Launcher, \
188    MAKE_SUBDIR := launcher, \
189    CHECK_MODULES := $(ALL_MODULES), \
190    USE_WRAPPER := true))
191
192ALL_TARGETS += $(LAUNCHER_TARGETS)
193
194################################################################################
195# Build hotspot target
196
197ifeq ($(BUILD_HOTSPOT),true)
198  hotspot:
199	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f HotspotWrapper.gmk)
200endif
201
202ALL_TARGETS += hotspot
203
204################################################################################
205# Build demos and samples targets
206
207demos-jdk:
208	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileDemos.gmk)
209
210samples-jdk:
211	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CopySamples.gmk)
212
213ALL_TARGETS += demos-jdk samples-jdk
214
215################################################################################
216# Image targets
217
218# Stores the tips for each repository. This file is be used when constructing the jdk image and can be
219# used to track the exact sources used to build that image.
220source-tips: $(SUPPORT_OUTPUTDIR)/source_tips
221$(SUPPORT_OUTPUTDIR)/source_tips: FRC
222	@$(MKDIR) -p $(@D)
223	@$(RM) $@
224	@$(call GetSourceTips)
225
226BOOTCYCLE_TARGET := product-images
227bootcycle-images:
228	@$(ECHO) Boot cycle build step 2: Building a new JDK image using previously built image
229	+$(MAKE) $(MAKE_ARGS) -f $(SRC_ROOT)/make/Main.gmk \
230	    SPEC=$(dir $(SPEC))bootcycle-spec.gmk $(BOOTCYCLE_TARGET)
231
232zip-security:
233	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSecurity.gmk)
234
235zip-source:
236	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSource.gmk)
237
238strip-binaries:
239	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f StripBinaries.gmk)
240
241jrtfs-jar:
242	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f JrtfsJar.gmk)
243
244jimages:
245	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk jimages)
246
247profiles:
248	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk profiles)
249
250mac-bundles-jdk:
251	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f MacBundles.gmk)
252
253ALL_TARGETS += source-tips bootcycle-images zip-security zip-source strip-binaries \
254    jrtfs-jar jimages profiles mac-bundles-jdk
255
256################################################################################
257# Docs targets
258
259docs-javadoc:
260	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs)
261
262docs-jvmtidoc:
263	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk jvmtidocs)
264
265ALL_TARGETS += docs-javadoc docs-jvmtidoc
266
267################################################################################
268# Build tests
269#
270
271prepare-test-image:
272	$(MKDIR) -p $(TEST_IMAGE_DIR)
273	$(ECHO) > $(TEST_IMAGE_DIR)/Readme.txt 'JDK test image'
274
275build-test-hotspot-jtreg-native:
276	+($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
277	    build-test-hotspot-jtreg-native)
278
279test-image-hotspot-jtreg-native:
280	+($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
281	    test-image-hotspot-jtreg-native)
282
283build-test-jdk-jtreg-native:
284	+($(CD) $(JDK_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
285	    build-test-jdk-jtreg-native)
286
287test-image-jdk-jtreg-native:
288	+($(CD) $(JDK_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
289	    test-image-jdk-jtreg-native)
290
291build-test-lib:
292	+($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f BuildTestLib.gmk)
293
294ALL_TARGETS += prepare-test-image build-test-hotspot-jtreg-native \
295    test-image-hotspot-jtreg-native build-test-jdk-jtreg-native \
296    test-image-jdk-jtreg-native build-test-lib
297
298################################################################################
299# Run tests
300
301# Run tests specified by $(TEST), or the default test set.
302test:
303	$(call RunTests, $(TEST))
304
305test-hotspot-jtreg:
306	$(call RunTests, "hotspot_all")
307
308test-hotspot-jtreg-native:
309	$(call RunTests, "hotspot_native_sanity")
310
311test-hotspot-internal:
312	$(call RunTests, "hotspot_internal")
313
314test-jdk-jtreg-native:
315	$(call RunTests, "jdk_native_sanity")
316
317test-make:
318	($(CD) $(SRC_ROOT)/test/make && $(MAKE) $(MAKE_ARGS) -f TestMake.gmk $(TEST_TARGET))
319
320ALL_TARGETS += test test-hotspot-jtreg test-hotspot-jtreg-native \
321    test-hotspot-internal test-jdk-jtreg-native test-make
322
323################################################################################
324# Verification targets
325
326verify-modules:
327	@$(call TargetEnter)
328	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CheckModules.gmk)
329	@$(call TargetExit)
330
331ALL_TARGETS += verify-modules
332
333################################################################################
334# Install targets
335
336install:
337	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Install.gmk)
338
339ALL_TARGETS += install
340
341################################################################################
342#
343# Dependency declarations between targets.
344#
345# These are declared in two groups. First all dependencies between targets that
346# have recipes above as these dependencies may be disabled. Then the aggregator
347# targets that do not have recipes of their own, which will never have their
348# dependencies disabled.
349#
350################################################################################
351# Targets with recipes above
352
353# If running an *-only target, parallel execution and dependencies between
354# recipe targets are disabled. This makes it possible to run a select set of
355# recipe targets in order. It's the responsibility of the user to make sure
356# all prerequisites are fulfilled.
357ifneq ($(findstring -only, $(MAKECMDGOALS)), )
358  .NOTPARALLEL:
359else
360  $(LANGTOOLS_GENSRC_TARGETS): buildtools-langtools
361
362  interim-langtools: $(LANGTOOLS_GENSRC_TARGETS)
363
364  buildtools-jdk: interim-langtools interim-cldrconverter
365
366  $(CORBA_GENSRC_TARGETS): interim-langtools
367
368  $(HOTSPOT_GENSRC_TARGETS): interim-langtools
369
370  $(JDK_GENSRC_TARGETS): interim-langtools buildtools-jdk
371
372  $(GENDATA_TARGETS): interim-langtools buildtools-jdk
373
374  interim-rmic: interim-langtools
375
376  $(RMIC_TARGETS): interim-langtools interim-rmic
377
378  $(JAVA_TARGETS): interim-langtools
379
380  import-hotspot: hotspot
381
382  generate-exported-symbols: java.base-libs jdk.jdwp.agent-libs
383
384  $(LIBS_TARGETS): import-hotspot
385
386  $(LAUNCHER_TARGETS): java.base-libs
387
388  ifeq ($(STATIC_BUILD), true)
389    $(LAUNCHER_TARGETS): generate-exported-symbols
390  endif
391
392  # The demos are currently linking to libjvm and libjava, just like all other
393  # jdk libs, even though they don't need to. To avoid warnings, make sure they
394  # aren't built until after libjava and libjvm are available to link to.
395  demos-jdk: $(JAVA_TARGETS)
396
397  # Declare dependency from <module>-java to <module>-gensrc
398  $(foreach m, $(GENSRC_MODULES), $(eval $m-java: $m-gensrc))
399
400  # Declare dependencies between java modules
401  $(foreach m, $(JAVA_MODULES), \
402      $(eval $m-java: $(addsuffix -java, $(filter $(JAVA_MODULES), \
403      $(call FindDepsForModule,$m)))))
404
405  # Declare dependencies between <module>-rmic to <module>-java
406  $(foreach m, $(RMIC_MODULES), $(eval $m-rmic: $m-java))
407
408  # Declare dependencies from <module>-lib to <module>-java
409  # Skip modules that do not have java source.
410  $(foreach m, $(filter $(JAVA_MODULES), $(LIBS_MODULES)), $(eval $m-libs: $m-java))
411
412  # Declare dependencies from all other <module>-lib to java.base-lib
413  $(foreach t, $(filter-out java.base-libs, $(LIBS_TARGETS)), \
414      $(eval $t: java.base-libs))
415  # Declare the special case dependency for jdk.deploy.osx where libosx
416  # links against libosxapp.
417  jdk.deploy.osx-libs: java.desktop-libs
418
419  # jdk.accessibility depends on java.desktop
420  jdk.accessibility-libs: java.desktop-libs
421
422  # This dependency needs to be explicitly declared. jdk.jdi-gensrc generates a
423  # header file used by jdk.jdwp.agent-libs. The jdk.jdwp.agent-gensrc is a
424  # virtual target.
425  jdk.jdwp.agent-libs: jdk.jdwp.agent-gensrc
426
427  # Until the module system is in place, jdk.jdi-gensrc needs to combine service
428  # loader configuration with jdk.hotspot.agent so is dependent on importing
429  # hotspot.
430  jdk.jdi-gensrc-jdk: import-hotspot
431
432  # The swing beans need to have java base properly generated to avoid errors
433  # in javadoc.
434  java.desktop-gensrc-jdk: java.base-gensrc
435
436  # Explicitly add dependencies for special targets
437  java.base-java: unpack-sec
438
439  # The copy target copies files generated by gensrc
440  java.base-copy-hotspot: java.base-gensrc-hotspot
441
442  jdk.jdeps-gendata: java rmic
443
444  zip-security: java.base-java java.security.jgss-java java.security.jgss-libs \
445      $(filter jdk.crypto%, $(JAVA_TARGETS))
446
447  zip-source: gensrc rmic
448
449  strip-binaries: libs launchers gendata copy
450
451  jrtfs-jar: buildtools-jdk
452
453  jimages: exploded-image zip-source strip-binaries source-tips demos samples \
454      jrtfs-jar
455
456  profiles: exploded-image strip-binaries source-tips
457
458  mac-bundles-jdk: jimages
459
460  bootcycle-images: jimages
461
462  docs-javadoc: gensrc rmic
463
464  docs-jvmtidoc: hotspot
465
466  test: jimages test-image
467
468  verify-modules: exploded-image
469
470  test-make: clean-test-make
471
472  build-test-lib: java
473
474  build-test-hotspot-jtreg-native: buildtools-jdk
475
476  build-test-jdk-jtreg-native: buildtools-jdk
477
478  test-image-hotspot-jtreg-native: build-test-hotspot-jtreg-native
479
480  test-image-jdk-jtreg-native: build-test-jdk-jtreg-native
481
482  test-hotspot-internal: exploded-image
483
484  test-hotspot-jtreg: jimages test-image
485
486  install: product-images
487
488endif
489
490################################################################################
491# Virtual targets without recipes
492
493buildtools: buildtools-langtools interim-langtools interim-rmic \
494    buildtools-jdk
495
496gensrc: $(GENSRC_TARGETS)
497
498gendata: $(GENDATA_TARGETS)
499
500copy: $(COPY_TARGETS)
501
502java: $(JAVA_TARGETS)
503
504rmic: $(RMIC_TARGETS)
505
506libs: $(LIBS_TARGETS)
507
508launchers: $(LAUNCHER_TARGETS)
509
510# Explicitly declare dependency for virtual target jdk.jdwp.agent-gensrc which
511# is actually handled by jdk.jdi-gensrc
512jdk.jdwp.agent-gensrc: jdk.jdi-gensrc
513
514# Declare dependencies from <module> to all the individual targets specific
515# to that module <module>-*, that are needed for the exploded image.
516$(foreach m, $(GENSRC_MODULES), $(eval $m: $m-gensrc))
517$(foreach m, $(JAVA_MODULES), $(eval $m: $m-java))
518$(foreach m, $(GENDATA_MODULES), $(eval $m: $m-gendata))
519$(foreach m, $(RMIC_MODULES), $(eval $m: $m-rmic))
520$(foreach m, $(LIBS_MODULES), $(eval $m: $m-libs))
521$(foreach m, $(LAUNCHER_MODULES), $(eval $m: $m-launchers))
522$(foreach m, $(COPY_MODULES), $(eval $m: $m-copy))
523
524demos: demos-jdk
525
526samples: samples-jdk
527
528# The "exploded image" is a locally runnable JDK in $(BUILD_OUTPUT)/jdk.
529exploded-image: $(ALL_MODULES)
530
531mac-bundles: mac-bundles-jdk
532
533# The $(BUILD_OUTPUT)/images directory contain the resulting deliverables,
534# and in line with this, our targets for creating these are named *-image[s].
535
536# This target builds the product images, e.g. the JRE and JDK image
537# (and possibly other, more specific versions)
538product-images: jimages demos samples zip-security verify-modules
539
540ifeq ($(OPENJDK_TARGET_OS), macosx)
541  product-images: mac-bundles
542endif
543
544# This target builds the documentation image
545docs-image: docs-javadoc docs-jvmtidoc
546
547# This target builds the test image
548test-image: prepare-test-image test-image-hotspot-jtreg-native \
549    test-image-jdk-jtreg-native
550
551# all-images is the top-most target, it builds all our deliverables ("images").
552all-images: product-images test-image docs-image
553
554ALL_TARGETS += buildtools gensrc gendata copy java rmic libs launchers \
555    jdk.jdwp.agent-gensrc $(ALL_MODULES) demos samples exploded-image \
556    mac-bundles product-images docs-image test-image all-images
557
558################################################################################
559
560# Traditional targets typically run by users.
561# These can be considered aliases for the targets now named by a more
562# "modern" naming scheme.
563default: exploded-image
564jdk: exploded-image
565images: product-images
566docs: docs-image
567all: all-images
568
569ALL_TARGETS += default jdk images docs all
570
571################################################################################
572################################################################################
573#
574# Clean targets
575#
576################################################################################
577# Clean targets are automatically run serially by the Makefile calling this
578# file.
579
580CLEAN_DIRS += hotspot jdk bootcycle-build test buildtools support \
581    images make-support test-make bundles
582CLEAN_DIR_TARGETS := $(addprefix clean-, $(CLEAN_DIRS))
583CLEAN_SUPPORT_DIRS += demos
584CLEAN_SUPPORT_DIR_TARGETS := $(addprefix clean-, $(CLEAN_SUPPORT_DIRS))
585CLEAN_TESTS += hotspot-jtreg-native jdk-jtreg-native lib
586CLEAN_TEST_TARGETS += $(addprefix clean-test-, $(CLEAN_TESTS))
587CLEAN_PHASES := gensrc java native include docs
588CLEAN_PHASE_TARGETS := $(addprefix clean-, $(CLEAN_PHASES))
589CLEAN_MODULE_TARGETS := $(addprefix clean-, $(ALL_MODULES))
590# Construct targets of the form clean-$module-$phase
591CLEAN_MODULE_PHASE_TARGETS := $(addprefix clean-, $(foreach m, $(ALL_MODULES), \
592    $(addprefix $m-, $(CLEAN_PHASES))))
593
594# Remove everything, except the output from configure.
595clean: $(CLEAN_DIR_TARGETS)
596	($(CD) $(OUTPUT_ROOT) && $(RM) -r build*.log*)
597	$(ECHO) Cleaned all build artifacts.
598
599$(CLEAN_DIR_TARGETS):
600	$(call CleanDir,$(patsubst clean-%, %, $@))
601
602$(CLEAN_SUPPORT_DIR_TARGETS):
603	$(call CleanSupportDir,$(patsubst clean-%, %, $@))
604
605$(CLEAN_TEST_TARGETS):
606	$(call CleanTest,$(patsubst clean-test-%, %, $@))
607
608$(CLEAN_PHASE_TARGETS):
609	$(call Clean-$(patsubst clean-%,%, $@))
610
611$(CLEAN_MODULE_TARGETS):
612	$(call CleanModule,$(patsubst clean-%, %, $@))
613
614$(CLEAN_MODULE_PHASE_TARGETS):
615	$(call Clean-$(word 3, $(subst -,$(SPACE),$@)), \
616	    $(word 2, $(subst -,$(SPACE),$@)))
617
618# When removing the support dir, we must also remove jdk. Building classes has
619# the side effect of generating native headers. The headers end up in support
620# while classes and touch files end up in jdk.
621clean-support: clean-jdk
622
623# Remove everything, including configure configuration. If the output
624# directory was created by configure and now becomes empty, remove it as well.
625dist-clean: clean
626	($(CD) $(OUTPUT_ROOT) && \
627	    $(RM) -r *spec.gmk $(CONFIGURESUPPORT_OUTPUTDIR) Makefile compare.sh ide)
628	$(if $(filter $(CONF_NAME),$(notdir $(OUTPUT_ROOT))), \
629	  if test "x`$(LS) $(OUTPUT_ROOT)`" != x; then \
630	    $(ECHO) "Warning: Not removing non-empty configuration directory for '$(CONF_NAME)'" ; \
631	  else \
632	    ($(CD) $(SRC_ROOT) && $(ECHO) "Removing configuration directory for '$(CONF_NAME)'" \
633	        && $(RM) -r $(OUTPUT_ROOT)) \
634	  fi \
635	)
636	$(ECHO) Cleaned everything, you will have to re-run configure.
637
638ALL_TARGETS += clean dist-clean $(CLEAN_DIR_TARGETS) $(CLEAN_SUPPORT_DIR_TARGETS) \
639    $(CLEAN_TEST_TARGETS) $(CLEAN_PHASE_TARGETS) $(CLEAN_MODULE_TARGETS) \
640    $(CLEAN_MODULE_PHASE_TARGETS)
641
642################################################################################
643# Declare *-only targets for each normal target
644$(foreach t, $(ALL_TARGETS), $(eval $(t)-only: $(t)))
645
646ALL_TARGETS += $(addsuffix -only, $(filter-out dist-clean clean%, $(ALL_TARGETS)))
647
648################################################################################
649
650# Include JPRT targets
651include $(SRC_ROOT)/make/Jprt.gmk
652
653################################################################################
654
655# The following targets are intentionally not added to ALL_TARGETS since they
656# are internal only, to support Init.gmk.
657
658print-targets:
659	  @$(ECHO) $(sort $(ALL_TARGETS))
660
661print-modules:
662	  @$(ECHO) $(sort $(ALL_MODULES))
663
664create-main-targets-include:
665	  @$(ECHO) $(LOG_INFO) Generating main target list
666	  @$(ECHO) ALL_MAIN_TARGETS := $(sort $(ALL_TARGETS)) > \
667	      $(MAKESUPPORT_OUTPUTDIR)/main-targets.gmk
668
669################################################################################
670
671.PHONY: $(ALL_TARGETS)
672
673FRC: # Force target
674