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   test-$1:
 477         +($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f RunTests.gmk run-test TEST="$1")
 478 
 479   exploded-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 test-, $(ALL_NAMED_TESTS))
 488 
 489 # We only support the "exploded-test-gtest" shortcut
 490 ALL_EXPLODED_TESTS := gtest
 491 ALL_EXPLODED_TEST_TARGETS := $(addprefix exploded-test-, $(ALL_EXPLODED_TESTS))
 492 
 493 ALL_TARGETS += $(ALL_TEST_TARGETS) $(ALL_EXPLODED_TEST_TARGETS)
 494 
 495 ################################################################################
 496 # Build tests and microbenchmarks
 497 #
 498 
 499 prepare-test-image:
 500         +($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f TestImage.gmk prepare-test-image)
 501 
 502 build-test-hotspot-jtreg-native:
 503         +($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNativeHotspot.gmk \
 504             build-test-hotspot-jtreg-native)
 505 
 506 test-image-hotspot-jtreg-native:
 507         +($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNativeHotspot.gmk \
 508             test-image-hotspot-jtreg-native)
 509 
 510 build-test-jdk-jtreg-native:
 511         +($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNativeJdk.gmk \
 512             build-test-jdk-jtreg-native)
 513 
 514 test-image-jdk-jtreg-native:
 515         +($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNativeJdk.gmk \
 516             test-image-jdk-jtreg-native)
 517 
 518 build-test-hotspot-jtreg-graal:
 519         +($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregGraalUnit.gmk \
 520              build-test-hotspot-jtreg-graal)
 521 
 522 test-image-hotspot-jtreg-graal:
 523         +($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregGraalUnit.gmk \
 524              test-image-hotspot-jtreg-graal)
 525 
 526 ifeq ($(BUILD_GTEST), true)
 527   test-image-hotspot-gtest:
 528         +($(CD) $(TOPDIR)/make/hotspot/test && $(MAKE) $(MAKE_ARGS) -f GtestImage.gmk)
 529 endif
 530 
 531 build-test-lib:
 532         +($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f BuildTestLib.gmk)
 533 
 534 ifeq ($(BUILD_FAILURE_HANDLER), true)
 535   # Builds the failure handler jtreg extension
 536   build-test-failure-handler:
 537         +($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) \
 538             -f BuildFailureHandler.gmk build)
 539 
 540   # Copies the failure handler jtreg extension into the test image
 541   test-image-failure-handler:
 542         +($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) \
 543              -f BuildFailureHandler.gmk images)
 544 endif
 545 
 546 build-microbenchmark:
 547         +($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f test/BuildMicrobenchmark.gmk)
 548 
 549 ALL_TARGETS += prepare-test-image build-test-hotspot-jtreg-native \
 550     test-image-hotspot-jtreg-native build-test-jdk-jtreg-native \
 551     test-image-jdk-jtreg-native build-test-lib build-test-failure-handler \
 552     test-failure-handler test-image-failure-handler test-image-hotspot-gtest \
 553     test-image-hotspot-jtreg-graal build-test-hotspot-jtreg-graal \
 554     build-microbenchmark
 555 
 556 ################################################################################
 557 # Run tests
 558 
 559 test:
 560         +($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f RunTests.gmk run-test TEST="$(TEST)")
 561 
 562 exploded-test:
 563         +($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f RunTests.gmk run-test \
 564             TEST="$(TEST)" JDK_IMAGE_DIR=$(JDK_OUTPUTDIR))
 565 
 566 ALL_TARGETS += test exploded-test
 567 
 568 ################################################################################
 569 # Bundles
 570 
 571 product-bundles:
 572         +($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Bundles.gmk product-bundles)
 573 
 574 test-bundles:
 575         +($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Bundles.gmk test-bundles)
 576 
 577 docs-bundles:
 578         +($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Bundles.gmk docs-bundles)
 579 
 580 ALL_TARGETS += product-bundles test-bundles docs-bundles
 581 
 582 ################################################################################
 583 # Install targets
 584 
 585 install:
 586         +($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Install.gmk)
 587 
 588 ALL_TARGETS += install
 589 
 590 ################################################################################
 591 #
 592 # Dependency declarations between targets.
 593 #
 594 # These are declared in two groups. First all dependencies between targets that
 595 # have recipes above as these dependencies may be disabled. Then the aggregator
 596 # targets that do not have recipes of their own, which will never have their
 597 # dependencies disabled.
 598 #
 599 ################################################################################
 600 # Targets with recipes above
 601 
 602 # If running an *-only target, parallel execution and dependencies between
 603 # recipe targets are disabled. This makes it possible to run a select set of
 604 # recipe targets in order. It's the responsibility of the user to make sure
 605 # all prerequisites are fulfilled.
 606 ifneq ($(findstring -only, $(MAKECMDGOALS)), )
 607   .NOTPARALLEL:
 608 else
 609   $(LANGTOOLS_GENSRC_TARGETS): buildtools-langtools
 610 
 611   interim-langtools: $(INTERIM_LANGTOOLS_GENSRC_TARGETS)
 612 
 613   buildtools-jdk: interim-langtools interim-cldrconverter
 614 
 615   buildtools-hotspot: interim-langtools
 616 
 617   buildtools-modules: exploded-image-base
 618 
 619   $(HOTSPOT_GENSRC_TARGETS): interim-langtools buildtools-hotspot
 620 
 621   $(JDK_GENSRC_TARGETS): interim-langtools buildtools-jdk
 622 
 623   $(GENSRC_MODULEINFO_TARGETS): buildtools-jdk
 624 
 625   $(GENDATA_TARGETS): interim-langtools buildtools-jdk
 626 
 627   interim-rmic: interim-langtools
 628 
 629   $(RMIC_TARGETS): interim-langtools interim-rmic
 630 
 631   $(JAVA_TARGETS): interim-langtools
 632 
 633   # Declare dependencies between hotspot-<variant>* targets
 634   $(foreach v, $(JVM_VARIANTS), \
 635       $(eval hotspot-$v: hotspot-$v-gensrc hotspot-$v-libs) \
 636       $(eval hotspot-$v-libs: hotspot-$v-gensrc java.base-copy) \
 637   )
 638 
 639   hotspot-ide-project: hotspot exploded-image
 640 
 641   generate-exported-symbols: java.base-libs jdk.jdwp.agent-libs
 642 
 643   # If not already set, set the JVM variant target so that the JVM will be built.
 644   JVM_MAIN_LIB_TARGETS ?= hotspot-$(JVM_VARIANT_MAIN)-libs
 645 
 646   # Building one JVM variant is enough to start building the other libs
 647   $(LIBS_TARGETS): $(JVM_MAIN_LIB_TARGETS)
 648 
 649   $(LAUNCHER_TARGETS): java.base-libs
 650 
 651   ifeq ($(STATIC_BUILD), true)
 652     $(LAUNCHER_TARGETS): generate-exported-symbols
 653   endif
 654 
 655   # The demos are currently linking to libjvm and libjava, just like all other
 656   # jdk libs, even though they don't need to. To avoid warnings, make sure they
 657   # aren't built until after libjava and libjvm are available to link to.
 658   demos-jdk: java.base-libs exploded-image-optimize
 659   test-image-demos-jdk: demos-jdk
 660 
 661   # Declare dependency from <module>-java to <module>-gensrc
 662   $(foreach m, $(GENSRC_MODULES), $(eval $m-java: $m-gensrc))
 663 
 664   # Declare dependencies between java modules
 665   $(foreach m, $(JAVA_MODULES), \
 666       $(eval $m-java: $(addsuffix -java, $(filter $(JAVA_MODULES), \
 667       $(call FindDepsForModule,$m)))))
 668 
 669   # Declare dependencies between <module>-rmic to <module>-java
 670   $(foreach m, $(RMIC_MODULES), $(eval $m-rmic: $m-java))
 671 
 672   # Declare dependencies from <module>-lib to <module>-java
 673   # Skip modules that do not have java source.
 674   # When creating a BUILDJDK, the java compilation has already been done by the
 675   # normal build and copied in.
 676   ifneq ($(CREATING_BUILDJDK), true)
 677     $(foreach m, $(filter $(JAVA_MODULES), $(LIBS_MODULES)), $(eval $m-libs: $m-java))
 678   endif
 679 
 680   # Declare dependencies from all other <module>-lib to java.base-lib
 681   $(foreach t, $(filter-out java.base-libs, $(LIBS_TARGETS)), \
 682       $(eval $t: java.base-libs))
 683 
 684   # jdk.accessibility depends on java.desktop
 685   jdk.accessibility-libs: java.desktop-libs
 686 
 687   # This dependency needs to be explicitly declared. jdk.jdi-gensrc generates a
 688   # header file used by jdk.jdwp.agent-libs. The jdk.jdwp.agent-gensrc is a
 689   # virtual target.
 690   jdk.jdwp.agent-libs: jdk.jdwp.agent-gensrc
 691 
 692   # The swing beans need to have java base properly generated to avoid errors
 693   # in javadoc. The X11 wrappers need the java.base include files to have been
 694   # copied and processed.
 695   java.desktop-gensrc-src: java.base-gensrc java.base-copy
 696 
 697   # The annotation processing for jdk.internal.vm.compiler
 698   # and jdk.internal.vm.compiler.management needs classes from the current JDK.
 699   jdk.internal.vm.compiler-gensrc-src: $(addsuffix -java, \
 700       $(call FindTransitiveDepsForModule, jdk.internal.vm.compiler))
 701   jdk.internal.vm.compiler.management-gensrc-src: $(addsuffix -java, \
 702       $(call FindTransitiveDepsForModule, jdk.internal.vm.compiler.management))
 703 
 704   # For these modules, the gensrc step is generating a module-info.java.extra
 705   # file to be processed by the gensrc-moduleinfo target.
 706   jdk.internal.vm.compiler-gensrc-moduleinfo: jdk.internal.vm.compiler-gensrc-src
 707   jdk.internal.vm.compiler.management-gensrc-moduleinfo: jdk.internal.vm.compiler.management-gensrc-src
 708 
 709   jdk.jdeps-gendata: java rmic
 710 
 711   # The ct.sym generation uses all the moduleinfos as input
 712   jdk.compiler-gendata: $(GENSRC_MODULEINFO_TARGETS)
 713 
 714   # Declare dependencies between jmod targets.
 715   # java.base jmod needs jrt-fs.jar and access to the other jmods to be built.
 716   # When creating a BUILDJDK, we don't need to add hashes to java.base, thus
 717   # we don't need to depend on all other jmods
 718   ifneq ($(CREATING_BUILDJDK), true)
 719     java.base-jmod: jrtfs-jar $(filter-out java.base-jmod, $(JMOD_TARGETS))
 720   endif
 721 
 722   # If not already set, set the JVM target so that the JVM will be built.
 723   JVM_MAIN_TARGETS ?= hotspot
 724 
 725   # Building java.base-jmod requires all of VM (ie hotspot) to be built.
 726   java.base-jmod: $(JVM_MAIN_TARGETS)
 727 
 728   # Declare dependencies from <module>-jmod to all other module targets
 729   # When creating a BUILDJDK, the java compilation has already been done by the
 730   # normal build and copied in.
 731   ifneq ($(CREATING_BUILDJDK), true)
 732     $(foreach m, $(JAVA_MODULES), $(eval $m_JMOD_DEPS += $m-java))
 733   endif
 734   $(foreach m, $(GENDATA_MODULES), $(eval $m_JMOD_DEPS += $m-gendata))
 735   $(foreach m, $(RMIC_MODULES), $(eval $m_JMOD_DEPS += $m-rmic))
 736   $(foreach m, $(LIBS_MODULES), $(eval $m_JMOD_DEPS += $m-libs))
 737   $(foreach m, $(LAUNCHER_MODULES), $(eval $m_JMOD_DEPS += $m-launchers))
 738   $(foreach m, $(COPY_MODULES), $(eval $m_JMOD_DEPS += $m-copy))
 739   $(foreach m, $(ALL_MODULES), $(eval $m-jmod: $($(m)_JMOD_DEPS)))
 740   $(foreach m, $(INTERIM_IMAGE_MODULES), $(eval $m-interim-jmod: $($(m)_JMOD_DEPS)))
 741 
 742   # Setup the minimal set of generated native source dependencies for hotspot
 743   $(foreach v, $(JVM_VARIANTS), \
 744     $(eval hotspot-$v-libs-compile-commands: hotspot-$v-gensrc) \
 745     $(foreach m, $(filter java.desktop jdk.hotspot.agent, $(GENSRC_MODULES)), \
 746       $(eval hotspot-$v-libs-compile-commands: $m-gensrc)) \
 747   )
 748 
 749   # For the full JDK compile commands, create all possible generated sources
 750   $(foreach m, $(GENSRC_MODULES), $(eval $m-libs-compile-commands: $m-gensrc))
 751   $(foreach m, $(filter $(JAVA_MODULES), $(LIBS_MODULES)), $(eval $m-libs-compile-commands: $m-java))
 752 
 753   compile-commands-hotspot: $(COMPILE_COMMANDS_TARGETS_HOTSPOT)
 754   compile-commands: $(COMPILE_COMMANDS_TARGETS_HOTSPOT) $(COMPILE_COMMANDS_TARGETS_JDK)
 755 
 756   # Jmods cannot be created until we have the jmod tool ready to run. During
 757   # a normal build we run it from the exploded image, but when cross compiling
 758   # it's run from the buildjdk, which is either created at build time or user
 759   # supplied.
 760   #
 761   # For the exploded image to be runnable, all java modules and
 762   # jdk.jlink-launchers need to be built. We also need to copy jvm.cfg (done
 763   # in java.base-copy) and tzdb.dat (done in java.base-gendata) to the
 764   # appropriate location otherwise jimage, jlink and jmod won't start. This
 765   # also applies when creating the buildjdk.
 766   DEFAULT_JMOD_DEPS += java.base-libs java.base-copy java.base-gendata \
 767       jdk.jlink-launchers
 768   # When cross compiling and buildjdk is to be created, depend on creating the
 769   # buildjdk instead of the default dependencies.
 770   ifeq ($(CREATE_BUILDJDK), true)
 771     # Avoid calling create-buildjdk from within a create-buildjdk call.
 772     ifneq ($(CREATING_BUILDJDK), true)
 773       $(JMOD_TARGETS): create-buildjdk
 774       buildtools-modules: create-buildjdk
 775     else
 776       # While actually creating the buildjdk, the default deps applies.
 777       $(JMOD_TARGETS) $(INTERIM_JMOD_TARGETS): $(DEFAULT_JMOD_DEPS)
 778     endif
 779   else
 780     # The normal non cross compilation case uses the default deps.
 781     # To avoid races with the optimize target, that also needs to happen first.
 782     $(JMOD_TARGETS) $(INTERIM_JMOD_TARGETS): $(DEFAULT_JMOD_DEPS) \
 783         exploded-image-optimize
 784   endif
 785 
 786   # All modules include the main license files from java.base.
 787   $(JMOD_TARGETS): java.base-copy
 788 
 789   zip-security: java.base-java java.security.jgss-java java.security.jgss-libs \
 790       $(filter jdk.crypto%, $(JAVA_TARGETS))
 791 
 792   zip-source: gensrc rmic
 793 
 794   jrtfs-jar: interim-langtools
 795 
 796   build-microbenchmark: interim-langtools exploded-image
 797 
 798   ifeq ($(ENABLE_GENERATE_CLASSLIST), true)
 799     ifeq ($(CREATE_BUILDJDK), true)
 800       # If creating a buildjdk, the interim image needs to be based on that.
 801       generate-link-opt-data: create-buildjdk
 802     else ifeq ($(EXTERNAL_BUILDJDK), false)
 803       # If an external buildjdk has been provided, we skip generating an
 804       # interim-image and just use the external buildjdk for generating
 805       # classlist.
 806       generate-link-opt-data: interim-image
 807     endif
 808     generate-link-opt-data: buildtools-jdk
 809 
 810     # The generated classlist needs to go into java.base-jmod.
 811     java.base-jmod jdk.jlink-jmod jdk-image legacy-jre-image: generate-link-opt-data
 812   endif
 813 
 814   release-file: create-source-revision-tracker
 815 
 816   jdk-image: jmods zip-source demos release-file
 817   legacy-jre-image: jmods release-file
 818   symbols-image: $(LIBS_TARGETS) $(LAUNCHER_TARGETS)
 819 
 820   mac-jdk-bundle: jdk-image
 821   mac-legacy-jre-bundle: legacy-jre-image
 822 
 823   # The optimize target can run as soon as the modules dir has been completely
 824   # populated (java, copy and gendata targets) and the basic libs and launchers
 825   # have been built.
 826   exploded-image-optimize: java copy gendata java.base-libs java.base-launchers \
 827       buildtools-modules
 828 
 829   bootcycle-images: jdk-image
 830 
 831   docs-jdk-api-javadoc: $(GENSRC_TARGETS) rmic
 832 
 833   docs-javase-api-javadoc: $(GENSRC_TARGETS) rmic
 834 
 835   docs-reference-api-javadoc: $(GENSRC_TARGETS) rmic
 836 
 837   docs-jdk-api-modulegraph: exploded-image buildtools-modules
 838 
 839   docs-javase-api-modulegraph: exploded-image buildtools-modules
 840 
 841   docs-reference-api-modulegraph: exploded-image buildtools-modules
 842 
 843   # If not already set, then set the JVM specific docs targets
 844   JVM_DOCS_TARGETS ?= hotspot-$(JVM_VARIANT_MAIN)-gensrc
 845 
 846   # The gensrc steps for hotspot and jdk.jdi create html spec files.
 847   docs-jdk-specs: $(JVM_DOCS_TARGETS) jdk.jdi-gensrc \
 848       docs-jdk-index
 849 
 850   docs-jdk-index: exploded-image buildtools-modules
 851 
 852   docs-zip: docs-jdk
 853 
 854   # Tests
 855   test: jdk-image test-image
 856 
 857   exploded-test: exploded-image test-image
 858 
 859   test-make: clean-test-make compile-commands
 860 
 861   test-make-compile-commands: compile-commands
 862 
 863   # Declare dependency for all generated test targets
 864   $(foreach t, $(filter-out test-make%, $(ALL_TEST_TARGETS)), $(eval $t: jdk-image test-image))
 865   $(foreach t, $(ALL_EXPLODED_TEST_TARGETS), $(eval $t: exploded-image test-image))
 866 
 867   create-buildjdk-copy: jdk.jlink-java java.base-gendata \
 868       $(addsuffix -java, $(INTERIM_IMAGE_MODULES))
 869 
 870   create-buildjdk-interim-image: create-buildjdk-copy
 871 
 872   interim-image: $(INTERIM_JMOD_TARGETS)
 873 
 874   build-test-lib: exploded-image-optimize
 875 
 876   build-test-failure-handler: interim-langtools
 877 
 878   test-image-failure-handler: build-test-failure-handler
 879 
 880   build-test-hotspot-jtreg-native: buildtools-jdk \
 881       hotspot-$(JVM_VARIANT_MAIN)-libs
 882 
 883   build-test-jdk-jtreg-native: buildtools-jdk java.base-libs
 884 
 885   build-test-hotspot-jtreg-graal: exploded-image-optimize
 886 
 887   test-image-hotspot-jtreg-native: build-test-hotspot-jtreg-native
 888 
 889   test-image-jdk-jtreg-native: build-test-jdk-jtreg-native
 890 
 891   test-image-hotspot-jtreg-graal: build-test-hotspot-jtreg-graal
 892 
 893   test-image-hotspot-gtest: hotspot
 894 
 895   install: product-images
 896 
 897   product-bundles: product-images
 898 
 899   test-bundles: test-image
 900 
 901   docs-bundles: docs-image
 902 
 903   generate-summary: jmods buildtools-modules
 904 
 905   update-x11wrappers: java.base-copy buildtools-jdk
 906 
 907 endif
 908 
 909 ################################################################################
 910 # Virtual targets without recipes
 911 
 912 # If not already set, set the JVM specific tools targets
 913 JVM_TOOLS_TARGETS ?= buildtools-hotspot
 914 buildtools: buildtools-langtools interim-langtools interim-rmic \
 915     buildtools-jdk $(JVM_TOOLS_TARGETS)
 916 
 917 hotspot: $(HOTSPOT_VARIANT_TARGETS)
 918 
 919 # Create targets hotspot-libs and hotspot-gensrc.
 920 $(foreach v, $(JVM_VARIANTS), \
 921   $(eval hotspot-libs: hotspot-$v-libs) \
 922   $(eval hotspot-gensrc: hotspot-$v-gensrc) \
 923 )
 924 
 925 gensrc: $(GENSRC_TARGETS)
 926 
 927 gendata: $(GENDATA_TARGETS)
 928 
 929 copy: $(ALL_COPY_TARGETS)
 930 
 931 java: $(JAVA_TARGETS)
 932 
 933 rmic: $(RMIC_TARGETS)
 934 
 935 libs: $(LIBS_TARGETS)
 936 
 937 launchers: $(LAUNCHER_TARGETS)
 938 
 939 jmods: $(JMOD_TARGETS)
 940 
 941 # Explicitly declare dependency for virtual target jdk.jdwp.agent-gensrc which
 942 # is actually handled by jdk.jdi-gensrc
 943 jdk.jdwp.agent-gensrc: jdk.jdi-gensrc
 944 
 945 # Declare dependencies from <module> to all the individual targets specific
 946 # to that module <module>-*, that are needed for the exploded image.
 947 $(foreach m, $(GENSRC_MODULES), $(eval $m: $m-gensrc))
 948 $(foreach m, $(JAVA_MODULES), $(eval $m: $m-java))
 949 $(foreach m, $(GENDATA_MODULES), $(eval $m: $m-gendata))
 950 $(foreach m, $(RMIC_MODULES), $(eval $m: $m-rmic))
 951 $(foreach m, $(LIBS_MODULES), $(eval $m: $m-libs))
 952 $(foreach m, $(LAUNCHER_MODULES), $(eval $m: $m-launchers))
 953 $(foreach m, $(ALL_COPY_MODULES), $(eval $m: $m-copy))
 954 
 955 # Building java.base includes building all of hotspot.
 956 java.base: $(JVM_MAIN_TARGETS)
 957 
 958 demos: demos-jdk
 959 
 960 # The "exploded image" is a locally runnable JDK in $(OUTPUTDIR)/jdk.
 961 exploded-image-base: $(ALL_MODULES)
 962 exploded-image: exploded-image-base release-file
 963 # When cross compiling, no need to optimize the exploded image since it won't
 964 # be runnable on the host platform anyway.
 965 ifneq ($(COMPILE_TYPE), cross)
 966   exploded-image: exploded-image-optimize
 967 endif
 968 
 969 create-buildjdk: create-buildjdk-copy create-buildjdk-interim-image
 970 
 971 docs-jdk-api: docs-jdk-api-javadoc
 972 docs-javase-api: docs-javase-api-javadoc
 973 docs-reference-api: docs-reference-api-javadoc
 974 
 975 # If we're building full docs, we must also generate the module graphs to
 976 # get non-broken api documentation.
 977 ifeq ($(ENABLE_FULL_DOCS), true)
 978   docs-jdk-api: docs-jdk-api-modulegraph
 979   docs-javase-api: docs-javase-api-modulegraph
 980   docs-reference-api: docs-reference-api-modulegraph
 981 endif
 982 
 983 docs-jdk: docs-jdk-api docs-jdk-specs docs-jdk-index
 984 docs-javase: docs-javase-api
 985 docs-reference: docs-reference-api
 986 
 987 # alias for backwards compatibility
 988 docs-javadoc: docs-jdk-api
 989 
 990 mac-bundles: mac-jdk-bundle
 991 
 992 # The $(OUTPUTDIR)/images directory contain the resulting deliverables,
 993 # and in line with this, our targets for creating these are named *-image[s].
 994 
 995 # This target builds the product images, e.g. the JDK image
 996 # (and possibly other, more specific versions)
 997 product-images: jdk-image symbols-image exploded-image
 998 
 999 # zip-security is actually a bundle, but for now it needs to be considered
