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