make/Main.gmk

Print this page




  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 # Load common profile names definitions
  43 include $(JDK_TOPDIR)/make/ProfileNames.gmk
  44 
  45 # Declare ALL_TARGETS as an immediate variable. This variable is a list of all
  46 # valid top level targets. It's used to declare them all as PHONY and to 
  47 # generate the -only targets.
  48 ALL_TARGETS :=
  49 
  50 # Hook to include the corresponding custom file, if present.
  51 $(eval $(call IncludeCustomExtension, , Main.gmk))
  52 
  53 # All modules for the current target platform.
  54 # Manually add jdk.hotspot.agent for now.
  55 ALL_MODULES := $(call FindAllModules) jdk.hotspot.agent
  56 
  57 ################################################################################
  58 ################################################################################
  59 #
  60 # Recipes for all targets. Only recipes, dependencies are declared later.
  61 #
  62 ################################################################################
  63 
  64 ################################################################################
  65 # Interim/build tools targets, compiling tools used during the build
  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 CompileCorba.gmk)
  72 
  73 interim-rmic:
  74         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterimRmic.gmk)
  75 
  76 build-tools-jdk:
  77         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Tools.gmk java-tools)
  78 
  79 ALL_TARGETS += interim-langtools interim-corba build-tools-jdk

  80 
  81 ################################################################################
  82 # Special targets for certain modules
  83 
  84 import-hotspot:
  85         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Import.gmk)
  86 
  87 unpack-sec:
  88         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f UnpackSecurity.gmk)
  89 
  90 policy-jars:
  91         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CreatePolicyJars.gmk)
  92 
  93 ALL_TARGETS += import-hotspot unpack-sec policy-jars
  94 
  95 ################################################################################
  96 # Gensrc targets, generating source before java compilation can be done
  97 JDK_GENSRC_MODULES := $(call FindModulesWithMakefileFor, gensrc, Gensrc)
  98 LANGTOOLS_GENSRC_MODULES := jdk.compiler.tools
  99 CORBA_GENSRC_MODULES := java.corba
 100 GENSRC_MODULES := $(JDK_GENSRC_MODULES) $(LANGTOOLS_GENSRC_MODULES) \
 101     $(CORBA_GENSRC_MODULES)
 102 JDK_GENSRC_TARGETS := $(addsuffix -gensrc, $(JDK_GENSRC_MODULES))
 103 LANGTOOLS_GENSRC_TARGETS := $(addsuffix -gensrc, $(LANGTOOLS_GENSRC_MODULES))
 104 CORBA_GENSRC_TARGETS := $(addsuffix -gensrc, $(CORBA_GENSRC_MODULES))
 105 GENSRC_TARGETS := $(addsuffix -gensrc, $(GENSRC_MODULES))
 106 
 107 jdk.compiler.tools-gensrc:
 108         +($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f GensrcLangtools.gmk)
 109 
 110 java.corba-gensrc:
 111         +($(CD) $(CORBA_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f GensrcCorba.gmk)
 112 
 113 # Declare recipes for all jdk <module>-gensrc targets
 114 $(foreach m, $(JDK_GENSRC_MODULES), $(eval $(call DeclareRecipeForModuleMakefile, \
 115     $m, gensrc, gensrc, Gensrc)))
 116 
 117 ALL_TARGETS += $(GENSRC_TARGETS)
 118 
 119 ################################################################################
 120 # Generate data targets
 121 GENDATA_MODULES := $(call FindModulesWithMakefileFor, gendata, Gendata)
 122 GENDATA_TARGETS := $(addsuffix -gendata, $(GENDATA_MODULES))
 123 
 124 # Declare recipes for all <module>-gendata targets
 125 $(foreach m, $(GENDATA_MODULES), $(eval $(call DeclareRecipeForModuleMakefile, \
 126     $m, gendata, gendata, Gendata)))
 127 
 128 $(foreach m, $(GENDATA_MODULES), $(eval $(call DeclareGendataRecipe,$m)))
 129 
 130 ALL_TARGETS += $(GENDATA_TARGETS)
 131 
 132 ################################################################################
 133 # Copy files targets
 134 COPY_MODULES := $(call FindModulesWithMakefileFor, copy, Copy)
 135 COPY_TARGETS := $(addsuffix -copy, $(COPY_MODULES))
 136 
 137 # Declare recipes for all <module>-copy targets
 138 $(foreach m, $(COPY_MODULES), $(eval $(call DeclareRecipeForModuleMakefile, \
 139     $m, copy, copy, Copy)))
 140 
 141 ALL_TARGETS += $(COPY_TARGETS)
 142 
 143 ################################################################################
 144 # Targets for compiling all java modules. Nashorn is treated separately.
 145 JAVA_MODULES := $(call FindJavaModules)
 146 JAVA_TARGETS := $(addsuffix -java, $(JAVA_MODULES))
 147 
 148 define DeclareCompileJavaRecipe
 149   $1-java:
 150         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CompileJavaModules.gmk \
 151             $1 JAVA_MODULES=$1)
 152 endef
 153 
 154 $(foreach m, $(filter-out jdk.scripting.nashorn, $(JAVA_MODULES)), \
 155     $(eval $(call DeclareCompileJavaRecipe,$m)))
 156 
 157 # Build nashorn. Needs to be compiled separately from the rest of the modules
 158 # due to nasgen.
 159 jdk.scripting.nashorn-java:
 160         +($(CD) $(NASHORN_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f BuildNashorn.gmk compile)
 161 
 162 ALL_TARGETS += $(JAVA_TARGETS)
 163 
 164 ################################################################################
 165 # Targets for running rmic.
 166 RMIC_MODULES := $(call FindModulesWithMakefileFor, rmic, Rmic)
 167 RMIC_TARGETS := $(addsuffix -rmic, $(RMIC_MODULES))
 168 
 169 # Declare recipes for all <module>-rmic targets
 170 $(foreach m, $(RMIC_MODULES), $(eval $(call DeclareRecipeForModuleMakefile, \
 171     $m, rmic, rmic, Rmic)))
 172 
 173 ALL_TARGETS += $(RMIC_TARGETS)
 174 
 175 ################################################################################
 176 # Targets for compiling native libraries
 177 ALL_LIB_MODULES := $(call FindModulesWithMakefileFor, lib, Lib)
 178 LIB_MODULES := $(filter $(ALL_MODULES), $(ALL_LIB_MODULES))
 179 LIB_TARGETS := $(addsuffix -libs, $(LIB_MODULES))
 180 
 181 # Declare recipes for all <module>-libs targets
 182 $(foreach m, $(LIB_MODULES), $(eval $(call DeclareRecipeForModuleMakefile, \
 183     $m, libs, lib, Lib)))
 184 
 185 ALL_TARGETS += $(LIB_TARGETS)
 186 
 187 ################################################################################
 188 # Targets for compiling native executables
 189 ALL_LAUNCHER_MODULES := $(call FindModulesWithMakefileFor, launcher, Launcher)
 190 LAUNCHER_MODULES := $(filter $(ALL_MODULES), $(ALL_LAUNCHER_MODULES))
 191 LAUNCHER_TARGETS := $(addsuffix -launchers, $(LAUNCHER_MODULES))
 192 
 193 # Declare recipes for all <module>-launchers targets
 194 $(foreach m, $(LAUNCHER_MODULES), $(eval $(call DeclareRecipeForModuleMakefile, \
 195     $m, launchers, launcher, Launcher)))
 196 
 197 ALL_TARGETS += $(LAUNCHER_TARGETS)
 198 
 199 ################################################################################
 200 # Build hotspot target
 201 
 202 ifeq ($(BUILD_HOTSPOT),true)
 203   hotspot:
 204         ($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f HotspotWrapper.gmk)
 205 endif
 206 
 207 ALL_TARGETS += hotspot
 208 
 209 ################################################################################
 210 # Build demos and samples targets
 211 
 212 demos:
 213         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileDemos.gmk)
 214 
 215 samples:
 216         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CopySamples.gmk)
 217 
 218 ALL_TARGETS += demos samples
 219 
 220 ################################################################################
 221 # Image targets
 222 
 223 # Stores the tips for each repository. This file is be used when constructing the jdk image and can be
 224 # used to track the exact sources used to build that image.
 225 source-tips: $(OUTPUT_ROOT)/source_tips
 226 $(OUTPUT_ROOT)/source_tips: FRC
 227         @$(MKDIR) -p $(@D)
 228         @$(RM) $@
 229         @$(call GetSourceTips)
 230 
 231 security-jars:
 232         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CreateSecurityJars.gmk)


 233 
 234 nashorn-jar:
 235         +($(CD) $(NASHORN_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f BuildNashorn.gmk all)
 236 
 237 # Creates the jar files (rt.jar resources.jar etc)
 238 main-jars:
 239         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) PROFILE="" -f CreateJars.gmk)
 240 
 241 # Creates the images (j2sdk-image j2re-image etc)
 242 images:
 243         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) PROFILE="" -f Images.gmk)
 244         ifeq ($(OPENJDK_TARGET_OS), macosx)
 245           +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Bundles.gmk)
 246         endif
 247 
 248 # Create Compact Profile jars
 249 PROFILE_JARS_TARGETS := $(addsuffix -jars, $(ALL_PROFILES))
 250 $(PROFILE_JARS_TARGETS):
 251         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) PROFILE=$(@:%-jars=%) -f CreateJars.gmk)
 252 
 253 # Create Compact Profile images
 254 PROFILE_IMAGES_TARGETS := $(addsuffix -images, $(ALL_PROFILES))
 255 $(PROFILE_IMAGES_TARGETS):
 256         +($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) PROFILE=$(@:%-images=%) \
 257             JRE_IMAGE_DIR=$(IMAGES_OUTPUTDIR)/j2re-$(word $(call profile_number,$(@:%-images=%)),$(PROFILE_NAMES))-image \
 258             -f Images.gmk profile-image)
 259 
 260 profiles-oscheck:
 261         ifneq ($(OPENJDK_TARGET_OS), linux)
 262           @echo "Error: The Java SE 8 Compact Profiles are only implemented for Linux at this time" && exit 1
 263         endif
 264 
 265 bootcycle-images:
 266         @$(ECHO) Boot cycle build step 2: Building a new JDK image using previously built image
 267         +$(MAKE) $(MAKE_ARGS) -f Main.gmk SPEC=$(dir $(SPEC))bootcycle-spec.gmk images





 268 
 269 ALL_TARGETS += source-tips security-jars nashorn-jar main-jars images \
 270     $(PROFILE_JARS_TARGETS) $(PROFILE_IMAGES_TARGETS) profiles-oscheck \
 271     bootcycle-images


 272 
 273 ################################################################################
 274 # Docs targets
 275 
 276 docs-javadoc:
 277         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs)
 278 
 279 docs-jvmtidoc:
 280         +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk jvmtidocs)
 281 
 282 ALL_TARGETS += docs-javadoc docs-jvmtidoc
 283 
 284 ################################################################################
 285 # Test target
 286 
 287 test:
 288         ($(CD) $(SRC_ROOT)/test && $(MAKE) $(MAKE_ARGS) -j1 -k MAKEFLAGS= \
 289             JT_HOME=$(JT_HOME) PRODUCT_HOME=$(JDK_OUTPUTDIR) \
 290             ALT_OUTPUTDIR=$(OUTPUT_ROOT) CONCURRENCY=$(JOBS) $(TEST)) || true
 291 


 314 
 315 ################################################################################
 316 #
 317 # Dependency declarations between targets. 
 318 #
 319 # These are declared in two groups. First all dependencies between targets that 
 320 # have recipes above as these dependencies may be disabled. Then the aggregator
 321 # targets that do not have recipes of their own, which will never have their
 322 # dependencies disabled.
 323 #
 324 ################################################################################
 325 # Targets with recipes above
 326 
 327 # If running an *-only target, parallel execution and dependencies between 
 328 # recipe targets are disabled. This makes it possible to run a select set of 
 329 # recipe targets in order. It's the responsibility of the user to make sure
 330 # all prerequisites are fulfilled. 
 331 ifneq ($(findstring -only, $(MAKECMDGOALS)), )
 332   .NOTPARALLEL:
 333 else


 334   interim-langtools: $(LANGTOOLS_GENSRC_TARGETS)
 335 
 336   build-tools-jdk: interim-langtools
 337 
 338   $(CORBA_GENSRC_TARGETS): interim-langtools
 339 
 340   $(JDK_GENSRC_TARGETS): interim-langtools build-tools-jdk
 341 
 342   interim-corba: $(CORBA_GENSRC_TARGETS)
 343 
 344   $(GENDATA_TARGETS): interim-langtools build-tools-jdk
 345 
 346   interim-rmic: interim-langtools
 347 
 348   $(RMIC_TARGETS): interim-langtools interim-corba interim-rmic
 349 
 350   import-hotspot: hotspot
 351 
 352   $(LIB_TARGETS): import-hotspot
 353 
 354   $(LAUNCHER_TARGETS): java.base-libs
 355 
 356   # The demos are currently linking to libjvm and libjava, just like all other
 357   # jdk libs, even though they don't need to. To avoid warnings, make sure they
 358   # aren't built until after libjava and libjvm are available to link to.
 359   demos: $(JAVA_TARGETS)
 360 
 361   # Declare dependency from <module>-java to <module>-gensrc
 362   $(foreach m, $(GENSRC_MODULES), $(eval $m-java: $m-gensrc))
 363 
 364   # Declare dependencies between java modules
 365   $(foreach m, $(JAVA_MODULES), \
 366       $(eval $m-java: $(addsuffix -java, $(filter $(JAVA_MODULES), \
 367       $(call FindDepsForModule,$m)))))
 368 
 369   # Declare dependencies between <module>-rmic to <module>-java
 370   $(foreach m, $(RMIC_MODULES), $(eval $m-rmic: $m-java))
 371 
 372   # Declare dependencies from <module>-lib to <module>-java
 373   # Skip jdk.jdwp.agent as it contains no java code.
 374   $(foreach m, $(filter-out jdk.jdwp.agent, $(LIB_MODULES)), $(eval $m-libs: $m-java))
 375 
 376   # Declare dependencies from all other <module>-lib to java.base-lib
 377   $(foreach t, $(filter-out java.base-libs, $(LIB_TARGETS)), \
 378       $(eval $t: java.base-libs))
 379   # Declare the special case dependency for jdk.deploy.osx where libosx 
 380   # links against libosxapp.
 381   jdk.deploy.osx-libs: java.desktop-libs
 382 
 383   # This dependency needs to be explicitly declared. jdk.jdi-gensrc generates a 
 384   # header file used by jdk.jdwp libs.
 385   jdk.jdwp.agent-libs: jdk.jdi-gensrc






 386 
 387   # The swing beans need to have java base properly generated to avoid errors
 388   # in javadoc.
 389   java.desktop-gensrc: java.base-gensrc
 390 
 391   # Explicitly add dependencies for special targets
 392   java.base-java: unpack-sec
 393 
 394   jdk.dev-gendata: java rmic
 395 
 396   security-jars: java
 397 
 398   nashorn-jar: jdk.scripting.nashorn-java
 399 
 400   main-jars: java rmic security-jars nashorn-jar policy-jars import-hotspot gendata
 401 
 402   # On windows, the jars target needs to wait for jgss libs to be built.
 403   # Should ideally split out the sec-bin zip file generation to avoid
 404   # this dependency.
 405   ifeq ($(OPENJDK_TARGET_OS), windows)
 406     main-jars: java.security.jgss-libs
 407   endif
 408 
 409   images: jars demos samples exploded-image verify-modules source-tips
 410 
 411   bootcycle-images: images

 412 
 413   # Need to depend on jars as otherwise there will a race between all the
 414   # invocations of CreateJars.gmk.
 415   $(PROFILE_JARS_TARGETS): jars profiles-oscheck
 416 
 417   $(PROFILE_IMAGES_TARGETS): demos samples exploded-image source-tips
 418 
 419   # Declare dependencies from <profile>-images to <profile>-jars
 420   $(foreach p, $(ALL_PROFILES), $(eval $p-images: $p-jars))
 421 
 422   docs-javadoc: $(GENSRC_TARGETS) rmic
 423 
 424   docs-jvmtidoc: hotspot
 425 
 426   test: exploded-image
 427 
 428   verify-modules: exploded-image
 429 
 430 endif
 431 
 432 ################################################################################
 433 # Virtual targets without recipes
 434 



 435 gensrc: $(GENSRC_TARGETS)
 436 
 437 gendata: $(GENDATA_TARGETS)
 438 
 439 copy: $(COPY_TARGETS)
 440 
 441 java: $(JAVA_TARGETS)
 442 
 443 rmic: $(RMIC_TARGETS)
 444 
 445 libs: $(LIB_TARGETS)
 446 
 447 launchers: $(LAUNCHER_TARGETS)
 448 
 449 # Explicitly add dependencies for these special targets
 450 java.base: import-hotspot policy-jars

 451 
 452 # Declare dependencies from <module> to all the individual targets specific
 453 # to that module <module>-*.
 454 $(foreach m, $(GENSRC_MODULES), $(eval $m: $m-gensrc))
 455 $(foreach m, $(JAVA_MODULES), $(eval $m: $m-java))
 456 $(foreach m, $(GENDATA_MODULES), $(eval $m: $m-gendata))
 457 $(foreach m, $(RMIC_MODULES), $(eval $m: $m-rmic))
 458 $(foreach m, $(LIB_MODULES), $(eval $m: $m-libs))
 459 $(foreach m, $(LAUNCHER_MODULES), $(eval $m: $m-launchers))
 460 $(foreach m, $(COPY_MODULES), $(eval $m: $m-copy))
 461 
 462 ALL_MODULE_TARGETS := $(sort $(GENSRC_MODULES) $(JAVA_MODULES) \
 463     $(GENDATA_MODULES) $(LIB_MODULES) $(LAUNCHER_MODULES) $(COPY_MODULES))
 464 
 465 exploded-image: $(ALL_MODULE_TARGETS)
 466 # The old 'jdk' target most closely matches the new exploded-image. Keep an
 467 # alias for ease of use.
 468 jdk: exploded-image
 469 
 470 jars: main-jars nashorn-jar security-jars policy-jars
 471 
 472 # Make each profile name a target that depends on it's images target.
 473 $(foreach p, $(ALL_PROFILES), $(eval $(p): $(p)-images $(p)-jars))
 474 
 475 profiles: $(ALL_PROFILES)


 476 
 477 docs: docs-javadoc docs-jvmtidoc
 478 
 479 ALL_TARGETS += gensrc gendata copy java rmic libs launchers \
 480     $(ALL_MODULE_TARGETS) exploded-image jdk jars \
 481     $(ALL_PROFILES) profiles docs
 482 
 483 ################################################################################
 484 
 485 all: images docs
 486 default: exploded-image
 487 
 488 ALL_TARGETS += default all
 489 
 490 ################################################################################
 491 ################################################################################
 492 #
 493 # Clean targets
 494 #
 495 ################################################################################
 496 # Clean targets are automatically run serially by the Makefile calling this 
 497 # file.
 498 
 499 CLEAN_COMPONENTS += langtools corba hotspot jdk nashorn images \
 500     bootcycle-build docs docstemp test make-support
 501 CLEAN_TARGETS := $(addprefix clean-, $(CLEAN_COMPONENTS))






 502 
 503 # Remove everything, except the output from configure.
 504 clean: $(CLEAN_TARGETS)
 505         ($(CD) $(OUTPUT_ROOT) && $(RM) -r tmp source_tips build.log* build-trace*.log*)
 506         $(ECHO) Cleaned all build artifacts.
 507 
 508 $(CLEAN_TARGETS):
 509         $(call CleanComponent,$(patsubst clean-%, %, $@))















 510 
 511 clean-docs: clean-docstemp
 512 
 513 # Remove everything, including configure configuration.
 514 # If the output directory was created by configure and now becomes empty, remove it as well.
 515 dist-clean: clean
 516         ($(CD) $(OUTPUT_ROOT) && $(RM) -r *spec.gmk config.* configure-arguments \
 517             Makefile compare.sh tmp javacservers)
 518         $(if $(filter $(CONF_NAME),$(notdir $(OUTPUT_ROOT))), \
 519           if test "x`$(LS) $(OUTPUT_ROOT)`" != x; then \
 520             $(ECHO) "Warning: Not removing non-empty configuration directory for '$(CONF_NAME)'" ; \
 521           else \
 522             ($(CD) $(SRC_ROOT) && $(ECHO) "Removing configuration directory for '$(CONF_NAME)'" \
 523                 && $(RM) -r $(OUTPUT_ROOT)) \
 524           fi \
 525         )
 526         $(ECHO) Cleaned everything, you will have to re-run configure.
 527 
 528 ALL_TARGETS += clean dist-clean $(CLEAN_TARGETS)

 529 
 530 ################################################################################
 531 
 532 # Setup a rule for SPEC file that fails if executed. This check makes sure the 
 533 # configuration is up to date after changes to configure. 
 534 ifeq ($(findstring reconfigure, $(MAKECMDGOALS)), )
 535   $(SPEC): $(wildcard $(SRC_ROOT)/common/autoconf/*)
 536         @$(ECHO) "ERROR: $(SPEC) is not up to date."
 537         @$(ECHO) "Please rerun configure! Easiest way to do this is by running"
 538         @$(ECHO) "'make reconfigure'."
 539         @$(ECHO) "It may also be ignored by setting IGNORE_OLD_CONFIG=true"
 540         @if test "x$(IGNORE_OLD_CONFIG)" != "xtrue"; then exit 1; fi
 541 endif
 542 
 543 # The reconfigure target is automatically run serially from everything else
 544 # by the Makefile calling this file.
 545 
 546 reconfigure:
 547         ifneq ($(CONFIGURE_COMMAND_LINE), )
 548           @$(ECHO) "Re-running configure using arguments '$(CONFIGURE_COMMAND_LINE)'"
 549         else
 550           @$(ECHO) "Re-running configure using default settings"
 551         endif
 552         @( cd $(OUTPUT_ROOT) && $(BASH) $(TOPDIR)/configure $(CONFIGURE_COMMAND_LINE) )
 553 
 554 ALL_TARGETS += reconfigure
 555 
 556 ################################################################################
 557 # Declare *-only targets for each normal target
 558 $(foreach t, $(ALL_TARGETS), $(eval $(t)-only: $(t)))
 559 
 560 ALL_TARGETS += $(addsuffix -only, $(ALL_TARGETS))
 561 
 562 ################################################################################
 563 
 564 .PHONY: $(ALL_TARGETS)
 565 
 566 include $(SRC_ROOT)/make/Jprt.gmk
 567 
 568 FRC: # Force target


  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 := 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 # Test target
 257 
 258 test:
 259         ($(CD) $(SRC_ROOT)/test && $(MAKE) $(MAKE_ARGS) -j1 -k MAKEFLAGS= \
 260             JT_HOME=$(JT_HOME) PRODUCT_HOME=$(JDK_OUTPUTDIR) \
 261             ALT_OUTPUTDIR=$(OUTPUT_ROOT) CONCURRENCY=$(JOBS) $(TEST)) || true
 262 


 285 
 286 ################################################################################
 287 #
 288 # Dependency declarations between targets. 
 289 #
 290 # These are declared in two groups. First all dependencies between targets that 
 291 # have recipes above as these dependencies may be disabled. Then the aggregator
 292 # targets that do not have recipes of their own, which will never have their
 293 # dependencies disabled.
 294 #
 295 ################################################################################
 296 # Targets with recipes above
 297 
 298 # If running an *-only target, parallel execution and dependencies between 
 299 # recipe targets are disabled. This makes it possible to run a select set of 
 300 # recipe targets in order. It's the responsibility of the user to make sure
 301 # all prerequisites are fulfilled. 
 302 ifneq ($(findstring -only, $(MAKECMDGOALS)), )
 303   .NOTPARALLEL:
 304 else
 305   $(LANGTOOLS_GENSRC_TARGETS): buildtools-langtools
 306 
 307   interim-langtools: $(LANGTOOLS_GENSRC_TARGETS)
 308 
 309   buildtools-jdk: interim-langtools
 310 
 311   $(CORBA_GENSRC_TARGETS): interim-langtools
 312 
 313   $(JDK_GENSRC_TARGETS): interim-langtools buildtools-jdk
 314 
 315   interim-corba: $(CORBA_GENSRC_TARGETS)
 316 
 317   $(GENDATA_TARGETS): interim-langtools buildtools-jdk
 318 
 319   interim-rmic: interim-langtools
 320 
 321   $(RMIC_TARGETS): interim-langtools interim-corba interim-rmic
 322 
 323   import-hotspot: hotspot
 324 
 325   $(LIBS_TARGETS): import-hotspot
 326 
 327   $(LAUNCHER_TARGETS): java.base-libs
 328 
 329   # The demos are currently linking to libjvm and libjava, just like all other
 330   # jdk libs, even though they don't need to. To avoid warnings, make sure they
 331   # aren't built until after libjava and libjvm are available to link to.
 332   demos: $(JAVA_TARGETS)
 333 
 334   # Declare dependency from <module>-java to <module>-gensrc
 335   $(foreach m, $(GENSRC_MODULES), $(eval $m-java: $m-gensrc))
 336 
 337   # Declare dependencies between java modules
 338   $(foreach m, $(JAVA_MODULES), \
 339       $(eval $m-java: $(addsuffix -java, $(filter $(JAVA_MODULES), \
 340       $(call FindDepsForModule,$m)))))
 341 
 342   # Declare dependencies between <module>-rmic to <module>-java
 343   $(foreach m, $(RMIC_MODULES), $(eval $m-rmic: $m-java))
 344 
 345   # Declare dependencies from <module>-lib to <module>-java
 346   # Skip jdk.jdwp.agent as it contains no java code.
 347   $(foreach m, $(filter-out jdk.jdwp.agent, $(LIBS_MODULES)), $(eval $m-libs: $m-java))
 348 
 349   # Declare dependencies from all other <module>-lib to java.base-lib
 350   $(foreach t, $(filter-out java.base-libs, $(LIBS_TARGETS)), \
 351       $(eval $t: java.base-libs))
 352   # Declare the special case dependency for jdk.deploy.osx where libosx 
 353   # links against libosxapp.
 354   jdk.deploy.osx-libs: java.desktop-libs
 355 
 356   # This dependency needs to be explicitly declared as jdk.jdi-gensrc generates a 
 357   # header file used by jdk.jdwp.agent-libs. The jdk.jdwp.agent-gensrc is a
 358   # virtual target.
 359   jdk.jdwp.agent-libs: jdk.jdwp.agent-gensrc
 360 
 361   # Until the module system is in place, jdk.jdi-gensrc needs to combine service
 362   # loader configuration with jdk.hotspot.agent so is dependent on importing
 363   # hotspot.
 364   jdk.jdi-gensrc-jdk: import-hotspot
 365 
 366   # The swing beans need to have java base properly generated to avoid errors
 367   # in javadoc.
 368   java.desktop-gensrc-jdk: java.base-gensrc
 369 
 370   # Explicitly add dependencies for special targets
 371   java.base-java: unpack-sec
 372 
 373   jdk.dev-gendata: java rmic
 374 
 375   zip-security: java.base-java java.security.jgss-java java.security.jgss-libs \
 376       $(filter jdk.crypto%, $(JAVA_TARGETS))

 377 
 378   zip-source: gensrc rmic
 379 
 380   strip-binaries: libs launchers gendata copy





 381 
 382   jrtfs-jar: buildtools-jdk
 383 
 384   jimages: exploded-image zip-source strip-binaries source-tips demos samples \
 385       jrtfs-jar
 386 
 387   profiles: exploded-image strip-binaries source-tips


 388 
 389   mac-bundles: jimages
 390 
 391   bootcycle-images: jimages

 392 
 393   docs-javadoc: gensrc rmic
 394 
 395   docs-jvmtidoc: hotspot
 396 
 397   test: exploded-image
 398 
 399   verify-modules: exploded-image
 400 
 401 endif
 402 
 403 ################################################################################
 404 # Virtual targets without recipes
 405 
 406 buildtools: buildtools-langtools interim-langtools interim-corba interim-rmic \
 407     buildtools-jdk
 408 
 409 gensrc: $(GENSRC_TARGETS)
 410 
 411 gendata: $(GENDATA_TARGETS)
 412 
 413 copy: $(COPY_TARGETS)
 414 
 415 java: $(JAVA_TARGETS)
 416 
 417 rmic: $(RMIC_TARGETS)
 418 
 419 libs: $(LIBS_TARGETS)
 420 
 421 launchers: $(LAUNCHER_TARGETS)
 422 
 423 # Explicitly declare dependency for virtual target jdk.jdwp.agent-gensrc which
 424 # is actually handled by jdk.jdi-gensrc
 425 jdk.jdwp.agent-gensrc: jdk.jdi-gensrc
 426 
 427 # Declare dependencies from <module> to all the individual targets specific
 428 # to that module <module>-*.
 429 $(foreach m, $(GENSRC_MODULES), $(eval $m: $m-gensrc))
 430 $(foreach m, $(JAVA_MODULES), $(eval $m: $m-java))
 431 $(foreach m, $(GENDATA_MODULES), $(eval $m: $m-gendata))
 432 $(foreach m, $(RMIC_MODULES), $(eval $m: $m-rmic))
 433 $(foreach m, $(LIBS_MODULES), $(eval $m: $m-libs))
 434 $(foreach m, $(LAUNCHER_MODULES), $(eval $m: $m-launchers))
 435 $(foreach m, $(COPY_MODULES), $(eval $m: $m-copy))
 436 
 437 ALL_MODULE_TARGETS := $(sort $(GENSRC_MODULES) $(JAVA_MODULES) \
 438     $(GENDATA_MODULES) $(LIBS_MODULES) $(LAUNCHER_MODULES) $(COPY_MODULES))
 439 
 440 exploded-image: $(ALL_MODULE_TARGETS)
 441 # The old 'jdk' target most closely matches the new exploded-image. Keep an
 442 # alias for ease of use.
 443 jdk: exploded-image
 444 
 445 jars: main-jars nashorn-jar
 446 
 447 images: jimages demos samples zip-security

 448 
 449 ifeq ($(OPENJDK_TARGET_OS), macosx)
 450   images: mac-bundles
 451 endif
 452 
 453 docs: docs-javadoc docs-jvmtidoc
 454 
 455 ALL_TARGETS += buildtools gensrc gendata copy java rmic libs launchers \
 456     jdk.jdwp.agent-gensrc $(ALL_MODULE_TARGETS) exploded-image jdk jars images \
 457     docs
 458 
 459 ################################################################################
 460 
 461 all: images
 462 default: exploded-image
 463 
 464 ALL_TARGETS += default all
 465 
 466 ################################################################################
 467 ################################################################################
 468 #
 469 # Clean targets
 470 #
 471 ################################################################################
 472 # Clean targets are automatically run serially by the Makefile calling this 
 473 # file.
 474 
 475 CLEAN_DIRS += hotspot jdk bootcycle-build test buildtools support \
 476     images make-support
 477 CLEAN_DIR_TARGETS := $(addprefix clean-, $(CLEAN_DIRS))
 478 CLEAN_PHASES := gensrc java native include
 479 CLEAN_PHASE_TARGETS := $(addprefix clean-, $(CLEAN_PHASES))
 480 CLEAN_MODULE_TARGETS := $(addprefix clean-, $(ALL_MODULES))
 481 # Construct targets of the form clean-$module-$phase
 482 CLEAN_MODULE_PHASE_TARGETS := $(addprefix clean-, $(foreach m, $(ALL_MODULES), \
 483     $(addprefix $m-, $(CLEAN_PHASES))))
 484 
 485 # Remove everything, except the output from configure.
 486 clean: $(CLEAN_DIR_TARGETS)
 487         ($(CD) $(OUTPUT_ROOT) && $(RM) -r source_tips build.log* build-trace*.log*)
 488         $(ECHO) Cleaned all build artifacts.
 489 
 490 $(CLEAN_DIR_TARGETS):
 491         $(call CleanDir,$(patsubst clean-%, %, $@))
 492 
 493 $(CLEAN_PHASE_TARGETS):
 494         $(call Clean-$(patsubst clean-%,%, $@))
 495 
 496 $(CLEAN_MODULE_TARGETS):
 497         $(call CleanModule,$(patsubst clean-%, %, $@))
 498 
 499 $(CLEAN_MODULE_PHASE_TARGETS):
 500         $(call Clean-$(word 3, $(subst -,$(SPACE),$@)), \
 501             $(word 2, $(subst -,$(SPACE),$@)))
 502 
 503 # When removing the support dir, we must also remove jdk. Building classes has
 504 # the side effect of generating native headers. The headers end up in support
 505 # while classes and touch files end up in jdk.
 506 clean-support: clean-jdk
 507 
 508 clean-docs: clean-docstemp
 509 
 510 # Remove everything, including configure configuration.
 511 # If the output directory was created by configure and now becomes empty, remove it as well.
 512 dist-clean: clean
 513         ($(CD) $(OUTPUT_ROOT) && $(RM) -r *spec.gmk config.* configure-arguments \
 514             Makefile compare.sh tmp javacservers)
 515         $(if $(filter $(CONF_NAME),$(notdir $(OUTPUT_ROOT))), \
 516           if test "x`$(LS) $(OUTPUT_ROOT)`" != x; then \
 517             $(ECHO) "Warning: Not removing non-empty configuration directory for '$(CONF_NAME)'" ; \
 518           else \
 519             ($(CD) $(SRC_ROOT) && $(ECHO) "Removing configuration directory for '$(CONF_NAME)'" \
 520                 && $(RM) -r $(OUTPUT_ROOT)) \
 521           fi \
 522         )
 523         $(ECHO) Cleaned everything, you will have to re-run configure.
 524 
 525 ALL_TARGETS += clean dist-clean $(CLEAN_DIR_TARGETS) $(CLEAN_PHASE_TARGETS) \
 526     $(CLEAN_MODULE_TARGETS) $(CLEAN_MODULE_PHASE_TARGETS)
 527 
 528 ################################################################################
 529 
 530 # Setup a rule for SPEC file that fails if executed. This check makes sure the 
 531 # configuration is up to date after changes to configure. 
 532 ifeq ($(findstring reconfigure, $(MAKECMDGOALS)), )
 533   $(SPEC): $(wildcard $(SRC_ROOT)/common/autoconf/*)
 534         @$(ECHO) "ERROR: $(SPEC) is not up to date."
 535         @$(ECHO) "Please rerun configure! Easiest way to do this is by running"
 536         @$(ECHO) "'make reconfigure'."
 537         @$(ECHO) "It may also be ignored by setting IGNORE_OLD_CONFIG=true"
 538         @if test "x$(IGNORE_OLD_CONFIG)" != "xtrue"; then exit 1; fi
 539 endif
 540 
 541 # The reconfigure target is automatically run serially from everything else
 542 # by the Makefile calling this file.
 543 
 544 reconfigure:
 545         ifneq ($(CONFIGURE_COMMAND_LINE), )
 546           @$(ECHO) "Re-running configure using arguments '$(CONFIGURE_COMMAND_LINE)'"
 547         else
 548           @$(ECHO) "Re-running configure using default settings"
 549         endif
 550         @( cd $(OUTPUT_ROOT) && $(BASH) $(TOPDIR)/configure $(CONFIGURE_COMMAND_LINE) )
 551 
 552 ALL_TARGETS += reconfigure
 553 
 554 ################################################################################
 555 # Declare *-only targets for each normal target
 556 $(foreach t, $(ALL_TARGETS), $(eval $(t)-only: $(t)))
 557 
 558 ALL_TARGETS += $(addsuffix -only, $(filter-out clean%, $(ALL_TARGETS)))
 559 
 560 ################################################################################
 561 
 562 .PHONY: $(ALL_TARGETS)
 563 
 564 include $(SRC_ROOT)/make/Jprt.gmk
 565 
 566 FRC: # Force target