1000 # an image until this can be cleaned up properly.
1001 product-images: zip-security
1002 
1003 # The module summary cannot be run when:
1004 # * Cross compiling and building a partial BUILDJDK for the build host
1005 # * An external buildjdk has been supplied since it may not match the
1006 #   module selection of the target jdk
1007 ifneq ($(CREATE_BUILDJDK), true)
1008   ifeq ($(EXTERNAL_BUILDJDK), false)
1009     product-images: generate-summary
1010   endif
1011 endif
1012 
1013 ifeq ($(OPENJDK_TARGET_OS), macosx)
1014   product-images: mac-jdk-bundle
1015 endif
1016 
1017 # This target builds the documentation image
1018 docs-image: docs-jdk
1019 
1020 # If not already set, set the JVM specific targets to build the test image
1021 JVM_TEST_IMAGE_TARGETS ?= test-image-hotspot-jtreg-native test-image-hotspot-gtest
1022 
1023 ifeq ($(INCLUDE_GRAAL), true)
1024   JVM_TEST_IMAGE_TARGETS += test-image-hotspot-jtreg-graal
1025 endif
1026 
1027 # This target builds the test image
1028 test-image: prepare-test-image \
1029     test-image-jdk-jtreg-native test-image-failure-handler \
1030     test-image-demos-jdk $(JVM_TEST_IMAGE_TARGETS)
1031 
1032 ifneq ($(JMH_CORE_JAR), )
1033   test-image: build-microbenchmark
1034 endif
1035 
1036 ################################################################################
1037 
1038 # all-images builds all our deliverables as images.
1039 all-images: product-images test-image docs-image
1040 
1041 # all-bundles packages all our deliverables as tar.gz bundles.
1042 all-bundles: product-bundles test-bundles docs-bundles
1043 
1044 ALL_TARGETS += buildtools hotspot hotspot-libs hotspot-gensrc gensrc gendata \
1045     copy java rmic libs launchers jmods \
1046     jdk.jdwp.agent-gensrc $(ALL_MODULES) demos \
1047     exploded-image-base exploded-image \
1048     create-buildjdk docs-jdk-api docs-javase-api docs-reference-api docs-jdk \
1049     docs-javase docs-reference docs-javadoc mac-bundles product-images \
1050     docs-image test-image all-images \
1051     all-bundles
1052 
1053 ################################################################################
1054 
1055 # Traditional targets typically run by users.
1056 # These can be considered aliases for the targets now named by a more
1057 # "modern" naming scheme.
1058 default: $(DEFAULT_MAKE_TARGET)
1059 jdk: exploded-image
1060 images: product-images
1061 docs: docs-image
1062 bundles: all-bundles
1063 all: all-images
1064 
1065 ALL_TARGETS += default jdk images docs bundles all
1066 
1067 # Aliases used for running tests.
1068 
1069 # Let "run-test" be an alias for "test"
1070 $(foreach t, $(ALL_NAMED_TESTS), $(eval run-test-$t: test-$t))
1071 RUN_TEST_TARGETS := $(addprefix run-test-, $(ALL_NAMED_TESTS))
1072 
1073 run-test: test
1074 exploded-run-test: exploded-test
1075 
1076 # "make check" is a common idiom for running basic testing
1077 check: test-tier1
1078 
1079 # Keep some old names as aliases
1080 test-hotspot-jtreg: test-hotspot_all
1081 test-hotspot-jtreg-native: test-hotspot_native_sanity
1082 test-hotspot-gtest: exploded-test-gtest
1083 test-jdk-jtreg-native: test-jdk_native_sanity
1084 
1085 ALL_TARGETS += $(RUN_TEST_TARGETS) run-test exploded-run-test check \
1086     test-hotspot-jtreg test-hotspot-jtreg-native test-hotspot-gtest \
1087     test-jdk-jtreg-native
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