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