Main.gmk revision 1738:61ca9d7b1d76
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) -f CompileJavaModules.gmk \
148	    $1 JAVA_MODULES=$1 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) -f BuildNashorn.gmk compile)
158
159ALL_TARGETS += $(JAVA_TARGETS)
160
161################################################################################
162# Targets for running rmic.
163$(eval $(call DeclareRecipesForPhase, RMIC, \
164    TARGET_SUFFIX := rmic, \
165    FILE_PREFIX := Rmic, \
166    MAKE_SUBDIR := rmic, \
167    CHECK_MODULES := $(ALL_MODULES)))
168
169ALL_TARGETS += $(RMIC_TARGETS)
170
171################################################################################
172# Targets for compiling native libraries
173$(eval $(call DeclareRecipesForPhase, LIBS, \
174    TARGET_SUFFIX := libs, \
175    FILE_PREFIX := Lib, \
176    MAKE_SUBDIR := lib, \
177    CHECK_MODULES := $(ALL_MODULES), \
178    USE_WRAPPER := true))
179
180ALL_TARGETS += $(LIBS_TARGETS)
181
182################################################################################
183# Targets for compiling native executables
184$(eval $(call DeclareRecipesForPhase, LAUNCHER, \
185    TARGET_SUFFIX := launchers, \
186    FILE_PREFIX := Launcher, \
187    MAKE_SUBDIR := launcher, \
188    CHECK_MODULES := $(ALL_MODULES), \
189    USE_WRAPPER := true))
190
191ALL_TARGETS += $(LAUNCHER_TARGETS)
192
193################################################################################
194# Build hotspot target
195
196ifeq ($(BUILD_HOTSPOT),true)
197  hotspot:
198	($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f HotspotWrapper.gmk)
199endif
200
201ALL_TARGETS += hotspot
202
203################################################################################
204# Build demos and samples targets
205
206demos-jdk:
207	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileDemos.gmk)
208
209samples-jdk:
210	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CopySamples.gmk)
211
212ALL_TARGETS += demos-jdk samples-jdk
213
214################################################################################
215# Image targets
216
217# Stores the tips for each repository. This file is be used when constructing the jdk image and can be
218# used to track the exact sources used to build that image.
219source-tips: $(SUPPORT_OUTPUTDIR)/source_tips
220$(SUPPORT_OUTPUTDIR)/source_tips: FRC
221	@$(MKDIR) -p $(@D)
222	@$(RM) $@
223	@$(call GetSourceTips)
224
225BOOTCYCLE_TARGET := product-images
226bootcycle-images:
227	@$(ECHO) Boot cycle build step 2: Building a new JDK image using previously built image
228	+$(MAKE) $(MAKE_ARGS) -f $(SRC_ROOT)/make/Main.gmk \
229	    SPEC=$(dir $(SPEC))bootcycle-spec.gmk $(BOOTCYCLE_TARGET)
230
231zip-security:
232	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSecurity.gmk)
233
234zip-source:
235	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSource.gmk)
236
237strip-binaries:
238	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f StripBinaries.gmk)
239
240jrtfs-jar:
241	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f JrtfsJar.gmk)
242
243jimages:
244	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk jimages)
245
246profiles:
247	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk profiles)
248
249mac-bundles-jdk:
250	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f MacBundles.gmk)
251
252ALL_TARGETS += source-tips bootcycle-images zip-security zip-source strip-binaries \
253    jrtfs-jar jimages profiles mac-bundles-jdk
254
255################################################################################
256# Docs targets
257
258docs-javadoc:
259	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs)
260
261docs-jvmtidoc:
262	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk jvmtidocs)
263
264ALL_TARGETS += docs-javadoc docs-jvmtidoc
265
266################################################################################
267# Build tests
268#
269
270prepare-test-image:
271	$(MKDIR) -p $(TEST_IMAGE_DIR)
272	$(ECHO) > $(TEST_IMAGE_DIR)/Readme.txt 'JDK test image'
273
274build-test-hotspot-jtreg-native:
275	+($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
276	    build-test-hotspot-jtreg-native)
277
278test-image-hotspot-jtreg-native:
279	+($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
280	    test-image-hotspot-jtreg-native)
281
282build-test-jdk-jtreg-native:
283	+($(CD) $(JDK_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
284	    build-test-jdk-jtreg-native)
285
286test-image-jdk-jtreg-native:
287	+($(CD) $(JDK_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
288	    test-image-jdk-jtreg-native)
289
290build-test-lib:
291	+($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f BuildTestLib.gmk)
292
293ALL_TARGETS += prepare-test-image build-test-hotspot-jtreg-native \
294    test-image-hotspot-jtreg-native build-test-jdk-jtreg-native \
295    test-image-jdk-jtreg-native build-test-lib
296
297################################################################################
298# Run tests
299
300# Run tests specified by $(TEST), or the default test set.
301test:
302	$(call RunTests, $(TEST))
303
304test-hotspot-jtreg-native:
305	$(call RunTests, "hotspot_native_sanity")
306
307test-hotspot-internal:
308	$(call RunTests, "hotspot_internal")
309
310test-jdk-jtreg-native:
311	$(call RunTests, "jdk_native_sanity")
312
313test-make:
314	($(CD) $(SRC_ROOT)/test/make && $(MAKE) $(MAKE_ARGS) -f TestMake.gmk $(TEST_TARGET))
315
316ALL_TARGETS += test test-hotspot-jtreg-native test-hotspot-internal \
317    test-jdk-jtreg-native test-make
318
319################################################################################
320# Verification targets
321
322verify-modules:
323	@$(call TargetEnter)
324	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CheckModules.gmk)
325	@$(call TargetExit)
326
327ALL_TARGETS += verify-modules
328
329################################################################################
330# Install targets
331
332install:
333	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Install.gmk)
334
335ALL_TARGETS += install
336
337################################################################################
338#
339# Dependency declarations between targets.
340#
341# These are declared in two groups. First all dependencies between targets that
342# have recipes above as these dependencies may be disabled. Then the aggregator
343# targets that do not have recipes of their own, which will never have their
344# dependencies disabled.
345#
346################################################################################
347# Targets with recipes above
348
349# If running an *-only target, parallel execution and dependencies between
350# recipe targets are disabled. This makes it possible to run a select set of
351# recipe targets in order. It's the responsibility of the user to make sure
352# all prerequisites are fulfilled.
353ifneq ($(findstring -only, $(MAKECMDGOALS)), )
354  .NOTPARALLEL:
355else
356  $(LANGTOOLS_GENSRC_TARGETS): buildtools-langtools
357
358  interim-langtools: $(LANGTOOLS_GENSRC_TARGETS)
359
360  buildtools-jdk: interim-langtools interim-cldrconverter
361
362  $(CORBA_GENSRC_TARGETS): interim-langtools
363
364  $(HOTSPOT_GENSRC_TARGETS): interim-langtools
365
366  $(JDK_GENSRC_TARGETS): interim-langtools buildtools-jdk
367
368  $(GENDATA_TARGETS): interim-langtools buildtools-jdk
369
370  interim-rmic: interim-langtools
371
372  $(RMIC_TARGETS): interim-langtools interim-rmic
373
374  $(JAVA_TARGETS): interim-langtools
375
376  import-hotspot: hotspot
377
378  generate-exported-symbols: java.base-libs jdk.jdwp.agent-libs
379
380  $(LIBS_TARGETS): import-hotspot
381
382  $(LAUNCHER_TARGETS): java.base-libs
383
384  ifeq ($(STATIC_BUILD), true)
385    $(LAUNCHER_TARGETS): generate-exported-symbols
386  endif
387
388  # The demos are currently linking to libjvm and libjava, just like all other
389  # jdk libs, even though they don't need to. To avoid warnings, make sure they
390  # aren't built until after libjava and libjvm are available to link to.
391  demos-jdk: $(JAVA_TARGETS)
392
393  # Declare dependency from <module>-java to <module>-gensrc
394  $(foreach m, $(GENSRC_MODULES), $(eval $m-java: $m-gensrc))
395
396  # Declare dependencies between java modules
397  $(foreach m, $(JAVA_MODULES), \
398      $(eval $m-java: $(addsuffix -java, $(filter $(JAVA_MODULES), \
399      $(call FindDepsForModule,$m)))))
400
401  # Declare dependencies between <module>-rmic to <module>-java
402  $(foreach m, $(RMIC_MODULES), $(eval $m-rmic: $m-java))
403
404  # Declare dependencies from <module>-lib to <module>-java
405  # Skip modules that do not have java source.
406  $(foreach m, $(filter $(JAVA_MODULES), $(LIBS_MODULES)), $(eval $m-libs: $m-java))
407
408  # Declare dependencies from all other <module>-lib to java.base-lib
409  $(foreach t, $(filter-out java.base-libs, $(LIBS_TARGETS)), \
410      $(eval $t: java.base-libs))
411  # Declare the special case dependency for jdk.deploy.osx where libosx
412  # links against libosxapp.
413  jdk.deploy.osx-libs: java.desktop-libs
414
415  # jdk.accessibility depends on java.desktop
416  jdk.accessibility-libs: java.desktop-libs
417
418  # This dependency needs to be explicitly declared. jdk.jdi-gensrc generates a
419  # header file used by jdk.jdwp.agent-libs. The jdk.jdwp.agent-gensrc is a
420  # virtual target.
421  jdk.jdwp.agent-libs: jdk.jdwp.agent-gensrc
422
423  # Until the module system is in place, jdk.jdi-gensrc needs to combine service
424  # loader configuration with jdk.hotspot.agent so is dependent on importing
425  # hotspot.
426  jdk.jdi-gensrc-jdk: import-hotspot
427
428  # The swing beans need to have java base properly generated to avoid errors
429  # in javadoc.
430  java.desktop-gensrc-jdk: java.base-gensrc
431
432  # Explicitly add dependencies for special targets
433  java.base-java: unpack-sec
434
435  # The copy target copies files generated by gensrc
436  java.base-copy-hotspot: java.base-gensrc-hotspot
437
438  jdk.jdeps-gendata: java rmic
439
440  zip-security: java.base-java java.security.jgss-java java.security.jgss-libs \
441      $(filter jdk.crypto%, $(JAVA_TARGETS))
442
443  zip-source: gensrc rmic
444
445  strip-binaries: libs launchers gendata copy
446
447  jrtfs-jar: buildtools-jdk
448
449  jimages: exploded-image zip-source strip-binaries source-tips demos samples \
450      jrtfs-jar
451
452  profiles: exploded-image strip-binaries source-tips
453
454  mac-bundles-jdk: jimages
455
456  bootcycle-images: jimages
457
458  docs-javadoc: gensrc rmic
459
460  docs-jvmtidoc: hotspot
461
462  test: jimages test-image
463
464  verify-modules: exploded-image
465
466  test-make: clean-test-make
467
468  build-test-hotspot-jtreg-native: buildtools-jdk
469
470  build-test-jdk-jtreg-native: buildtools-jdk
471
472  test-image-hotspot-jtreg-native: build-test-hotspot-jtreg-native
473
474  test-image-jdk-jtreg-native: build-test-jdk-jtreg-native
475
476  test-hotspot-internal: exploded-image
477
478endif
479
480################################################################################
481# Virtual targets without recipes
482
483buildtools: buildtools-langtools interim-langtools interim-rmic \
484    buildtools-jdk
485
486gensrc: $(GENSRC_TARGETS)
487
488gendata: $(GENDATA_TARGETS)
489
490copy: $(COPY_TARGETS)
491
492java: $(JAVA_TARGETS)
493
494rmic: $(RMIC_TARGETS)
495
496libs: $(LIBS_TARGETS)
497
498launchers: $(LAUNCHER_TARGETS)
499
500# Explicitly declare dependency for virtual target jdk.jdwp.agent-gensrc which
501# is actually handled by jdk.jdi-gensrc
502jdk.jdwp.agent-gensrc: jdk.jdi-gensrc
503
504# Declare dependencies from <module> to all the individual targets specific
505# to that module <module>-*.
506$(foreach m, $(GENSRC_MODULES), $(eval $m: $m-gensrc))
507$(foreach m, $(JAVA_MODULES), $(eval $m: $m-java))
508$(foreach m, $(GENDATA_MODULES), $(eval $m: $m-gendata))
509$(foreach m, $(RMIC_MODULES), $(eval $m: $m-rmic))
510$(foreach m, $(LIBS_MODULES), $(eval $m: $m-libs))
511$(foreach m, $(LAUNCHER_MODULES), $(eval $m: $m-launchers))
512$(foreach m, $(COPY_MODULES), $(eval $m: $m-copy))
513
514ALL_MODULE_TARGETS := $(sort $(GENSRC_MODULES) $(JAVA_MODULES) \
515    $(GENDATA_MODULES) $(LIBS_MODULES) $(LAUNCHER_MODULES) $(COPY_MODULES))
516
517demos: demos-jdk
518
519samples: samples-jdk
520
521# The "exploded image" is a locally runnable JDK in $(BUILD_OUTPUT)/jdk.
522exploded-image: $(ALL_MODULE_TARGETS)
523
524mac-bundles: mac-bundles-jdk
525
526# The $(BUILD_OUTPUT)/images directory contain the resulting deliverables,
527# and in line with this, our targets for creating these are named *-image[s].
528
529# This target builds the product images, e.g. the JRE and JDK image
530# (and possibly other, more specific versions)
531product-images: jimages demos samples zip-security verify-modules
532
533ifeq ($(OPENJDK_TARGET_OS), macosx)
534  product-images: mac-bundles
535endif
536
537# This target builds the documentation image
538docs-image: docs-javadoc docs-jvmtidoc
539
540# This target builds the test image
541test-image: prepare-test-image test-image-hotspot-jtreg-native \
542    test-image-jdk-jtreg-native
543
544# all-images is the top-most target, it builds all our deliverables ("images").
545all-images: product-images test-image docs-image
546
547ALL_TARGETS += buildtools gensrc gendata copy java rmic libs launchers \
548    jdk.jdwp.agent-gensrc $(ALL_MODULE_TARGETS) demos samples exploded-image \
549    mac-bundles product-images docs-image test-image all-images
550
551################################################################################
552
553# Traditional targets typically run by users.
554# These can be considered aliases for the targets now named by a more
555# "modern" naming scheme.
556default: exploded-image
557jdk: exploded-image
558images: product-images
559docs: docs-image
560all: all-images
561
562ALL_TARGETS += default jdk images docs all
563
564################################################################################
565################################################################################
566#
567# Clean targets
568#
569################################################################################
570# Clean targets are automatically run serially by the Makefile calling this
571# file.
572
573CLEAN_DIRS += hotspot jdk bootcycle-build test buildtools support \
574    images make-support test-make bundles
575CLEAN_DIR_TARGETS := $(addprefix clean-, $(CLEAN_DIRS))
576CLEAN_TESTS += hotspot-jtreg-native jdk-jtreg-native lib
577CLEAN_TEST_TARGETS += $(addprefix clean-test-, $(CLEAN_TESTS))
578CLEAN_PHASES := gensrc java native include docs
579CLEAN_PHASE_TARGETS := $(addprefix clean-, $(CLEAN_PHASES))
580CLEAN_MODULE_TARGETS := $(addprefix clean-, $(ALL_MODULES))
581# Construct targets of the form clean-$module-$phase
582CLEAN_MODULE_PHASE_TARGETS := $(addprefix clean-, $(foreach m, $(ALL_MODULES), \
583    $(addprefix $m-, $(CLEAN_PHASES))))
584
585# Remove everything, except the output from configure.
586clean: $(CLEAN_DIR_TARGETS)
587	($(CD) $(OUTPUT_ROOT) && $(RM) -r build*.log*)
588	$(ECHO) Cleaned all build artifacts.
589
590$(CLEAN_DIR_TARGETS):
591	$(call CleanDir,$(patsubst clean-%, %, $@))
592
593$(CLEAN_TEST_TARGETS):
594	$(call CleanTest,$(patsubst clean-test-%, %, $@))
595
596$(CLEAN_PHASE_TARGETS):
597	$(call Clean-$(patsubst clean-%,%, $@))
598
599$(CLEAN_MODULE_TARGETS):
600	$(call CleanModule,$(patsubst clean-%, %, $@))
601
602$(CLEAN_MODULE_PHASE_TARGETS):
603	$(call Clean-$(word 3, $(subst -,$(SPACE),$@)), \
604	    $(word 2, $(subst -,$(SPACE),$@)))
605
606# When removing the support dir, we must also remove jdk. Building classes has
607# the side effect of generating native headers. The headers end up in support
608# while classes and touch files end up in jdk.
609clean-support: clean-jdk
610
611# Remove everything, including configure configuration. If the output
612# directory was created by configure and now becomes empty, remove it as well.
613dist-clean: clean
614	($(CD) $(OUTPUT_ROOT) && \
615	    $(RM) -r *spec.gmk $(CONFIGURESUPPORT_OUTPUTDIR) Makefile compare.sh ide)
616	$(if $(filter $(CONF_NAME),$(notdir $(OUTPUT_ROOT))), \
617	  if test "x`$(LS) $(OUTPUT_ROOT)`" != x; then \
618	    $(ECHO) "Warning: Not removing non-empty configuration directory for '$(CONF_NAME)'" ; \
619	  else \
620	    ($(CD) $(SRC_ROOT) && $(ECHO) "Removing configuration directory for '$(CONF_NAME)'" \
621	        && $(RM) -r $(OUTPUT_ROOT)) \
622	  fi \
623	)
624	$(ECHO) Cleaned everything, you will have to re-run configure.
625
626ALL_TARGETS += clean dist-clean $(CLEAN_DIR_TARGETS) $(CLEAN_TEST_TARGETS) \
627    $(CLEAN_PHASE_TARGETS) $(CLEAN_MODULE_TARGETS) $(CLEAN_MODULE_PHASE_TARGETS)
628
629################################################################################
630# Declare *-only targets for each normal target
631$(foreach t, $(ALL_TARGETS), $(eval $(t)-only: $(t)))
632
633ALL_TARGETS += $(addsuffix -only, $(filter-out dist-clean clean%, $(ALL_TARGETS)))
634
635################################################################################
636
637# Include JPRT targets
638include $(SRC_ROOT)/make/Jprt.gmk
639
640################################################################################
641
642# The following targets are intentionally not added to ALL_TARGETS since they
643# are internal only, to support Init.gmk.
644
645print-targets:
646	  @$(ECHO) $(sort $(ALL_TARGETS))
647
648print-modules:
649	  @$(ECHO) $(sort $(ALL_MODULES))
650
651create-main-targets-include:
652	  @$(ECHO) $(LOG_INFO) Generating main target list
653	  @$(ECHO) ALL_MAIN_TARGETS := $(sort $(ALL_TARGETS)) > \
654	      $(MAKESUPPORT_OUTPUTDIR)/main-targets.gmk
655
656################################################################################
657
658.PHONY: $(ALL_TARGETS)
659
660FRC: # Force target
661