make/Makefile

Wed, 01 Feb 2012 15:01:08 -0500

author
phh
date
Wed, 01 Feb 2012 15:01:08 -0500
changeset 3492
481a9443f721
parent 3427
94ec88ca68e2
child 3567
f09ae3853e3b
permissions
-rw-r--r--

7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
Summary: Add support for packaging HotSpot JVM builds in universal binaries
Reviewed-by: dholmes, kamg, dcubed, phh
Contributed-by: james.melvin@oracle.com

     1 #
     2 # Copyright (c) 2005, 2012, 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.
     8 #
     9 # This code is distributed in the hope that it will be useful, but WITHOUT
    10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12 # version 2 for more details (a copy is included in the LICENSE file that
    13 # accompanied this code).
    14 #
    15 # You should have received a copy of the GNU General Public License version
    16 # 2 along with this work; if not, write to the Free Software Foundation,
    17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18 #
    19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20 # or visit www.oracle.com if you need additional information or have any
    21 # questions.
    22 #  
    23 #
    25 # Top level gnumake file for hotspot builds
    26 #
    27 # Default is to build the both product images and construct an export dir.
    28 #  The default export directory name is `pwd`/export-$(PLATFORM).
    29 #
    30 #   Use: 'gnumake help' for more information.
    31 #
    32 # This makefile uses the default settings for where to find compilers and
    33 #    tools, and obeys the ALT_* variable settings used by the other JDK
    34 #    workspaces.
    35 #
    37 # Expected/optional make variables defined on make command line:
    38 #  LP64=1 or ARCH_DATA_MODEL=64 for 64bit build
    39 #
    40 # Expected/optional make variables or environment variables:
    41 #  ALT_SLASH_JAVA             Location of /java or J:
    42 #  ALT_BOOTDIR                Previous JDK home directory for javac compiler
    43 #  ALT_OUTPUTDIR              Output directory to use for hotspot build
    44 #  ALT_EXPORT_PATH            Directory to export hotspot build to
    45 #  ALT_JDK_IMPORT_PATH        Current JDK build (only for create_jdk rules)
    46 #  ALT_JDK_TARGET_IMPORT_PATH Current JDK build when cross-compiling
    47 #  ALT_BUILD_WIN_SA           Building SA on Windows is disabled by default.
    48 #                             Set ALT_BUILD_WIN_SA=1 to enable building SA on
    49 #                             Windows.
    50 # Version strings and numbers:
    51 #  JDK_VERSION                Current JDK version (e.g. 1.6.0)
    52 #  PREVIOUS_JDK_VERSION       Previous (bootdir) JDK version (e.g. 1.5.0)
    53 #  FULL_VERSION               Full version string to use (e.g. "1.6.0-ea-b42")
    54 #
    55 # Version strings and numbers especially needed on Windows:
    56 #  COOKED_JDK_UPDATE_VERSION  Just the update release number (e.g. 02)
    57 #  COOKED_BUILD_NUMBER        Just the build number (e.g. 42)
    58 #  JDK_MKTG_VERSION           Marketing JDK version (e.g. 6.0)
    59 #  JDK_MAJOR_VERSION          Major number for version (e.g. 1) always 1?
    60 #  JDK_MINOR_VERSION          Minor number for version (e.g. 6)
    61 #  JDK_MICRO_VERSION          Micro number for version (e.g. 0)
    62 #
    64 # Default is build both product fastdebug and create export area
    66 # Allow to build HotSpot in local directory from sources specified by GAMMADIR.
    67 # After make/defs.make GAMMADIR is defined.
    68 ifdef GAMMADIR
    69   ifndef ALT_OUTPUTDIR
    70     ALT_OUTPUTDIR := $(shell pwd)
    71   endif
    72   include $(GAMMADIR)/make/defs.make
    73 else
    74   include defs.make
    75 endif
    77 include $(GAMMADIR)/make/altsrc.make
    79 ifneq ($(ALT_OUTPUTDIR),)
    80   ALT_OUT=ALT_OUTPUTDIR=$(ALT_OUTPUTDIR)
    81 else
    82   ALT_OUT=
    83 endif
    85 # Typical C1/C2 targets made available with this Makefile
    86 C1_VM_TARGETS=product1 fastdebug1 optimized1 jvmg1
    87 C2_VM_TARGETS=product  fastdebug  optimized  jvmg
    88 KERNEL_VM_TARGETS=productkernel fastdebugkernel optimizedkernel jvmgkernel
    89 ZERO_VM_TARGETS=productzero fastdebugzero optimizedzero jvmgzero
    90 SHARK_VM_TARGETS=productshark fastdebugshark optimizedshark jvmgshark
    92 COMMON_VM_PRODUCT_TARGETS=product product1 productkernel docs export_product
    93 COMMON_VM_FASTDEBUG_TARGETS=fastdebug fastdebug1 fastdebugkernel docs export_fastdebug
    94 COMMON_VM_DEBUG_TARGETS=jvmg jvmg1 jvmgkernel docs export_debug
    96 # JDK directory list
    97 JDK_DIRS=bin include jre lib demo
    99 all:           all_product all_fastdebug
   101 ifdef BUILD_CLIENT_ONLY
   102 all_product:   product1 docs export_product
   103 all_fastdebug: fastdebug1 docs export_fastdebug
   104 all_debug:     jvmg1 docs export_debug
   105 else
   106 ifeq ($(MACOSX_UNIVERSAL),true)
   107 all_product:   universal_product
   108 all_fastdebug: universal_fastdebug
   109 all_debug:     universal_debug
   110 else
   111 all_product:   $(COMMON_VM_PRODUCT_TARGETS)
   112 all_fastdebug: $(COMMON_VM_FASTDEBUG_TARGETS)
   113 all_debug:     $(COMMON_VM_DEBUG_TARGETS)
   114 endif
   115 endif
   117 all_optimized: optimized optimized1 optimizedkernel docs export_optimized
   119 allzero:           all_productzero all_fastdebugzero
   120 all_productzero:   productzero docs export_product
   121 all_fastdebugzero: fastdebugzero docs export_fastdebug
   122 all_debugzero:     jvmgzero docs export_debug
   123 all_optimizedzero: optimizedzero docs export_optimized
   125 allshark:           all_productshark all_fastdebugshark
   126 all_productshark:   productshark docs export_product
   127 all_fastdebugshark: fastdebugshark docs export_fastdebug
   128 all_debugshark:     jvmgshark docs export_debug
   129 all_optimizedshark: optimizedshark docs export_optimized
   131 # Do everything
   132 world:         all create_jdk
   134 # Build or export docs
   135 docs:
   136 ifeq ($(OSNAME),windows)
   137 	@$(ECHO) "No docs ($(VM_TARGET)) for windows"
   138 else
   139 	$(CD) $(OUTPUTDIR); \
   140 	    $(MAKE) -f $(ABS_OS_MAKEFILE) \
   141 		      $(MAKE_ARGS) docs
   142 endif
   144 # Build variation of hotspot
   145 $(C1_VM_TARGETS):
   146 	$(CD) $(GAMMADIR)/make; \
   147 	$(MAKE) VM_TARGET=$@ generic_build1 $(ALT_OUT)
   149 $(C2_VM_TARGETS):
   150 	$(CD) $(GAMMADIR)/make; \
   151 	$(MAKE) VM_TARGET=$@ generic_build2 $(ALT_OUT)
   153 $(KERNEL_VM_TARGETS):
   154 	$(CD) $(GAMMADIR)/make; \
   155 	$(MAKE) VM_TARGET=$@ generic_buildkernel $(ALT_OUT)
   157 $(ZERO_VM_TARGETS):
   158 	$(CD) $(GAMMADIR)/make; \
   159 	$(MAKE) VM_TARGET=$@ generic_buildzero $(ALT_OUT)
   161 $(SHARK_VM_TARGETS):
   162 	$(CD) $(GAMMADIR)/make; \
   163 	$(MAKE) VM_TARGET=$@ generic_buildshark $(ALT_OUT)
   165 # Build compiler1 (client) rule, different for platforms
   166 generic_build1:
   167 	$(MKDIR) -p $(OUTPUTDIR)
   168 ifeq ($(OSNAME),windows)
   169   ifeq ($(ARCH_DATA_MODEL), 32)
   170 	$(CD) $(OUTPUTDIR); \
   171 	    $(NMAKE) -f $(ABS_OS_MAKEFILE) \
   172 		      Variant=compiler1 \
   173                       WorkSpace=$(ABS_GAMMADIR) \
   174 		      BootStrapDir=$(ABS_BOOTDIR) \
   175                       BuildUser=$(USERNAME) \
   176 		      $(MAKE_ARGS) $(VM_TARGET:%1=%)
   177   else
   178 	@$(ECHO) "No compiler1 ($(VM_TARGET)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)"
   179   endif
   180 else
   181   ifeq ($(ARCH_DATA_MODEL), 32)
   182 	$(CD) $(OUTPUTDIR); \
   183 	    $(MAKE) -f $(ABS_OS_MAKEFILE) \
   184 		      $(MAKE_ARGS) $(VM_TARGET)
   185   else
   186 	@$(ECHO) "No compiler1 ($(VM_TARGET)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)"
   187   endif
   188 endif
   190 # Build compiler2 (server) rule, different for platforms
   191 generic_build2:
   192 	$(MKDIR) -p $(OUTPUTDIR)
   193 ifeq ($(OSNAME),windows)
   194 	$(CD) $(OUTPUTDIR); \
   195 	    $(NMAKE) -f $(ABS_OS_MAKEFILE) \
   196 		      Variant=compiler2 \
   197                       WorkSpace=$(ABS_GAMMADIR) \
   198 		      BootStrapDir=$(ABS_BOOTDIR) \
   199                       BuildUser=$(USERNAME) \
   200 		      $(MAKE_ARGS) $(VM_TARGET)
   201 else
   202 	$(CD) $(OUTPUTDIR); \
   203 	    $(MAKE) -f $(ABS_OS_MAKEFILE) \
   204 		      $(MAKE_ARGS) $(VM_TARGET)
   205 endif
   207 generic_buildkernel:
   208 	$(MKDIR) -p $(OUTPUTDIR)
   209 ifeq ($(OSNAME),windows)
   210   ifeq ($(ARCH_DATA_MODEL), 32)
   211 	$(CD) $(OUTPUTDIR); \
   212 	    $(NMAKE) -f $(ABS_OS_MAKEFILE) \
   213 		      Variant=kernel \
   214                       WorkSpace=$(ABS_GAMMADIR) \
   215 		      BootStrapDir=$(ABS_BOOTDIR) \
   216                       BuildUser=$(USERNAME) \
   217 		      $(MAKE_ARGS) $(VM_TARGET:%kernel=%)
   218   else
   219 	@$(ECHO) "No kernel ($(VM_TARGET)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)"
   220   endif
   221 else
   222 	@$(ECHO) "No kernel ($(VM_TARGET)) for OS_NAME=$(OSNAME)"
   223 endif
   225 generic_buildzero:
   226 	$(MKDIR) -p $(OUTPUTDIR)
   227 	$(CD) $(OUTPUTDIR); \
   228 		$(MAKE) -f $(ABS_OS_MAKEFILE) \
   229 			$(MAKE_ARGS) $(VM_TARGET)
   231 generic_buildshark:
   232 	$(MKDIR) -p $(OUTPUTDIR)
   233 	$(CD) $(OUTPUTDIR); \
   234 		$(MAKE) -f $(ABS_OS_MAKEFILE) \
   235 			$(MAKE_ARGS) $(VM_TARGET) 
   237 # Export file rule
   238 generic_export: $(EXPORT_LIST)
   239 export_product:
   240 	$(MAKE) VM_SUBDIR=product                            generic_export
   241 export_fastdebug:
   242 	$(MAKE) VM_SUBDIR=fastdebug EXPORT_SUBDIR=/fastdebug generic_export
   243 export_debug:
   244 	$(MAKE) VM_SUBDIR=${VM_DEBUG} EXPORT_SUBDIR=/debug   generic_export
   245 export_optimized:
   246 	$(MAKE) VM_SUBDIR=optimized EXPORT_SUBDIR=/optimized generic_export
   247 export_product_jdk::
   248 	$(MAKE) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR) \
   249 		VM_SUBDIR=product                            generic_export
   250 export_optimized_jdk::
   251 	$(MAKE) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR) \
   252 		VM_SUBDIR=optimized                          generic_export
   253 export_fastdebug_jdk::
   254 	$(MAKE) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR)/fastdebug \
   255 		VM_SUBDIR=fastdebug                          generic_export
   256 export_debug_jdk::
   257 	$(MAKE) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR)/debug \
   258 		VM_SUBDIR=${VM_DEBUG}                        generic_export
   260 # Export file copy rules
   261 XUSAGE=$(HS_SRC_DIR)/share/vm/Xusage.txt
   262 DOCS_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_docs
   263 C1_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_compiler1
   264 C2_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_compiler2
   265 KERNEL_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_kernel
   266 ZERO_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_zero
   267 SHARK_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_shark
   268 C1_DIR=$(C1_BASE_DIR)/$(VM_SUBDIR)
   269 C2_DIR=$(C2_BASE_DIR)/$(VM_SUBDIR)
   270 KERNEL_DIR=$(KERNEL_BASE_DIR)/$(VM_SUBDIR)
   271 ZERO_DIR=$(ZERO_BASE_DIR)/$(VM_SUBDIR)
   272 SHARK_DIR=$(SHARK_BASE_DIR)/$(VM_SUBDIR)
   274 # Misc files and generated files need to come from C1 or C2 area
   275 ifeq ($(ZERO_BUILD), true)
   276 ifeq ($(SHARK_BUILD), true)
   277   MISC_DIR=$(SHARK_DIR)
   278   GEN_DIR=$(SHARK_BASE_DIR)/generated
   279 else
   280   MISC_DIR=$(ZERO_DIR)
   281   GEN_DIR=$(ZERO_BASE_DIR)/generated
   282 endif
   283 else
   284 ifeq ($(ARCH_DATA_MODEL), 32)
   285   MISC_DIR=$(C1_DIR)
   286   GEN_DIR=$(C1_BASE_DIR)/generated
   287 else
   288   MISC_DIR=$(C2_DIR)
   289   GEN_DIR=$(C2_BASE_DIR)/generated
   290 endif
   291 endif
   293 # Bin files (windows)
   294 ifeq ($(OSNAME),windows)
   296 # Get jvm.lib 
   297 $(EXPORT_LIB_DIR)/%.lib:  $(MISC_DIR)/%.lib
   298 	$(install-file)
   300 # Other libraries (like SA)
   301 $(EXPORT_JRE_BIN_DIR)/%.dll: $(MISC_DIR)/%.dll
   302 	$(install-file)
   303 $(EXPORT_JRE_BIN_DIR)/%.pdb: $(MISC_DIR)/%.pdb
   304 	$(install-file)
   305 $(EXPORT_JRE_BIN_DIR)/%.map: $(MISC_DIR)/%.map
   306 	$(install-file)
   308 # Client files always come from C1 area
   309 $(EXPORT_CLIENT_DIR)/%.dll:  $(C1_DIR)/%.dll
   310 	$(install-file)
   311 $(EXPORT_CLIENT_DIR)/%.pdb:  $(C1_DIR)/%.pdb
   312 	$(install-file)
   313 $(EXPORT_CLIENT_DIR)/%.map:  $(C1_DIR)/%.map
   314 	$(install-file)
   316 # Server files always come from C2 area
   317 $(EXPORT_SERVER_DIR)/%.dll:  $(C2_DIR)/%.dll
   318 	$(install-file)
   319 $(EXPORT_SERVER_DIR)/%.pdb:  $(C2_DIR)/%.pdb
   320 	$(install-file)
   321 $(EXPORT_SERVER_DIR)/%.map:  $(C2_DIR)/%.map
   322 	$(install-file)
   324 # Kernel files always come from kernel area
   325 $(EXPORT_KERNEL_DIR)/%.dll:  $(KERNEL_DIR)/%.dll
   326 	$(install-file)
   327 $(EXPORT_KERNEL_DIR)/%.pdb:  $(KERNEL_DIR)/%.pdb
   328 	$(install-file)
   329 $(EXPORT_KERNEL_DIR)/%.map:  $(KERNEL_DIR)/%.map
   330 	$(install-file)
   331 endif
   333 # Shared Library
   334 ifneq ($(OSNAME),windows)
   335   ifeq ($(ZERO_BUILD), true)
   336     ifeq ($(SHARK_BUILD), true)
   337 $(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(SHARK_DIR)/%.$(LIBRARY_SUFFIX)
   338 	$(install-file)
   339 $(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX):       $(SHARK_DIR)/%.$(LIBRARY_SUFFIX)
   340 	$(install-file)
   341     else
   342 $(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(ZERO_DIR)/%.$(LIBRARY_SUFFIX)
   343 	$(install-file)
   344 $(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX):       $(ZERO_DIR)/%.$(LIBRARY_SUFFIX)
   345 	$(install-file)
   346     endif
   347   else
   348 $(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(C1_DIR)/%.$(LIBRARY_SUFFIX)
   349 	$(install-file)
   350 $(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(C2_DIR)/%.$(LIBRARY_SUFFIX)
   351 	$(install-file)
   352 $(EXPORT_CLIENT_DIR)/%.$(LIBRARY_SUFFIX):       $(C1_DIR)/%.$(LIBRARY_SUFFIX)
   353 	$(install-file)
   354 $(EXPORT_CLIENT_DIR)/64/%.$(LIBRARY_SUFFIX):    $(C1_DIR)/%.$(LIBRARY_SUFFIX)
   355 	$(install-file)
   356 $(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX):       $(C2_DIR)/%.$(LIBRARY_SUFFIX)
   357 	$(install-file)
   358 $(EXPORT_SERVER_DIR)/64/%.$(LIBRARY_SUFFIX):    $(C2_DIR)/%.$(LIBRARY_SUFFIX)
   359 	$(install-file)
   361 # Debug info for shared library
   362 $(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(C1_DIR)/%.debuginfo
   363 	$(install-file)
   364 $(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(C2_DIR)/%.debuginfo
   365 	$(install-file)
   366 $(EXPORT_CLIENT_DIR)/%.debuginfo:       $(C1_DIR)/%.debuginfo
   367 	$(install-file)
   368 $(EXPORT_CLIENT_DIR)/64/%.debuginfo:    $(C1_DIR)/%.debuginfo
   369 	$(install-file)
   370 $(EXPORT_SERVER_DIR)/%.debuginfo:       $(C2_DIR)/%.debuginfo
   371 	$(install-file)
   372 $(EXPORT_SERVER_DIR)/64/%.debuginfo:    $(C2_DIR)/%.debuginfo
   373 	$(install-file)
   374   endif
   375 endif
   377 # Jar file (sa-jdi.jar)
   378 $(EXPORT_LIB_DIR)/%.jar: $(GEN_DIR)/%.jar
   379 	$(install-file)
   381 # Include files (jvmti.h, jvmticmlr.h, jni.h, $(JDK_INCLUDE_SUBDIR)/jni_md.h, jmm.h, jfr.h)
   382 $(EXPORT_INCLUDE_DIR)/%: $(GEN_DIR)/jvmtifiles/%
   383 	$(install-file)
   385 $(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/code/%
   386 	$(install-file)
   388 $(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/prims/%
   389 	$(install-file)
   391 HS_JNI_ARCH_SRC=$(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(HS_ARCH)/vm/jni_$(HS_ARCH).h)
   392 $(EXPORT_INCLUDE_DIR)/$(JDK_INCLUDE_SUBDIR)/jni_md.h: $(HS_JNI_ARCH_SRC)
   393 	$(install-file)
   395 $(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/services/%
   396 	$(install-file)
   398 JFR_EXISTS=$(shell if [ -d $(HS_ALT_SRC) ]; then echo 1; else echo 0; fi)
   399 # export jfr.h
   400 ifeq ($JFR_EXISTS,1)
   401 $(EXPORT_INCLUDE_DIR)/%: $(HS_ALT_SRC)/share/vm/jfr/agent/%
   402 	$(install-file)
   403 else
   404 $(EXPORT_INCLUDE_DIR)/jfr.h:
   406 endif
   408 # Doc files (jvmti.html)
   409 $(EXPORT_DOCS_DIR)/platform/jvmti/%: $(DOCS_DIR)/%
   410 	$(install-file)
   412 # Xusage file
   413 $(EXPORT_SERVER_DIR)/Xusage.txt $(EXPORT_CLIENT_DIR)/Xusage.txt $(EXPORT_KERNEL_DIR)/Xusage.txt: $(XUSAGE)
   414 	$(prep-target)
   415 	$(RM) $@.temp
   416 	$(SED) 's/\(separated by \)[;:]/\1$(PATH_SEP)/g' $< > $@.temp
   417 	$(MV) $@.temp $@
   419 #
   420 # Clean rules
   421 #
   422 clobber clean: clean_build clean_export clean_jdk
   423 clean_build:
   424 	$(RM) -r $(C1_DIR)
   425 	$(RM) -r $(C2_DIR)
   426 	$(RM) -r $(KERNEL_DIR)
   427 	$(RM) -r $(ZERO_DIR)
   428 	$(RM) -r $(SHARK_DIR)
   429 clean_export:
   430 	$(RM) -r $(EXPORT_PATH)
   431 clean_jdk:
   432 	$(RM) -r $(JDK_IMAGE_DIR)
   434 #
   435 # Create JDK and place this build into it
   436 #
   437 create_jdk: copy_jdk update_jdk
   439 update_jdk: export_product_jdk export_fastdebug_jdk test_jdk
   441 copy_jdk: $(JDK_IMAGE_DIR)/jre/lib/rt.jar
   443 $(JDK_IMAGE_DIR)/jre/lib/rt.jar:
   444 	$(RM) -r $(JDK_IMAGE_DIR)
   445 	$(MKDIR) -p $(JDK_IMAGE_DIR)
   446 	($(CD) $(JDK_IMPORT_PATH) && \
   447 	 $(TAR) -cf - *) | \
   448 	 ($(CD) $(JDK_IMAGE_DIR) && $(TAR) -xf -)
   450 test_jdk:
   451   ifneq ($(ZERO_BUILD), true)
   452     ifeq ($(ARCH_DATA_MODEL), 32)
   453 	$(JDK_IMAGE_DIR)/bin/java -client -version
   454     endif
   455   endif
   456 	$(JDK_IMAGE_DIR)/bin/java -server -version
   458 copy_product_jdk::
   459 	$(RM) -r $(JDK_IMAGE_DIR)
   460 	$(MKDIR) -p $(JDK_IMAGE_DIR)
   461 	($(CD) $(JDK_IMPORT_PATH) && \
   462 	 $(TAR) -cf - $(JDK_DIRS)) | \
   463 	 ($(CD) $(JDK_IMAGE_DIR) && $(TAR) -xf -)
   465 copy_fastdebug_jdk::
   466 	$(RM) -r $(JDK_IMAGE_DIR)/fastdebug
   467 	$(MKDIR) -p $(JDK_IMAGE_DIR)/fastdebug
   468 	if [ -d $(JDK_IMPORT_PATH)/fastdebug ] ; then \
   469 	  ($(CD) $(JDK_IMPORT_PATH)/fastdebug && \
   470 	   $(TAR) -cf - $(JDK_DIRS)) | \
   471 	   ($(CD) $(JDK_IMAGE_DIR)/fastdebug && $(TAR) -xf -) ; \
   472 	else \
   473 	  ($(CD) $(JDK_IMPORT_PATH) && \
   474 	   $(TAR) -cf - $(JDK_DIRS)) | \
   475 	   ($(CD) $(JDK_IMAGE_DIR)/fastdebug && $(TAR) -xf -) ; \
   476 	fi
   478 copy_debug_jdk::
   479 	$(RM) -r $(JDK_IMAGE_DIR)/debug
   480 	$(MKDIR) -p $(JDK_IMAGE_DIR)/debug
   481 	if [ -d $(JDK_IMPORT_PATH)/debug ] ; then \
   482 	  ($(CD) $(JDK_IMPORT_PATH)/debug && \
   483 	   $(TAR) -cf - $(JDK_DIRS)) | \
   484 	   ($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \
   485 	elif [ -d $(JDK_IMPORT_PATH)/fastdebug ] ; then \
   486 	  ($(CD) $(JDK_IMPORT_PATH)/fastdebug && \
   487 	   $(TAR) -cf - $(JDK_DIRS)) | \
   488 	   ($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \
   489 	else \
   490 	  ($(CD) $(JDK_IMPORT_PATH) && \
   491 	   $(TAR) -cf - $(JDK_DIRS)) | \
   492 	   ($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \
   493 	fi
   495 #
   496 # Check target
   497 #
   498 check: variable_check
   500 #
   501 # Help target
   502 #
   503 help: intro_help target_help variable_help notes_help examples_help
   505 # Intro help message
   506 intro_help:
   507 	@$(ECHO) \
   508 "Makefile for the Hotspot workspace." 
   509 	@$(ECHO) \
   510 "Default behavior is to build and create an export area for the j2se builds."
   512 # Target help
   513 target_help:
   514 	@$(ECHO) "help:             This help message"
   515 	@$(ECHO) "all:              Same as: all_product all_fastdebug"
   516 	@$(ECHO) "world:            Same as: all create_jdk"
   517 	@$(ECHO) "all_product:      Same as: product product1 export_product"
   518 	@$(ECHO) "all_fastdebug:    Same as: fastdebug fastdebug1 export_fastdebug"
   519 	@$(ECHO) "all_debug:        Same as: jvmg jvmg1 export_debug"
   520 	@$(ECHO) "all_optimized:    Same as: optimized optimized1 export_optimized"
   521 	@$(ECHO) "clean:            Clean all areas"
   522 	@$(ECHO) "export_product:   Export product files to EXPORT_PATH"
   523 	@$(ECHO) "export_fastdebug: Export fastdebug files to EXPORT_PATH"
   524 	@$(ECHO) "export_debug:     Export debug files to EXPORT_PATH"
   525 	@$(ECHO) "export_optimized: Export optimized files to EXPORT_PATH"
   526 	@$(ECHO) "create_jdk:       Create JDK image, export all files into it"
   527 	@$(ECHO) "update_jdk:       Update JDK image with fresh exported files"
   528 	@$(ECHO) " "
   529 	@$(ECHO) "Others targets are:"
   530 	@$(ECHO) "   $(C1_VM_TARGETS)"
   531 	@$(ECHO) "   $(C2_VM_TARGETS)"
   532 	@$(ECHO) "   $(KERNEL_VM_TARGETS)"
   534 # Variable help (only common ones used by this workspace)
   535 variable_help: variable_help_intro variable_list variable_help_end
   536 variable_help_intro:
   537 	@$(ECHO) "--- Common Variables ---"
   538 variable_help_end:
   539 	@$(ECHO) " "
   540 	@$(ECHO) "--- Make Arguments ---"
   541 	@$(ECHO) "MAKE_ARGS=$(MAKE_ARGS)"
   543 # One line descriptions for the variables
   544 SLASH_JAVA.desc            = Root of all build tools, e.g. /java or J:
   545 OUTPUTDIR.desc             = Output directory, default is build/<osname>
   546 BOOTDIR.desc               = JDK used to compile agent java source and test with
   547 JDK_IMPORT_PATH.desc       = Promoted JDK to copy for 'create_jdk'
   548 EXPORT_PATH.desc           = Directory to place files to export for JDK build
   550 # Make variables to print out (description and value)
   551 VARIABLE_PRINTVAL_LIST +=       \
   552     SLASH_JAVA                  \
   553     OUTPUTDIR                   \
   554     BOOTDIR                     \
   555     JDK_IMPORT_PATH             \
   556     EXPORT_PATH
   558 # Make variables that should refer to directories that exist
   559 VARIABLE_CHECKDIR_LIST +=       \
   560     SLASH_JAVA                  \
   561     BOOTDIR                     \
   562     JDK_IMPORT_PATH
   564 # For pattern rules below, so all are treated the same
   565 DO_PRINTVAL_LIST=$(VARIABLE_PRINTVAL_LIST:%=%.printval)
   566 DO_CHECKDIR_LIST=$(VARIABLE_CHECKDIR_LIST:%=%.checkdir)
   568 # Complete variable check
   569 variable_check: $(DO_CHECKDIR_LIST)
   570 variable_list: $(DO_PRINTVAL_LIST) variable_check
   572 # Pattern rule for printing out a variable
   573 %.printval:
   574 	@$(ECHO) "  ALT_$* - $($*.desc)"
   575 	@$(ECHO) "        $*=$($*)"
   577 # Pattern rule for checking to see if a variable with a directory exists
   578 %.checkdir:
   579 	@if [ ! -d $($*) ] ; then \
   580 	    $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
   581 	fi
   583 # Pattern rule for checking to see if a variable with a file exists
   584 %.checkfil:
   585 	@if [ ! -f $($*) ] ; then \
   586 	    $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
   587 	fi
   589 # Misc notes on help
   590 notes_help:
   591 	@$(ECHO) \
   592 "--- Notes --- "
   593 	@$(ECHO) \
   594 "- JDK_IMPORT_PATH must refer to a compatible build, not all past promoted"
   595 	@$(ECHO) \
   596 "        builds or previous release JDK builds will work."
   597 	@$(ECHO) \
   598 "- The fastest builds have been when the workspace and the BOOTDIR are on"
   599 	@$(ECHO) \
   600 "        local disk."
   602 examples_help:
   603 	@$(ECHO) \
   604 "--- Examples --- "
   605 	@$(ECHO) \
   606 "  $(MAKE) all"
   607 	@$(ECHO) \
   608 "  $(MAKE) world"
   609 	@$(ECHO) \
   610 "  $(MAKE) ALT_BOOTDIR=/opt/java/jdk$(PREVIOUS_JDK_VERSION)" 
   611 	@$(ECHO) \
   612 "  $(MAKE) ALT_JDK_IMPORT_PATH=/opt/java/jdk$(JDK_VERSION)"
   614 # Universal build support
   615 ifeq ($(OS_VENDOR), Darwin)
   616 ifeq ($(MACOSX_UNIVERSAL),true)
   617 include $(GAMMADIR)/make/$(OSNAME)/makefiles/universal.gmk
   618 endif
   619 endif
   621 # JPRT rule to build this workspace
   622 include $(GAMMADIR)/make/jprt.gmk
   624 .PHONY: all world clobber clean help $(C1_VM_TARGETS) $(C2_VM_TARGETS) \
   625         $(KERNEL_VM_TARGETS) \
   626 	generic_build1 generic_build2 generic_buildkernel generic_export \
   627 	export_product export_fastdebug export_debug export_optimized \
   628 	export_jdk_product export_jdk_fastdebug export_jdk_debug \
   629 	create_jdk copy_jdk update_jdk test_jdk \
   630 	copy_product_jdk copy_fastdebug_jdk copy_debug_jdk 

mercurial