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