1 #
   2 # Copyright (c) 2011, 2015, 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 # Explicitly generate module deps makefile data
  46 include $(SRC_ROOT)/make/GenerateModuleDeps.gmk
  47 include $(SRC_ROOT)/make/common/Modules.gmk
  48 
  49 # Declare ALL_TARGETS as an immediate variable. This variable is a list of all
  50 # valid top level targets. It's used to declare them all as PHONY and to
  51 # generate the -only targets.
  52 ALL_TARGETS :=
  53 
  54 # Hook to include the corresponding custom file, if present.
  55 $(eval $(call IncludeCustomExtension, , Main.gmk))
  56 
  57 # All modules for the current target platform.
  58 ALL_MODULES := $(call FindAllModules)
  59 
  60 ################################################################################
  61 ################################################################################
  62 #
  63 # Recipes for all targets. Only recipes, dependencies are declared later.
  64 #
  65 ################################################################################
  66 
  67 ################################################################################
  68 # Interim/build tools targets, compiling tools used during the build
  69 
  70 buildtools-langtools:
  71         +($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Tools.gmk)
  72 
  73 interim-langtools:
  74         +($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterim.gmk)
  75 
  76 interim-rmic:
  77         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterimRmic.gmk)
  78 
  79 interim-cldrconverter:
  80         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CopyInterimCLDRConverter.gmk)
  81 
  82 buildtools-jdk:
  83         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileTools.gmk)
  84 
  85 ALL_TARGETS += buildtools-langtools interim-langtools \
  86     interim-rmic interim-cldrconverter buildtools-jdk
  87 
  88 ################################################################################
  89 # Special targets for certain modules
  90 
  91 import-hotspot:
  92         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Import.gmk)
  93 
  94 unpack-sec:
  95         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f UnpackSecurity.gmk)
  96 
  97 generate-exported-symbols:
  98         +($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f BuildStatic.gmk)
  99 
 100 ALL_TARGETS += import-hotspot unpack-sec generate-exported-symbols
 101 
 102 ################################################################################
 103 # Gensrc targets, generating source before java compilation can be done
 104 $(eval $(call DeclareRecipesForPhase, GENSRC, \
 105     TARGET_SUFFIX := gensrc, \
 106     FILE_PREFIX := Gensrc, \
 107     MAKE_SUBDIR := gensrc, \
 108     CHECK_MODULES := $(ALL_MODULES), \
 109     MULTIPLE_MAKEFILES := true))
 110 
 111 JDK_GENSRC_TARGETS := $(filter %-gensrc-jdk, $(GENSRC_TARGETS))
 112 LANGTOOLS_GENSRC_TARGETS := $(filter %-gensrc-langtools, $(GENSRC_TARGETS))
 113 CORBA_GENSRC_TARGETS := $(filter %-gensrc-corba, $(GENSRC_TARGETS))
 114 HOTSPOT_GENSRC_TARGETS := $(filter %-gensrc-hotspot, $(GENSRC_TARGETS))
 115 
 116 ALL_TARGETS += $(GENSRC_TARGETS)
 117 
 118 ################################################################################
 119 # Generate data targets
 120 $(eval $(call DeclareRecipesForPhase, GENDATA, \
 121     TARGET_SUFFIX := gendata, \
 122     FILE_PREFIX := Gendata, \
 123     MAKE_SUBDIR := gendata, \
 124     CHECK_MODULES := $(ALL_MODULES), \
 125     USE_WRAPPER := true))
 126 
 127 ALL_TARGETS += $(GENDATA_TARGETS)
 128 
 129 ################################################################################
 130 # Copy files targets
 131 $(eval $(call DeclareRecipesForPhase, COPY, \
 132     TARGET_SUFFIX := copy, \
 133     FILE_PREFIX := Copy, \
 134     MAKE_SUBDIR := copy, \
 135     CHECK_MODULES := $(ALL_MODULES), \
 136     USE_WRAPPER := true, \
 137     MULTIPLE_MAKEFILES := true))
 138 
 139 ALL_TARGETS += $(COPY_TARGETS)
 140 
 141 ################################################################################
 142 # Targets for compiling all java modules. Nashorn is treated separately.
 143 JAVA_MODULES := $(call FindJavaModules)
 144 JAVA_TARGETS := $(addsuffix -java, $(JAVA_MODULES))
 145 
 146 define DeclareCompileJavaRecipe
 147   $1-java:
 148         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) \
 149             -f CompileJavaModules.gmk MODULE=$1)
 150 endef
 151 
 152 $(foreach m, $(filter-out jdk.scripting.nashorn, $(JAVA_MODULES)), \
 153     $(eval $(call DeclareCompileJavaRecipe,$m)))
 154 
 155 # Build nashorn. Needs to be compiled separately from the rest of the modules
 156 # due to nasgen.
 157 jdk.scripting.nashorn-java:
 158         +($(CD) $(NASHORN_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) \
 159             -f BuildNashorn.gmk compile)
 160 
 161 ALL_TARGETS += $(JAVA_TARGETS)
 162 
 163 ################################################################################
 164 # Targets for running rmic.
 165 $(eval $(call DeclareRecipesForPhase, RMIC, \
 166     TARGET_SUFFIX := rmic, \
 167     FILE_PREFIX := Rmic, \
 168     MAKE_SUBDIR := rmic, \
 169     CHECK_MODULES := $(ALL_MODULES)))
 170 
 171 ALL_TARGETS += $(RMIC_TARGETS)
 172 
 173 ################################################################################
 174 # Targets for compiling native libraries
 175 $(eval $(call DeclareRecipesForPhase, LIBS, \
 176     TARGET_SUFFIX := libs, \
 177     FILE_PREFIX := Lib, \
 178     MAKE_SUBDIR := lib, \
 179     CHECK_MODULES := $(ALL_MODULES), \
 180     USE_WRAPPER := true))
 181 
 182 ALL_TARGETS += $(LIBS_TARGETS)
 183 
 184 ################################################################################
 185 # Targets for compiling native executables
 186 $(eval $(call DeclareRecipesForPhase, LAUNCHER, \
 187     TARGET_SUFFIX := launchers, \
 188     FILE_PREFIX := Launcher, \
 189     MAKE_SUBDIR := launcher, \
 190     CHECK_MODULES := $(ALL_MODULES), \
 191     USE_WRAPPER := true))
 192 
 193 ALL_TARGETS += $(LAUNCHER_TARGETS)
 194 
 195 ################################################################################
 196 # Build hotspot target
 197 
 198 ifeq ($(BUILD_HOTSPOT),true)
 199   hotspot:
 200         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f HotspotWrapper.gmk)
 201 endif
 202 
 203 ALL_TARGETS += hotspot
 204 
 205 ################################################################################
 206 # Build demos and samples targets
 207 
 208 demos-jdk:
 209         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileDemos.gmk)
 210 
 211 samples-jdk:
 212         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CopySamples.gmk)
 213 
 214 ALL_TARGETS += demos-jdk samples-jdk
 215 
 216 ################################################################################
 217 # Image targets
 218 
 219 # Stores the tips for each repository. This file is be used when constructing the jdk image and can be
 220 # used to track the exact sources used to build that image.
 221 source-tips: $(SUPPORT_OUTPUTDIR)/source_tips
 222 $(SUPPORT_OUTPUTDIR)/source_tips: FRC
 223         $(call MakeDir, $(@D))
 224         @$(RM) $@
 225         @$(call GetSourceTips)
 226 
 227 BOOTCYCLE_TARGET := product-images
 228 bootcycle-images:
 229         @$(ECHO) Boot cycle build step 2: Building a new JDK image using previously built image
 230         +$(MAKE) -f $(SRC_ROOT)/make/Init.gmk PARALLEL_TARGETS=$(BOOTCYCLE_TARGET) \
 231             JOBS= SPEC=$(dir $(SPEC))bootcycle-spec.gmk main
 232 
 233 zip-security:
 234         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSecurity.gmk)
 235 
 236 zip-source:
 237         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSource.gmk)
 238 
 239 strip-binaries:
 240         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f StripBinaries.gmk)
 241 
 242 jrtfs-jar:
 243         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f JrtfsJar.gmk)
 244 
 245 jimages:
 246         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk jimages)
 247 
 248 profiles:
 249         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk profiles)
 250 
 251 mac-bundles-jdk:
 252         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f MacBundles.gmk)
 253 
 254 ALL_TARGETS += source-tips bootcycle-images zip-security zip-source strip-binaries \
 255     jrtfs-jar jimages profiles mac-bundles-jdk
 256 
 257 ################################################################################
 258 # Docs targets
 259 
 260 docs-javadoc:
 261         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs)
 262 
 263 docs-jvmtidoc:
 264         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk jvmtidocs)
 265 
 266 ALL_TARGETS += docs-javadoc docs-jvmtidoc
 267 
 268 ################################################################################
 269 # Build tests
 270 #
 271 
 272 prepare-test-image:
 273         $(MKDIR) -p $(TEST_IMAGE_DIR)
 274         $(ECHO) > $(TEST_IMAGE_DIR)/Readme.txt 'JDK test image'
 275 
 276 build-test-hotspot-jtreg-native:
 277         +($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
 278             build-test-hotspot-jtreg-native)
 279 
 280 test-image-hotspot-jtreg-native:
 281         +($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
 282             test-image-hotspot-jtreg-native)
 283 
 284 build-test-jdk-jtreg-native:
 285         +($(CD) $(JDK_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
 286             build-test-jdk-jtreg-native)
 287 
 288 test-image-jdk-jtreg-native:
 289         +($(CD) $(JDK_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
 290             test-image-jdk-jtreg-native)
 291 
 292 build-test-lib:
 293         +($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f BuildTestLib.gmk)
 294 
 295 ALL_TARGETS += prepare-test-image build-test-hotspot-jtreg-native \
 296     test-image-hotspot-jtreg-native build-test-jdk-jtreg-native \
 297     test-image-jdk-jtreg-native build-test-lib
 298 
 299 ################################################################################
 300 # Run tests
 301 
 302 # Run tests specified by $(TEST), or the default test set.
 303 test:
 304         $(call RunTests, $(TEST))
 305 
 306 test-hotspot-jtreg:
 307         $(call RunTests, "hotspot_all")
 308 
 309 test-hotspot-jtreg-native:
 310         $(call RunTests, "hotspot_native_sanity")
 311 
 312 test-hotspot-internal:
 313         $(call RunTests, "hotspot_internal")
 314 
 315 test-jdk-jtreg-native:
 316         $(call RunTests, "jdk_native_sanity")
 317 
 318 test-make:
 319         ($(CD) $(SRC_ROOT)/test/make && $(MAKE) $(MAKE_ARGS) -f TestMake.gmk $(TEST_TARGET))
 320 
 321 ALL_TARGETS += test test-hotspot-jtreg test-hotspot-jtreg-native \
 322     test-hotspot-internal test-jdk-jtreg-native test-make
 323 
 324 ################################################################################
 325 # Verification targets
 326 
 327 verify-modules:
 328         @$(call TargetEnter)
 329         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CheckModules.gmk)
 330         @$(call TargetExit)
 331 
 332 ALL_TARGETS += verify-modules
 333 
 334 ################################################################################
 335 # Install targets
 336 
 337 install:
 338         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Install.gmk)
 339 
 340 ALL_TARGETS += install
 341 
 342 ################################################################################
 343 #
 344 # Dependency declarations between targets.
 345 #
 346 # These are declared in two groups. First all dependencies between targets that
 347 # have recipes above as these dependencies may be disabled. Then the aggregator
 348 # targets that do not have recipes of their own, which will never have their
 349 # dependencies disabled.
 350 #
 351 ################################################################################
 352 # Targets with recipes above
 353 
 354 # If running an *-only target, parallel execution and dependencies between
 355 # recipe targets are disabled. This makes it possible to run a select set of
 356 # recipe targets in order. It's the responsibility of the user to make sure
 357 # all prerequisites are fulfilled.
 358 ifneq ($(findstring -only, $(MAKECMDGOALS)), )
 359   .NOTPARALLEL:
 360 else
 361   $(LANGTOOLS_GENSRC_TARGETS): buildtools-langtools
 362 
 363   interim-langtools: $(LANGTOOLS_GENSRC_TARGETS)
 364 
 365   buildtools-jdk: interim-langtools interim-cldrconverter
 366 
 367   $(CORBA_GENSRC_TARGETS): interim-langtools
 368 
 369   $(HOTSPOT_GENSRC_TARGETS): interim-langtools
 370 
 371   $(JDK_GENSRC_TARGETS): interim-langtools buildtools-jdk
 372 
 373   $(GENDATA_TARGETS): interim-langtools buildtools-jdk
 374 
 375   interim-rmic: interim-langtools
 376 
 377   $(RMIC_TARGETS): interim-langtools interim-rmic
 378 
 379   $(JAVA_TARGETS): interim-langtools
 380 
 381   import-hotspot: hotspot
 382 
 383   generate-exported-symbols: java.base-libs jdk.jdwp.agent-libs
 384 
 385   $(LIBS_TARGETS): import-hotspot
 386 
 387   $(LAUNCHER_TARGETS): java.base-libs
 388 
 389   ifeq ($(STATIC_BUILD), true)
 390     $(LAUNCHER_TARGETS): generate-exported-symbols
 391   endif
 392 
 393   # The demos are currently linking to libjvm and libjava, just like all other
 394   # jdk libs, even though they don't need to. To avoid warnings, make sure they
 395   # aren't built until after libjava and libjvm are available to link to.
 396   demos-jdk: $(JAVA_TARGETS)
 397 
 398   # Declare dependency from <module>-java to <module>-gensrc
 399   $(foreach m, $(GENSRC_MODULES), $(eval $m-java: $m-gensrc))
 400 
 401   # Declare dependencies between java modules
 402   $(foreach m, $(JAVA_MODULES), \
 403       $(eval $m-java: $(addsuffix -java, $(filter $(JAVA_MODULES), \
 404       $(call FindDepsForModule,$m)))))
 405 
 406   # Declare dependencies between <module>-rmic to <module>-java
 407   $(foreach m, $(RMIC_MODULES), $(eval $m-rmic: $m-java))
 408 
 409   # Declare dependencies from <module>-lib to <module>-java
 410   # Skip modules that do not have java source.
 411   $(foreach m, $(filter $(JAVA_MODULES), $(LIBS_MODULES)), $(eval $m-libs: $m-java))
 412 
 413   # Declare dependencies from all other <module>-lib to java.base-lib
 414   $(foreach t, $(filter-out java.base-libs, $(LIBS_TARGETS)), \
 415       $(eval $t: java.base-libs))
 416 
 417   # jdk.accessibility depends on java.desktop
 418   jdk.accessibility-libs: java.desktop-libs
 419 
 420   # This dependency needs to be explicitly declared. jdk.jdi-gensrc generates a
 421   # header file used by jdk.jdwp.agent-libs. The jdk.jdwp.agent-gensrc is a
 422   # virtual target.
 423   jdk.jdwp.agent-libs: jdk.jdwp.agent-gensrc
 424 
 425   # The swing beans need to have java base properly generated to avoid errors
 426   # in javadoc.
 427   java.desktop-gensrc-jdk: java.base-gensrc
 428 
 429   # The annotation processing for jdk.vm.ci needs java.base classes from the
 430   # current JDK.
 431   jdk.vm.ci-gensrc-hotspot: java.base-java 
 432 
 433   # Explicitly add dependencies for special targets
 434   java.base-java: unpack-sec
 435 
 436   # The copy target copies files generated by gensrc
 437   java.base-copy-hotspot: java.base-gensrc-hotspot
 438 
 439   jdk.jdeps-gendata: java rmic
 440 
 441   zip-security: java.base-java java.security.jgss-java java.security.jgss-libs \
 442       $(filter jdk.crypto%, $(JAVA_TARGETS))
 443 
 444   zip-source: gensrc rmic
 445 
 446   strip-binaries: libs launchers gendata copy
 447 
 448   jrtfs-jar: buildtools-jdk
 449 
 450   jimages: exploded-image zip-source strip-binaries source-tips demos samples \
 451       jrtfs-jar
 452 
 453   profiles: exploded-image strip-binaries source-tips
 454 
 455   mac-bundles-jdk: jimages
 456 
 457   bootcycle-images: jimages
 458 
 459   docs-javadoc: gensrc rmic
 460 
 461   docs-jvmtidoc: hotspot
 462 
 463   test: jimages test-image
 464 
 465   verify-modules: exploded-image
 466 
 467   test-make: clean-test-make
 468 
 469   build-test-lib: java
 470 
 471   build-test-hotspot-jtreg-native: buildtools-jdk
 472 
 473   build-test-jdk-jtreg-native: buildtools-jdk
 474 
 475   test-image-hotspot-jtreg-native: build-test-hotspot-jtreg-native
 476 
 477   test-image-jdk-jtreg-native: build-test-jdk-jtreg-native
 478 
 479   test-hotspot-internal: exploded-image
 480 
 481   test-hotspot-jtreg: jimages test-image
 482 
 483   install: product-images
 484 
 485 endif
 486 
 487 ################################################################################
 488 # Virtual targets without recipes
 489 
 490 buildtools: buildtools-langtools interim-langtools interim-rmic \
 491     buildtools-jdk
 492 
 493 gensrc: $(GENSRC_TARGETS)
 494 
 495 gendata: $(GENDATA_TARGETS)
 496 
 497 copy: $(COPY_TARGETS)
 498 
 499 java: $(JAVA_TARGETS)
 500 
 501 rmic: $(RMIC_TARGETS)
 502 
 503 libs: $(LIBS_TARGETS)
 504 
 505 launchers: $(LAUNCHER_TARGETS)
 506 
 507 # Explicitly declare dependency for virtual target jdk.jdwp.agent-gensrc which
 508 # is actually handled by jdk.jdi-gensrc
 509 jdk.jdwp.agent-gensrc: jdk.jdi-gensrc
 510 
 511 # Declare dependencies from <module> to all the individual targets specific
 512 # to that module <module>-*, that are needed for the exploded image.
 513 $(foreach m, $(GENSRC_MODULES), $(eval $m: $m-gensrc))
 514 $(foreach m, $(JAVA_MODULES), $(eval $m: $m-java))
 515 $(foreach m, $(GENDATA_MODULES), $(eval $m: $m-gendata))
 516 $(foreach m, $(RMIC_MODULES), $(eval $m: $m-rmic))
 517 $(foreach m, $(LIBS_MODULES), $(eval $m: $m-libs))
 518 $(foreach m, $(LAUNCHER_MODULES), $(eval $m: $m-launchers))
 519 $(foreach m, $(COPY_MODULES), $(eval $m: $m-copy))
 520 
 521 demos: demos-jdk
 522 
 523 samples: samples-jdk
 524 
 525 # The "exploded image" is a locally runnable JDK in $(BUILD_OUTPUT)/jdk.
 526 exploded-image: $(ALL_MODULES)
 527 
 528 mac-bundles: mac-bundles-jdk
 529 
 530 # The $(BUILD_OUTPUT)/images directory contain the resulting deliverables,
 531 # and in line with this, our targets for creating these are named *-image[s].
 532 
 533 # This target builds the product images, e.g. the JRE and JDK image
 534 # (and possibly other, more specific versions)
 535 product-images: jimages demos samples zip-security verify-modules
 536 
 537 ifeq ($(OPENJDK_TARGET_OS), macosx)
 538   product-images: mac-bundles
 539 endif
 540 
 541 # This target builds the documentation image
 542 docs-image: docs-javadoc docs-jvmtidoc
 543 
 544 # This target builds the test image
 545 test-image: prepare-test-image test-image-hotspot-jtreg-native \
 546     test-image-jdk-jtreg-native
 547 
 548 # all-images is the top-most target, it builds all our deliverables ("images").
 549 all-images: product-images test-image docs-image
 550 
 551 ALL_TARGETS += buildtools gensrc gendata copy java rmic libs launchers \
 552     jdk.jdwp.agent-gensrc $(ALL_MODULES) demos samples exploded-image \
 553     mac-bundles product-images docs-image test-image all-images
 554 
 555 ################################################################################
 556 
 557 # Traditional targets typically run by users.
 558 # These can be considered aliases for the targets now named by a more
 559 # "modern" naming scheme.
 560 default: $(DEFAULT_MAKE_TARGET)
 561 jdk: exploded-image
 562 images: product-images
 563 docs: docs-image
 564 all: all-images
 565 
 566 ALL_TARGETS += default jdk images docs all
 567 
 568 ################################################################################
 569 ################################################################################
 570 #
 571 # Clean targets
 572 #
 573 ################################################################################
 574 # Clean targets are automatically run serially by the Makefile calling this
 575 # file.
 576 
 577 CLEAN_DIRS += hotspot jdk bootcycle-build test buildtools support \
 578     images make-support test-make bundles
 579 CLEAN_DIR_TARGETS := $(addprefix clean-, $(CLEAN_DIRS))
 580 CLEAN_SUPPORT_DIRS += demos
 581 CLEAN_SUPPORT_DIR_TARGETS := $(addprefix clean-, $(CLEAN_SUPPORT_DIRS))
 582 CLEAN_TESTS += hotspot-jtreg-native jdk-jtreg-native lib
 583 CLEAN_TEST_TARGETS += $(addprefix clean-test-, $(CLEAN_TESTS))
 584 CLEAN_PHASES := gensrc java native include docs
 585 CLEAN_PHASE_TARGETS := $(addprefix clean-, $(CLEAN_PHASES))
 586 CLEAN_MODULE_TARGETS := $(addprefix clean-, $(ALL_MODULES))
 587 # Construct targets of the form clean-$module-$phase
 588 CLEAN_MODULE_PHASE_TARGETS := $(addprefix clean-, $(foreach m, $(ALL_MODULES), \
 589     $(addprefix $m-, $(CLEAN_PHASES))))
 590 
 591 # Remove everything, except the output from configure.
 592 clean: $(CLEAN_DIR_TARGETS)
 593         ($(CD) $(OUTPUT_ROOT) && $(RM) -r build*.log*)
 594         $(ECHO) Cleaned all build artifacts.
 595 
 596 $(CLEAN_DIR_TARGETS):
 597         $(call CleanDir,$(patsubst clean-%, %, $@))
 598 
 599 $(CLEAN_SUPPORT_DIR_TARGETS):
 600         $(call CleanSupportDir,$(patsubst clean-%, %, $@))
 601 
 602 $(CLEAN_TEST_TARGETS):
 603         $(call CleanTest,$(patsubst clean-test-%, %, $@))
 604 
 605 $(CLEAN_PHASE_TARGETS):
 606         $(call Clean-$(patsubst clean-%,%, $@))
 607 
 608 $(CLEAN_MODULE_TARGETS):
 609         $(call CleanModule,$(patsubst clean-%, %, $@))
 610 
 611 $(CLEAN_MODULE_PHASE_TARGETS):
 612         $(call Clean-$(word 3, $(subst -,$(SPACE),$@)), \
 613             $(word 2, $(subst -,$(SPACE),$@)))
 614 
 615 # When removing the support dir, we must also remove jdk. Building classes has
 616 # the side effect of generating native headers. The headers end up in support
 617 # while classes and touch files end up in jdk.
 618 clean-support: clean-jdk
 619 
 620 # Remove everything, including configure configuration. If the output
 621 # directory was created by configure and now becomes empty, remove it as well.
 622 dist-clean: clean
 623         ($(CD) $(OUTPUT_ROOT) && \
 624             $(RM) -r *spec.gmk $(CONFIGURESUPPORT_OUTPUTDIR) Makefile compare.sh ide)
 625         $(if $(filter $(CONF_NAME),$(notdir $(OUTPUT_ROOT))), \
 626           if test "x`$(LS) $(OUTPUT_ROOT)`" != x; then \
 627             $(ECHO) "Warning: Not removing non-empty configuration directory for '$(CONF_NAME)'" ; \
 628           else \
 629             ($(CD) $(SRC_ROOT) && $(ECHO) "Removing configuration directory for '$(CONF_NAME)'" \
 630                 && $(RM) -r $(OUTPUT_ROOT)) \
 631           fi \
 632         )
 633         $(ECHO) Cleaned everything, you will have to re-run configure.
 634 
 635 ALL_TARGETS += clean dist-clean $(CLEAN_DIR_TARGETS) $(CLEAN_SUPPORT_DIR_TARGETS) \
 636     $(CLEAN_TEST_TARGETS) $(CLEAN_PHASE_TARGETS) $(CLEAN_MODULE_TARGETS) \
 637     $(CLEAN_MODULE_PHASE_TARGETS)
 638 
 639 ################################################################################
 640 # Declare *-only targets for each normal target
 641 $(foreach t, $(ALL_TARGETS), $(eval $(t)-only: $(t)))
 642 
 643 ALL_TARGETS += $(addsuffix -only, $(filter-out dist-clean clean%, $(ALL_TARGETS)))
 644 
 645 ################################################################################
 646 
 647 # Include JPRT targets
 648 include $(SRC_ROOT)/make/Jprt.gmk
 649 
 650 ################################################################################
 651 
 652 # The following targets are intentionally not added to ALL_TARGETS since they
 653 # are internal only, to support Init.gmk.
 654 
 655 print-targets:
 656           @$(ECHO) $(sort $(ALL_TARGETS))
 657 
 658 print-modules:
 659           @$(ECHO) $(sort $(ALL_MODULES))
 660 
 661 create-main-targets-include:
 662           $(call LogInfo, Generating main target list)
 663           @$(ECHO) ALL_MAIN_TARGETS := $(sort $(ALL_TARGETS)) > \
 664               $(MAKESUPPORT_OUTPUTDIR)/main-targets.gmk
 665 
 666 ################################################################################
 667 
 668 .PHONY: $(ALL_TARGETS)
 669 
 670 FRC: # Force target