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