1 #
   2 # Copyright (c) 2011, 2017, 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
  32 default:
  33 
  34 ifeq ($(wildcard $(SPEC)),)
  35   $(error Main.gmk needs SPEC set to a proper spec.gmk)
  36 endif
  37 
  38 # Now load the spec
  39 include $(SPEC)
  40 
  41 include $(SRC_ROOT)/make/MainSupport.gmk
  42 
  43 # Load the vital tools for all the makefiles.
  44 include $(SRC_ROOT)/make/common/MakeBase.gmk
  45 include $(SRC_ROOT)/make/common/Modules.gmk
  46 include $(SRC_ROOT)/make/common/FindTests.gmk
  47 
  48 # Declare ALL_TARGETS as an immediate variable. This variable is a list of all
  49 # valid top level targets. It's used to declare them all as PHONY and to
  50 # generate the -only targets.
  51 ALL_TARGETS :=
  52 
  53 # Hook to include the corresponding custom file, if present.
  54 $(eval $(call IncludeCustomExtension, , Main.gmk))
  55 
  56 # All modules for the current target platform.
  57 ALL_MODULES := $(call FindAllModules)
  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 
  69 # When creating a BUILDJDK, the buildtools and interim targets have already
  70 # been built and should not be built again.
  71 ifneq ($(CREATING_BUILDJDK), true)
  72   buildtools-langtools:
  73         +($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Tools.gmk)
  74 
  75   interim-langtools:
  76         +($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterim.gmk)
  77 
  78   interim-rmic:
  79         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterimRmic.gmk)
  80 
  81   interim-cldrconverter:
  82         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CopyInterimCLDRConverter.gmk)
  83 
  84   buildtools-jdk:
  85         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileTools.gmk)
  86 
  87   buildtools-modules:
  88         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileModuleTools.gmk)
  89 
  90   buildtools-hotspot:
  91         +($(CD) $(HOTSPOT_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileTools.gmk)
  92 endif
  93 
  94 ALL_TARGETS += buildtools-langtools interim-langtools \
  95     interim-rmic interim-cldrconverter buildtools-jdk buildtools-modules \
  96     buildtools-hotspot
  97 
  98 ################################################################################
  99 # Special targets for certain modules
 100 
 101 unpack-sec:
 102         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f UnpackSecurity.gmk)
 103 
 104 generate-exported-symbols:
 105         +($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f BuildStatic.gmk)
 106 
 107 ALL_TARGETS += unpack-sec generate-exported-symbols
 108 
 109 ################################################################################
 110 # Gensrc targets, generating source before java compilation can be done
 111 #
 112 # When creating a BUILDJDK, the java targets have already been built and copied
 113 # into the buildjdk so no need to generate sources.
 114 ifneq ($(CREATING_BUILDJDK), true)
 115   $(eval $(call DeclareRecipesForPhase, GENSRC, \
 116       TARGET_SUFFIX := gensrc, \
 117       FILE_PREFIX := Gensrc, \
 118       MAKE_SUBDIR := gensrc, \
 119       CHECK_MODULES := $(ALL_MODULES), \
 120       MULTIPLE_MAKEFILES := true))
 121 
 122   JDK_GENSRC_TARGETS := $(filter %-gensrc-jdk, $(GENSRC_TARGETS))
 123   LANGTOOLS_GENSRC_TARGETS := $(filter %-gensrc-langtools, $(GENSRC_TARGETS))
 124   CORBA_GENSRC_TARGETS := $(filter %-gensrc-corba, $(GENSRC_TARGETS))
 125   HOTSPOT_GENSRC_TARGETS := $(filter %-gensrc-hotspot, $(GENSRC_TARGETS))
 126 
 127   GENSRC_MODULEINFO_MODULES := $(ALL_MODULES)
 128   GENSRC_MODULEINFO_TARGETS := $(addsuffix -gensrc-moduleinfo, \
 129       $(GENSRC_MODULEINFO_MODULES))
 130 
 131   GENSRC_MODULES := $(GENSRC_MODULEINFO_MODULES)
 132   GENSRC_TARGETS += $(sort $(GENSRC_MODULEINFO_TARGETS) \
 133       $(addsuffix -gensrc, $(GENSRC_MODULES)))
 134 
 135   define DeclareModuleInfoRecipe
 136     $1-gensrc-moduleinfo:
 137         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) \
 138             -f GensrcModuleInfo.gmk MODULE=$1)
 139 
 140     $1-gensrc: $1-gensrc-moduleinfo
 141   endef
 142 
 143   $(foreach m, $(GENSRC_MODULEINFO_MODULES), $(eval $(call DeclareModuleInfoRecipe,$m)))
 144 endif
 145 
 146 ALL_TARGETS += $(GENSRC_TARGETS)
 147 
 148 ################################################################################
 149 # Generate data targets
 150 $(eval $(call DeclareRecipesForPhase, GENDATA, \
 151     TARGET_SUFFIX := gendata, \
 152     FILE_PREFIX := Gendata, \
 153     MAKE_SUBDIR := gendata, \
 154     CHECK_MODULES := $(ALL_MODULES), \
 155     USE_WRAPPER := true))
 156 
 157 ALL_TARGETS += $(GENDATA_TARGETS)
 158 
 159 ################################################################################
 160 # Copy files targets
 161 $(eval $(call DeclareRecipesForPhase, COPY, \
 162     TARGET_SUFFIX := copy, \
 163     FILE_PREFIX := Copy, \
 164     MAKE_SUBDIR := copy, \
 165     CHECK_MODULES := $(ALL_MODULES), \
 166     USE_WRAPPER := true, \
 167     MULTIPLE_MAKEFILES := true))
 168 
 169 ALL_COPY_MODULES += $(COPY_MODULES)
 170 ALL_COPY_TARGETS += $(COPY_TARGETS)
 171 
 172 IMPORT_COPY_MODULES := $(call FindImportedModules)
 173 IMPORT_COPY_TARGETS := $(addsuffix -copy, $(IMPORT_COPY_MODULES))
 174 ALL_COPY_MODULES += $(IMPORT_COPY_MODULES)
 175 ALL_COPY_TARGETS += $(IMPORT_COPY_TARGETS)
 176 
 177 define DeclareImportCopyRecipe
 178   $1-copy:
 179         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) \
 180             -f CopyImportModules.gmk MODULE=$1)
 181 endef
 182 
 183 $(foreach m, $(IMPORT_COPY_MODULES), $(eval $(call DeclareImportCopyRecipe,$m)))
 184 
 185 ALL_TARGETS += $(ALL_COPY_TARGETS)
 186 
 187 ################################################################################
 188 # Targets for compiling all java modules. Nashorn is treated separately.
 189 JAVA_MODULES := $(ALL_MODULES)
 190 JAVA_TARGETS := $(addsuffix -java, $(JAVA_MODULES))
 191 
 192 define DeclareCompileJavaRecipe
 193   $1-java:
 194         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) \
 195             -f CompileJavaModules.gmk MODULE=$1)
 196 endef
 197 
 198 $(foreach m, $(filter-out jdk.scripting.nashorn, $(JAVA_MODULES)), \
 199     $(eval $(call DeclareCompileJavaRecipe,$m)))
 200 
 201 # Build nashorn. Needs to be compiled separately from the rest of the modules
 202 # due to nasgen.
 203 jdk.scripting.nashorn-java:
 204         +($(CD) $(NASHORN_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) \
 205             -f BuildNashorn.gmk compile)
 206 
 207 ALL_TARGETS += $(JAVA_TARGETS)
 208 
 209 ################################################################################
 210 # Targets for running rmic.
 211 $(eval $(call DeclareRecipesForPhase, RMIC, \
 212     TARGET_SUFFIX := rmic, \
 213     FILE_PREFIX := Rmic, \
 214     MAKE_SUBDIR := rmic, \
 215     CHECK_MODULES := $(ALL_MODULES)))
 216 
 217 ALL_TARGETS += $(RMIC_TARGETS)
 218 
 219 ################################################################################
 220 # Targets for compiling native libraries
 221 $(eval $(call DeclareRecipesForPhase, LIBS, \
 222     TARGET_SUFFIX := libs, \
 223     FILE_PREFIX := Lib, \
 224     MAKE_SUBDIR := lib, \
 225     CHECK_MODULES := $(ALL_MODULES), \
 226     USE_WRAPPER := true))
 227 
 228 ALL_TARGETS += $(LIBS_TARGETS)
 229 
 230 ################################################################################
 231 # Targets for compiling native executables
 232 $(eval $(call DeclareRecipesForPhase, LAUNCHER, \
 233     TARGET_SUFFIX := launchers, \
 234     FILE_PREFIX := Launcher, \
 235     MAKE_SUBDIR := launcher, \
 236     CHECK_MODULES := $(ALL_MODULES), \
 237     USE_WRAPPER := true))
 238 
 239 ALL_TARGETS += $(LAUNCHER_TARGETS)
 240 
 241 ################################################################################
 242 # Build hotspot target
 243 
 244 HOTSPOT_VARIANT_TARGETS := $(addprefix hotspot-, $(JVM_VARIANTS))
 245 HOTSPOT_VARIANT_GENSRC_TARGETS := $(addsuffix -gensrc, $(HOTSPOT_VARIANT_TARGETS))
 246 HOTSPOT_VARIANT_LIBS_TARGETS := $(addsuffix -libs, $(HOTSPOT_VARIANT_TARGETS))
 247 
 248 define DeclareHotspotGensrcRecipe
 249   hotspot-$1-gensrc:
 250         $$(call LogInfo, Building JVM variant '$1' with features '$(JVM_FEATURES_$1)')
 251         +($(CD) $(HOTSPOT_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f gensrc/GenerateSources.gmk \
 252             JVM_VARIANT=$1)
 253 endef
 254 
 255 $(foreach v, $(JVM_VARIANTS), $(eval $(call DeclareHotspotGensrcRecipe,$v)))
 256 
 257 define DeclareHotspotLibsRecipe
 258   hotspot-$1-libs:
 259         +($(CD) $(HOTSPOT_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f lib/CompileLibraries.gmk \
 260             JVM_VARIANT=$1)
 261 endef
 262 
 263 $(foreach v, $(JVM_VARIANTS), $(eval $(call DeclareHotspotLibsRecipe,$v)))
 264 
 265 hotspot-jsig:
 266         +($(CD) $(HOTSPOT_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f lib/CompileLibjsig.gmk)
 267 
 268 hotspot-ide-project:
 269         +($(CD) $(HOTSPOT_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f ide/CreateVSProject.gmk)
 270 
 271 ALL_TARGETS += $(HOTSPOT_VARIANT_TARGETS) $(HOTSPOT_VARIANT_GENSRC_TARGETS) \
 272     $(HOTSPOT_VARIANT_LIBS_TARGETS) hotspot-jsig hotspot-ide-project
 273 
 274 ################################################################################
 275 # Build demos and samples targets
 276 
 277 demos-jdk:
 278         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileDemos.gmk)
 279 
 280 samples-jdk:
 281         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CopySamples.gmk)
 282 
 283 ALL_TARGETS += demos-jdk samples-jdk
 284 
 285 ################################################################################
 286 # Jigsaw specific data and analysis targets.
 287 
 288 generate-summary:
 289         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f GenerateModuleSummary.gmk)
 290 
 291 ALL_TARGETS += generate-summary
 292 
 293 ################################################################################
 294 # Jmod targets
 295 
 296 JMOD_MODULES := $(ALL_MODULES)
 297 JMOD_TARGETS := $(addsuffix -jmod, $(JMOD_MODULES))
 298 
 299 define DeclareJmodRecipe
 300   $1-jmod:
 301         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CreateJmods.gmk \
 302             MODULE=$1)
 303 endef
 304 
 305 $(foreach m, $(JMOD_MODULES), $(eval $(call DeclareJmodRecipe,$m)))
 306 
 307 ALL_TARGETS += $(JMOD_TARGETS)
 308 
 309 ################################################################################
 310 # Images targets
 311 
 312 store-source-revision:
 313         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f SourceRevision.gmk store-source-revision)
 314 
 315 create-source-revision-tracker:
 316         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f SourceRevision.gmk create-source-revision-tracker)
 317 
 318 BOOTCYCLE_TARGET := product-images
 319 bootcycle-images:
 320         ifneq ($(COMPILE_TYPE), cross)
 321           $(call LogWarn, Boot cycle build step 2: Building a new JDK image using previously built image)
 322           +$(MAKE) $(MAKE_ARGS) -f $(SRC_ROOT)/make/Init.gmk PARALLEL_TARGETS=$(BOOTCYCLE_TARGET) \
 323               JOBS= SPEC=$(dir $(SPEC))bootcycle-spec.gmk main
 324         else
 325           $(call LogWarn, Boot cycle build disabled when cross compiling)
 326         endif
 327 
 328 zip-security:
 329         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSecurity.gmk)
 330 
 331 zip-source:
 332         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSource.gmk)
 333 
 334 jrtfs-jar:
 335         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f JrtfsJar.gmk)
 336 
 337 jdk-image:
 338         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk jdk)
 339 
 340 jre-image:
 341         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk jre)
 342 
 343 symbols-image:
 344         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk symbols)
 345 
 346 profiles-image:
 347         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk profiles)
 348 
 349 mac-bundles-jdk:
 350         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f MacBundles.gmk)
 351 
 352 release-file:
 353         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ReleaseFile.gmk)
 354 
 355 exploded-image-optimize:
 356         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ExplodedImageOptimize.gmk)
 357 
 358 ALL_TARGETS += store-source-revision create-source-revision-tracker bootcycle-images zip-security \
 359     zip-source jrtfs-jar jdk-image jre-image \
 360     symbols-image profiles-image mac-bundles-jdk \
 361     release-file exploded-image-optimize
 362 
 363 ################################################################################
 364 # Docs targets
 365 
 366 docs-module-graphs:
 367         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs-module-graphs)
 368 
 369 docs-javadoc:
 370         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs-javadoc)
 371 
 372 docs-copy:
 373         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs-copy)
 374 
 375 docs-zip:
 376         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs-zip)
 377 
 378 update-build-docs:
 379         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f UpdateBuildDocs.gmk)
 380 
 381 ALL_TARGETS += docs-module-graphs docs-javadoc docs-copy docs-zip update-build-docs
 382 
 383 ################################################################################
 384 # Cross compilation support
 385 
 386 ifeq ($(CREATING_BUILDJDK), true)
 387   # This target is only called by the recursive call below.
 388   create-buildjdk-interim-image-helper: interim-image jdk.jlink-launchers \
 389       java.base-copy jdk.jdeps-launchers
 390 endif
 391 
 392 create-buildjdk-copy:
 393         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CreateBuildJdkCopy.gmk)
 394 
 395 create-buildjdk-interim-image:
 396         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Main.gmk \
 397             $@-helper \
 398             SPEC=$(dir $(SPEC))buildjdk-spec.gmk \
 399             HOTSPOT_SPEC=$(dir $(SPEC))buildjdk-spec.gmk \
 400             CREATING_BUILDJDK=true)
 401 
 402 ALL_TARGETS += create-buildjdk-copy create-buildjdk-interim-image
 403 
 404 ################################################################################
 405 # The interim-image is a small jlinked image that is used to generate artifacts
 406 # at build time for use when linking the real images.
 407 
 408 INTERIM_JMOD_TARGETS := $(addsuffix -interim-jmod, $(INTERIM_IMAGE_MODULES))
 409 
 410 define DeclareInterimJmodRecipe
 411   $1-interim-jmod:
 412         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CreateJmods.gmk \
 413             MODULE=$1 \
 414             JMODS_DIR=$(INTERIM_JMODS_DIR) \
 415             JMODS_TEMPDIR=$(INTERIM_JMODS_DIR)/temp \
 416             INTERIM_JMOD=true \
 417         )
 418 endef
 419 
 420 $(foreach m, $(INTERIM_IMAGE_MODULES), $(eval $(call DeclareInterimJmodRecipe,$m)))
 421 
 422 interim-image:
 423         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f InterimImage.gmk)
 424 
 425 ifeq ($(ENABLE_GENERATE_CLASSLIST), true)
 426   generate-link-opt-data:
 427         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f GenerateLinkOptData.gmk)
 428 endif
 429 
 430 ALL_TARGETS += $(INTERIM_JMOD_TARGETS) interim-image generate-link-opt-data
 431 
 432 ################################################################################
 433 # Generate test names for all JTReg test groups
 434 #
 435 
 436 define DeclareRunTestRecipe
 437   run-test-$1:
 438         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f RunTests.gmk run-test TEST="$1")
 439 
 440 endef
 441 
 442 # ALL_NAMED_TESTS is defined in FindTests.gmk
 443 $(foreach t, $(ALL_NAMED_TESTS), $(eval $(call DeclareRunTestRecipe,$t)))
 444 ALL_TEST_TARGETS := $(addprefix run-test-, $(ALL_NAMED_TESTS))
 445 
 446 ALL_TARGETS += $(ALL_TEST_TARGETS)
 447 
 448 ################################################################################
 449 # Build tests
 450 #
 451 
 452 prepare-test-image:
 453         $(MKDIR) -p $(TEST_IMAGE_DIR)
 454         $(ECHO) > $(TEST_IMAGE_DIR)/Readme.txt 'JDK test image'
 455 
 456 build-test-hotspot-jtreg-native:
 457         +($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
 458             build-test-hotspot-jtreg-native)
 459 
 460 test-image-hotspot-jtreg-native:
 461         +($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
 462             test-image-hotspot-jtreg-native)
 463 
 464 build-test-jdk-jtreg-native:
 465         +($(CD) $(JDK_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
 466             build-test-jdk-jtreg-native)
 467 
 468 test-image-jdk-jtreg-native:
 469         +($(CD) $(JDK_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
 470             test-image-jdk-jtreg-native)
 471 
 472 run-test:
 473         +($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f RunTests.gmk run-test TEST="$(TEST)")
 474 
 475 ifeq ($(BUILD_GTEST), true)
 476   test-image-hotspot-gtest:
 477         +($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f GtestImage.gmk)
 478 endif
 479 
 480 build-test-lib:
 481         +($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f BuildTestLib.gmk)
 482 
 483 ifeq ($(BUILD_FAILURE_HANDLER), true)
 484   # Builds the failure handler jtreg extension
 485   build-test-failure-handler:
 486         +($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) \
 487             -f BuildFailureHandler.gmk build)
 488 
 489   # Runs the tests for the failure handler jtreg extension
 490   test-failure-handler:
 491         +($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) \
 492             -f BuildFailureHandler.gmk test)
 493 
 494   # Copies the failure handler jtreg extension into the test image
 495   test-image-failure-handler:
 496         +($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) \
 497              -f BuildFailureHandler.gmk images)
 498 endif
 499 
 500 ALL_TARGETS += prepare-test-image build-test-hotspot-jtreg-native \
 501     test-image-hotspot-jtreg-native build-test-jdk-jtreg-native \
 502     test-image-jdk-jtreg-native build-test-lib build-test-failure-handler \
 503     test-failure-handler test-image-failure-handler test-image-hotspot-gtest \
 504     run-test
 505 
 506 ################################################################################
 507 # Run tests
 508 
 509 # Run tests specified by $(TEST), or the default test set.
 510 test:
 511         $(call RunTests, $(TEST), $(JDK_IMAGE_DIR))
 512 
 513 test-hotspot-jtreg:
 514         $(call RunTests, "hotspot_all", $(JDK_IMAGE_DIR))
 515 
 516 test-hotspot-jtreg-native:
 517         $(call RunTests, "hotspot_native_sanity", $(JDK_IMAGE_DIR))
 518 
 519 test-hotspot-internal:
 520         $(call RunTests, "hotspot_internal", $(JDK_OUTPUTDIR))
 521 
 522 test-hotspot-gtest:
 523         $(call RunTests, "hotspot_gtest", $(JDK_OUTPUTDIR))
 524 
 525 test-jdk-jtreg-native:
 526         $(call RunTests, "jdk_native_sanity", $(JDK_IMAGE_DIR))
 527 
 528 test-make:
 529         ($(CD) $(SRC_ROOT)/test/make && $(MAKE) $(MAKE_ARGS) -f TestMake.gmk $(TEST_TARGET))
 530 
 531 ALL_TARGETS += test test-hotspot-jtreg test-hotspot-jtreg-native \
 532     test-hotspot-internal test-hotspot-gtest test-jdk-jtreg-native test-make
 533 
 534 ################################################################################
 535 # Bundles
 536 
 537 product-bundles:
 538         +($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Bundles.gmk product-bundles)
 539 
 540 profiles-bundles:
 541         +($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Bundles.gmk profiles-bundles)
 542 
 543 test-bundles:
 544         +($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Bundles.gmk test-bundles)
 545 
 546 docs-bundles:
 547         +($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Bundles.gmk docs-bundles)
 548 
 549 ALL_TARGETS += product-bundles profiles-bundles test-bundles docs-bundles
 550 
 551 ################################################################################
 552 # Install targets
 553 
 554 install:
 555         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Install.gmk)
 556 
 557 ALL_TARGETS += install
 558 
 559 ################################################################################
 560 #
 561 # Dependency declarations between targets.
 562 #
 563 # These are declared in two groups. First all dependencies between targets that
 564 # have recipes above as these dependencies may be disabled. Then the aggregator
 565 # targets that do not have recipes of their own, which will never have their
 566 # dependencies disabled.
 567 #
 568 ################################################################################
 569 # Targets with recipes above
 570 
 571 # If running an *-only target, parallel execution and dependencies between
 572 # recipe targets are disabled. This makes it possible to run a select set of
 573 # recipe targets in order. It's the responsibility of the user to make sure
 574 # all prerequisites are fulfilled.
 575 ifneq ($(findstring -only, $(MAKECMDGOALS)), )
 576   .NOTPARALLEL:
 577 else
 578   $(LANGTOOLS_GENSRC_TARGETS): buildtools-langtools
 579 
 580   interim-langtools: $(LANGTOOLS_GENSRC_TARGETS)
 581 
 582   buildtools-jdk: interim-langtools interim-cldrconverter
 583 
 584   buildtools-hotspot: interim-langtools
 585 
 586   buildtools-modules: exploded-image-base
 587 
 588   $(CORBA_GENSRC_TARGETS): interim-langtools
 589 
 590   $(HOTSPOT_GENSRC_TARGETS): interim-langtools buildtools-hotspot
 591 
 592   $(JDK_GENSRC_TARGETS): interim-langtools buildtools-jdk
 593 
 594   $(GENSRC_MODULEINFO_TARGETS): buildtools-jdk
 595 
 596   $(GENDATA_TARGETS): interim-langtools buildtools-jdk
 597 
 598   interim-rmic: interim-langtools
 599 
 600   $(RMIC_TARGETS): interim-langtools interim-rmic
 601 
 602   $(JAVA_TARGETS): interim-langtools
 603 
 604   # Declare dependencies between hotspot-<variant>* targets
 605   $(foreach v, $(JVM_VARIANTS), \
 606       $(eval hotspot-$v: hotspot-$v-gensrc hotspot-$v-libs) \
 607       $(eval hotspot-$v-libs: hotspot-$v-gensrc) \
 608   )
 609 
 610   hotspot-ide-project: hotspot exploded-image
 611 
 612   generate-exported-symbols: java.base-libs jdk.jdwp.agent-libs
 613 
 614   # Building one JVM variant is enough to start building the other libs
 615   $(LIBS_TARGETS): hotspot-$(JVM_VARIANT_MAIN)-libs
 616 
 617   $(LAUNCHER_TARGETS): java.base-libs
 618 
 619   ifeq ($(STATIC_BUILD), true)
 620     $(LAUNCHER_TARGETS): generate-exported-symbols
 621   endif
 622 
 623   # The demos are currently linking to libjvm and libjava, just like all other
 624   # jdk libs, even though they don't need to. To avoid warnings, make sure they
 625   # aren't built until after libjava and libjvm are available to link to.
 626   demos-jdk: java.base-libs exploded-image-optimize
 627 
 628   # Declare dependency from <module>-java to <module>-gensrc
 629   $(foreach m, $(GENSRC_MODULES), $(eval $m-java: $m-gensrc))
 630 
 631   # Declare dependencies between java modules
 632   $(foreach m, $(JAVA_MODULES), \
 633       $(eval $m-java: $(addsuffix -java, $(filter $(JAVA_MODULES), \
 634       $(call FindDepsForModule,$m)))))
 635 
 636   # Declare dependencies between <module>-rmic to <module>-java
 637   $(foreach m, $(RMIC_MODULES), $(eval $m-rmic: $m-java))
 638 
 639   # Declare dependencies from <module>-lib to <module>-java
 640   # Skip modules that do not have java source.
 641   # When creating a BUILDJDK, the java compilation has already been done by the
 642   # normal build and copied in.
 643   ifneq ($(CREATING_BUILDJDK), true)
 644     $(foreach m, $(filter $(JAVA_MODULES), $(LIBS_MODULES)), $(eval $m-libs: $m-java))
 645   endif
 646 
 647   # Declare dependencies from all other <module>-lib to java.base-lib
 648   $(foreach t, $(filter-out java.base-libs, $(LIBS_TARGETS)), \
 649       $(eval $t: java.base-libs))
 650 
 651   # jdk.accessibility depends on java.desktop
 652   jdk.accessibility-libs: java.desktop-libs
 653 
 654   # This dependency needs to be explicitly declared. jdk.jdi-gensrc generates a
 655   # header file used by jdk.jdwp.agent-libs. The jdk.jdwp.agent-gensrc is a
 656   # virtual target.
 657   jdk.jdwp.agent-libs: jdk.jdwp.agent-gensrc
 658 
 659   # The swing beans need to have java base properly generated to avoid errors
 660   # in javadoc.
 661   java.desktop-gensrc-jdk: java.base-gensrc
 662 
 663   # The annotation processing for jdk.internal.vm.ci and jdk.internal.vm.compiler
 664   # needs classes from the current JDK.
 665   jdk.internal.vm.ci-gensrc-hotspot: $(addsuffix -java, \
 666       $(call FindTransitiveDepsForModule, jdk.internal.vm.ci))
 667   jdk.internal.vm.compiler-gensrc-hotspot: $(addsuffix -java, \
 668       $(call FindTransitiveDepsForModule, jdk.internal.vm.compiler))
 669 
 670   # For jdk.internal.vm.compiler, the gensrc step is generating a module-info.java.extra
 671   # file to be processed by the gensrc-moduleinfo target.
 672   jdk.internal.vm.compiler-gensrc-moduleinfo: jdk.internal.vm.compiler-gensrc-hotspot
 673 
 674   # Explicitly add dependencies for special targets
 675   java.base-java: unpack-sec
 676 
 677   jdk.jdeps-gendata: java rmic
 678 
 679   # Declare dependencies between jmod targets.
 680   # java.base jmod needs jrt-fs.jar and access to the other jmods to be built.
 681   # When creating a BUILDJDK, we don't need to add hashes to java.base, thus
 682   # we don't need to depend on all other jmods
 683   ifneq ($(CREATING_BUILDJDK), true)
 684     java.base-jmod: jrtfs-jar $(filter-out java.base-jmod, $(JMOD_TARGETS))
 685   endif
 686 
 687   # Building java.base-jmod requires all of hotspot to be built.
 688   java.base-jmod: hotspot
 689 
 690   # Declare dependencies from <module>-jmod to all other module targets
 691   # When creating a BUILDJDK, the java compilation has already been done by the
 692   # normal build and copied in.
 693   ifneq ($(CREATING_BUILDJDK), true)
 694     $(foreach m, $(JAVA_MODULES), $(eval $m_JMOD_DEPS += $m-java))
 695   endif
 696   $(foreach m, $(GENDATA_MODULES), $(eval $m_JMOD_DEPS += $m-gendata))
 697   $(foreach m, $(RMIC_MODULES), $(eval $m_JMOD_DEPS += $m-rmic))
 698   $(foreach m, $(LIBS_MODULES), $(eval $m_JMOD_DEPS += $m-libs))
 699   $(foreach m, $(LAUNCHER_MODULES), $(eval $m_JMOD_DEPS += $m-launchers))
 700   $(foreach m, $(COPY_MODULES), $(eval $m_JMOD_DEPS += $m-copy))
 701   $(foreach m, $(ALL_MODULES), $(eval $m-jmod: $($(m)_JMOD_DEPS)))
 702   $(foreach m, $(INTERIM_IMAGE_MODULES), $(eval $m-interim-jmod: $($(m)_JMOD_DEPS)))
 703 
 704   # Jmods cannot be created until we have the jmod tool ready to run. During
 705   # a normal build we run it from the exploded image, but when cross compiling
 706   # it's run from the buildjdk, which is either created at build time or user
 707   # supplied.
 708   #
 709   # For the exploded image to be runnable, all java modules and
 710   # jdk.jlink-launchers need to be built. We also need to copy jvm.cfg (done
 711   # in java.base-copy) and tzdb.dat (done in java.base-gendata) to the
 712   # appropriate location otherwise jimage, jlink and jmod won't start. This
 713   # also applies when creating the buildjdk.
 714   DEFAULT_JMOD_DEPS := java.base-libs java.base-copy java.base-gendata \
 715       jdk.jlink-launchers
 716   # When cross compiling and buildjdk is to be created, depend on creating the
 717   # buildjdk instead of the default dependencies.
 718   ifeq ($(CREATE_BUILDJDK), true)
 719     # Avoid calling create-buildjdk from within a create-buildjdk call.
 720     ifneq ($(CREATING_BUILDJDK), true)
 721       $(JMOD_TARGETS): create-buildjdk
 722       buildtools-modules: create-buildjdk
 723     else
 724       # While actually creating the buildjdk, the default deps applies.
 725       $(JMOD_TARGETS) $(INTERIM_JMOD_TARGETS): $(DEFAULT_JMOD_DEPS)
 726     endif
 727   else
 728     # The normal non cross compilation case uses the default deps.
 729     # To avoid races with the optimize target, that also needs to happen first.
 730     $(JMOD_TARGETS) $(INTERIM_JMOD_TARGETS): $(DEFAULT_JMOD_DEPS) \
 731         exploded-image-optimize
 732   endif
 733 
 734   # All modules include the main license files from java.base.
 735   $(JMOD_TARGETS): java.base-copy
 736 
 737   zip-security: java.base-java java.security.jgss-java java.security.jgss-libs \
 738       $(filter jdk.crypto%, $(JAVA_TARGETS))
 739 
 740   zip-source: gensrc rmic
 741 
 742   jrtfs-jar: interim-langtools
 743 
 744   ifeq ($(ENABLE_GENERATE_CLASSLIST), true)
 745     ifeq ($(CREATE_BUILDJDK), true)
 746       # If creating a buildjdk, the interim image needs to be based on that.
 747       generate-link-opt-data: create-buildjdk
 748     else ifeq ($(EXTERNAL_BUILDJDK), false)
 749       # If an external buildjdk has been provided, we skip generating an
 750       # interim-image and just use the external buildjdk for generating
 751       # classlist.
 752       generate-link-opt-data: interim-image
 753     endif
 754     generate-link-opt-data: buildtools-jdk
 755 
 756     # The generated classlist needs to go into java.base-jmod.
 757     java.base-jmod jdk.jlink-jmod jdk-image jre-image: generate-link-opt-data
 758   endif
 759 
 760   release-file: create-source-revision-tracker
 761 
 762   jdk-image: jmods zip-source demos samples release-file
 763   jre-image: jmods release-file
 764   symbols-image: $(LIBS_TARGETS) $(LAUNCHER_TARGETS)
 765 
 766   profiles-image: jmods release-file
 767 
 768   mac-bundles-jdk: jdk-image jre-image
 769 
 770   # The optimize target can run as soon as the modules dir has been completely
 771   # populated (java, copy and gendata targets) and the basic libs and launchers
 772   # have been built.
 773   exploded-image-optimize: java copy gendata java.base-libs java.base-launchers \
 774       buildtools-modules
 775 
 776   bootcycle-images: jdk-image
 777 
 778   docs-module-graphs: exploded-image buildtools-modules 
 779 
 780   docs-javadoc: $(GENSRC_TARGETS) rmic
 781 
 782   # The gensrc step for jdk.jdi creates an html file that is used by docs-copy.
 783   docs-copy: hotspot-$(JVM_VARIANT_MAIN)-gensrc jdk.jdi-gensrc
 784 
 785   docs-zip: docs-javadoc docs-copy
 786 
 787   test: jdk-image test-image
 788 
 789   run-test: jdk-image test-image
 790 
 791   # Declare dependency for all generated test targets
 792   $(foreach t, $(ALL_TEST_TARGETS), $(eval $t: jdk-image test-image))
 793 
 794   create-buildjdk-copy: jdk.jlink-java java.base-gendata \
 795       $(addsuffix -java, $(INTERIM_IMAGE_MODULES))
 796 
 797   create-buildjdk-interim-image: create-buildjdk-copy
 798 
 799   interim-image: $(INTERIM_JMOD_TARGETS)
 800 
 801   test-make: clean-test-make
 802 
 803   build-test-lib: exploded-image-optimize
 804 
 805   build-test-failure-handler: interim-langtools
 806 
 807   test-failure-handler: build-test-failure-handler
 808 
 809   test-image-failure-handler: build-test-failure-handler
 810 
 811   build-test-hotspot-jtreg-native: buildtools-jdk \
 812       hotspot-$(JVM_VARIANT_MAIN)-libs
 813 
 814   build-test-jdk-jtreg-native: buildtools-jdk
 815 
 816   test-image-hotspot-jtreg-native: build-test-hotspot-jtreg-native
 817 
 818   test-image-jdk-jtreg-native: build-test-jdk-jtreg-native
 819 
 820   test-image-hotspot-gtest: hotspot
 821 
 822   test-hotspot-internal: exploded-image
 823 
 824   test-hotspot-jtreg: jdk-image test-image
 825 
 826   test-hotspot-gtest: exploded-image test-image-hotspot-gtest
 827 
 828   install: product-images
 829 
 830   product-bundles: product-images
 831 
 832   profiles-bundles: profiles-images
 833 
 834   test-bundles: test-image
 835 
 836   docs-bundles: docs-image
 837 
 838   generate-summary: jmods buildtools-modules
 839 
 840 endif
 841 
 842 ################################################################################
 843 # Virtual targets without recipes
 844 
 845 buildtools: buildtools-langtools interim-langtools interim-rmic \
 846     buildtools-jdk buildtools-hotspot
 847 
 848 hotspot: $(HOTSPOT_VARIANT_TARGETS) hotspot-jsig
 849 
 850 hotspot-libs: hotspot-jsig
 851 
 852 # Create targets hotspot-libs and hotspot-gensrc.
 853 $(foreach v, $(JVM_VARIANTS), \
 854   $(eval hotspot-libs: hotspot-$v-libs) \
 855   $(eval hotspot-gensrc: hotspot-$v-gensrc) \
 856 )
 857 
 858 gensrc: $(GENSRC_TARGETS)
 859 
 860 gendata: $(GENDATA_TARGETS)
 861 
 862 copy: $(ALL_COPY_TARGETS)
 863 
 864 java: $(JAVA_TARGETS)
 865 
 866 rmic: $(RMIC_TARGETS)
 867 
 868 libs: $(LIBS_TARGETS)
 869 
 870 launchers: $(LAUNCHER_TARGETS)
 871 
 872 jmods: $(JMOD_TARGETS)
 873 
 874 # Explicitly declare dependency for virtual target jdk.jdwp.agent-gensrc which
 875 # is actually handled by jdk.jdi-gensrc
 876 jdk.jdwp.agent-gensrc: jdk.jdi-gensrc
 877 
 878 # Declare dependencies from <module> to all the individual targets specific
 879 # to that module <module>-*, that are needed for the exploded image.
 880 $(foreach m, $(GENSRC_MODULES), $(eval $m: $m-gensrc))
 881 $(foreach m, $(JAVA_MODULES), $(eval $m: $m-java))
 882 $(foreach m, $(GENDATA_MODULES), $(eval $m: $m-gendata))
 883 $(foreach m, $(RMIC_MODULES), $(eval $m: $m-rmic))
 884 $(foreach m, $(LIBS_MODULES), $(eval $m: $m-libs))
 885 $(foreach m, $(LAUNCHER_MODULES), $(eval $m: $m-launchers))
 886 $(foreach m, $(ALL_COPY_MODULES), $(eval $m: $m-copy))
 887 
 888 # Building java.base includes building all of hotspot.
 889 java.base: hotspot
 890 
 891 demos: demos-jdk
 892 
 893 samples: samples-jdk
 894 
 895 # The "exploded image" is a locally runnable JDK in $(BUILD_OUTPUT)/jdk.
 896 exploded-image-base: $(ALL_MODULES)
 897 exploded-image: exploded-image-base release-file
 898 # When cross compiling, no need to optimize the exploded image since it won't
 899 # be runnable on the host platform anyway.
 900 ifneq ($(COMPILE_TYPE), cross)
 901   exploded-image: exploded-image-optimize
 902 endif
 903 
 904 create-buildjdk: create-buildjdk-copy create-buildjdk-interim-image
 905 
 906 mac-bundles: mac-bundles-jdk
 907 
 908 # The $(BUILD_OUTPUT)/images directory contain the resulting deliverables,
 909 # and in line with this, our targets for creating these are named *-image[s].
 910 
 911 # This target builds the product images, e.g. the JRE and JDK image
 912 # (and possibly other, more specific versions)
 913 product-images: jdk-image jre-image symbols-image exploded-image
 914 
 915 # zip-security is actually a bundle, but for now it needs to be considered
 916 # an image until this can be cleaned up properly.
 917 product-images: zip-security
 918 
 919 # Declare these for backwards compatiblity and convenience.
 920 profiles profiles-images: profiles-image
 921 
 922 # The module summary cannot be run when:
 923 # * Cross compiling and building a partial BUILDJDK for the build host
 924 # * An external buildjdk has been supplied since it may not match the
 925 #   module selection of the target jdk
 926 ifneq ($(CREATE_BUILDJDK), true)
 927   ifeq ($(EXTERNAL_BUILDJDK), false)
 928     product-images: generate-summary
 929   endif
 930 endif
 931 
 932 ifeq ($(OPENJDK_TARGET_OS), macosx)
 933   product-images: mac-bundles
 934 endif
 935 
 936 # This target builds the documentation image
 937 docs-image: docs-module-graphs docs-javadoc docs-copy
 938 
 939 # This target builds the test image
 940 test-image: prepare-test-image test-image-hotspot-jtreg-native \
 941     test-image-jdk-jtreg-native test-image-failure-handler test-image-hotspot-gtest
 942 
 943 # all-images builds all our deliverables as images.
 944 all-images: product-images test-image docs-image
 945 
 946 # all-bundles packages all our deliverables as tar.gz bundles.
 947 all-bundles: product-bundles test-bundles docs-bundles
 948 
 949 ALL_TARGETS += buildtools hotspot hotspot-libs hotspot-gensrc gensrc gendata \
 950     copy java rmic libs launchers jmods \
 951     jdk.jdwp.agent-gensrc $(ALL_MODULES) demos samples \
 952     exploded-image-base exploded-image \
 953     create-buildjdk mac-bundles product-images \
 954     profiles profiles-images \
 955     docs-image test-image all-images \
 956     all-bundles
 957 
 958 ################################################################################
 959 
 960 # Traditional targets typically run by users.
 961 # These can be considered aliases for the targets now named by a more
 962 # "modern" naming scheme.
 963 default: $(DEFAULT_MAKE_TARGET)
 964 jdk: exploded-image
 965 images: product-images
 966 docs: docs-image
 967 bundles: all-bundles
 968 all: all-images
 969 
 970 ALL_TARGETS += default jdk images docs bundles all
 971 
 972 ################################################################################
 973 ################################################################################
 974 #
 975 # Clean targets
 976 #
 977 ################################################################################
 978 # Clean targets are automatically run serially by the Makefile calling this
 979 # file.
 980 
 981 CLEAN_DIRS += hotspot jdk bootcycle-build test buildtools support \
 982     images make-support test-make bundles buildjdk
 983 CLEAN_DIR_TARGETS := $(addprefix clean-, $(CLEAN_DIRS))
 984 CLEAN_SUPPORT_DIRS += demos
 985 CLEAN_SUPPORT_DIR_TARGETS := $(addprefix clean-, $(CLEAN_SUPPORT_DIRS))
 986 CLEAN_TESTS += hotspot-jtreg-native jdk-jtreg-native lib
 987 CLEAN_TEST_TARGETS += $(addprefix clean-test-, $(CLEAN_TESTS))
 988 CLEAN_PHASES := gensrc java native include
 989 CLEAN_PHASE_TARGETS := $(addprefix clean-, $(CLEAN_PHASES))
 990 CLEAN_MODULE_TARGETS := $(addprefix clean-, $(ALL_MODULES))
 991 # Construct targets of the form clean-$module-$phase
 992 CLEAN_MODULE_PHASE_TARGETS := $(addprefix clean-, $(foreach m, $(ALL_MODULES), \
 993     $(addprefix $m-, $(CLEAN_PHASES))))
 994 
 995 # Remove everything, except the output from configure.
 996 clean: $(CLEAN_DIR_TARGETS)
 997         ($(CD) $(OUTPUT_ROOT) && $(RM) -r build*.log*)
 998         $(ECHO) Cleaned all build artifacts.
 999 
