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