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