1000 clean-docs:
1001         $(call CleanDocs)
1002 
1003 $(CLEAN_DIR_TARGETS):
1004         $(call CleanDir,$(patsubst clean-%, %, $@))
1005 
1006 $(CLEAN_SUPPORT_DIR_TARGETS):
1007         $(call CleanSupportDir,$(patsubst clean-%, %, $@))
1008 
1009 $(CLEAN_TEST_TARGETS):
1010         $(call CleanTest,$(patsubst clean-test-%, %, $@))
1011 
1012 $(CLEAN_PHASE_TARGETS):
1013         $(call Clean-$(patsubst clean-%,%, $@))
1014 
1015 $(CLEAN_MODULE_TARGETS):
1016         $(call CleanModule,$(patsubst clean-%, %, $@))
1017 
1018 $(CLEAN_MODULE_PHASE_TARGETS):
1019         $(call Clean-$(word 3, $(subst -,$(SPACE),$@)), \
1020             $(word 2, $(subst -,$(SPACE),$@)))
1021 
1022 # When removing the support dir, we must also remove jdk. Building classes has
1023 # the side effect of generating native headers. The headers end up in support
1024 # while classes and touch files end up in jdk.
1025 clean-support: clean-jdk
1026 
1027 # Remove everything, including configure configuration. If the output
1028 # directory was created by configure and now becomes empty, remove it as well.
1029 dist-clean: clean
1030         ($(CD) $(OUTPUT_ROOT) && \
1031             $(RM) -r *spec.gmk $(CONFIGURESUPPORT_OUTPUTDIR) Makefile compare.sh ide)
1032         $(if $(filter $(CONF_NAME),$(notdir $(OUTPUT_ROOT))), \
1033           if test "x`$(LS) $(OUTPUT_ROOT)`" != x; then \
1034             $(ECHO) "Warning: Not removing non-empty configuration directory for '$(CONF_NAME)'" ; \
1035           else \
1036             ($(CD) $(SRC_ROOT) && $(ECHO) "Removing configuration directory for '$(CONF_NAME)'" \
1037                 && $(RM) -r $(OUTPUT_ROOT)) \
1038           fi \
1039         )
1040         $(ECHO) Cleaned everything, you will have to re-run configure.
1041 
1042 ALL_TARGETS += clean clean-docs dist-clean $(CLEAN_DIR_TARGETS) $(CLEAN_SUPPORT_DIR_TARGETS) \
1043     $(CLEAN_TEST_TARGETS) $(CLEAN_PHASE_TARGETS) $(CLEAN_MODULE_TARGETS) \
1044     $(CLEAN_MODULE_PHASE_TARGETS)
1045 
1046 ################################################################################
1047 # Declare *-only targets for each normal target
1048 $(foreach t, $(ALL_TARGETS), $(eval $(t)-only: $(t)))
1049 
1050 ALL_TARGETS += $(addsuffix -only, $(filter-out dist-clean clean%, $(ALL_TARGETS)))
1051 
1052 ################################################################################
1053 
1054 # Include JPRT targets
1055 include $(SRC_ROOT)/make/Jprt.gmk
1056 
1057 ################################################################################
1058 
1059 # The following targets are intentionally not added to ALL_TARGETS since they
1060 # are internal only, to support Init.gmk.
1061 
1062 print-targets:
1063           @$(ECHO) $(sort $(ALL_TARGETS))
1064 
1065 print-modules:
1066           @$(ECHO) $(sort $(ALL_MODULES))
1067 
1068 print-tests:
1069           @$(ECHO) $(sort $(ALL_NAMED_TESTS))
1070 
1071 create-main-targets-include:
1072           $(call LogInfo, Generating main target list)
1073           @$(ECHO) ALL_MAIN_TARGETS := $(sort $(ALL_TARGETS)) > \
1074               $(MAKESUPPORT_OUTPUTDIR)/main-targets.gmk
1075 
1076 ################################################################################
1077 
1078 .PHONY: $(ALL_TARGETS)
1079 
1080 FRC: # Force target