make/Makefile

Fri, 29 Mar 2019 15:03:32 +0000

author
andrew
date
Fri, 29 Mar 2019 15:03:32 +0000
changeset 9634
d1520f0c3524
parent 7138
63bae08b051e
child 7535
7ae4e26cb1e0
child 9858
b985cbb00e68
permissions
-rw-r--r--

8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
Reviewed-by: erikj, dholmes

     1 #
     2 # Copyright (c) 2005, 2013, 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 -include $(HS_ALT_MAKE)/Makefile.make
    81 ifneq ($(ALT_OUTPUTDIR),)
    82   ALT_OUT=ALT_OUTPUTDIR=$(ALT_OUTPUTDIR)
    83 else
    84   ALT_OUT=
    85 endif
    87 # Typical C1/C2 targets made available with this Makefile
    88 C1_VM_TARGETS=product1 fastdebug1 optimized1 debug1
    89 C2_VM_TARGETS=product  fastdebug  optimized  debug
    90 CORE_VM_TARGETS=productcore fastdebugcore optimizedcore debugcore
    91 ZERO_VM_TARGETS=productzero fastdebugzero optimizedzero debugzero
    92 SHARK_VM_TARGETS=productshark fastdebugshark optimizedshark debugshark
    93 MINIMAL1_VM_TARGETS=productminimal1 fastdebugminimal1 debugminimal1
    95 COMMON_VM_PRODUCT_TARGETS=product product1 docs export_product
    96 COMMON_VM_FASTDEBUG_TARGETS=fastdebug fastdebug1 docs export_fastdebug
    97 COMMON_VM_DEBUG_TARGETS=debug debug1 docs export_debug
    98 COMMON_VM_OPTIMIZED_TARGETS=optimized optimized1 docs export_optimized
   100 # JDK directory list
   101 JDK_DIRS=bin include jre lib demo
   103 all:           all_product all_fastdebug
   105 ifeq ($(JVM_VARIANT_MINIMAL1),true)
   106 all_product:	productminimal1
   107 all_fastdebug:	fastdebugminimal1
   108 all_debug:	debugminimal1
   109 endif
   111 ifdef BUILD_CLIENT_ONLY
   112 all_product:   product1 docs export_product
   113 all_fastdebug: fastdebug1 docs export_fastdebug
   114 all_debug:     debug1 docs export_debug
   115 all_optimized: optimized1 docs export_optimized
   116 else
   117 ifeq ($(MACOSX_UNIVERSAL),true)
   118 all_product:   universal_product
   119 all_fastdebug: universal_fastdebug
   120 all_debug:     universal_debug
   121 all_optimized: universal_optimized
   122 else
   123 all_product:   $(COMMON_VM_PRODUCT_TARGETS)
   124 all_fastdebug: $(COMMON_VM_FASTDEBUG_TARGETS)
   125 all_debug:     $(COMMON_VM_DEBUG_TARGETS)
   126 all_optimized: $(COMMON_VM_OPTIMIZED_TARGETS)
   127 endif
   128 endif
   130 allzero:           all_productzero all_fastdebugzero
   131 all_productzero:   productzero docs export_product
   132 all_fastdebugzero: fastdebugzero docs export_fastdebug
   133 all_debugzero:     debugzero docs export_debug
   134 all_optimizedzero: optimizedzero docs export_optimized
   136 allshark:           all_productshark all_fastdebugshark
   137 all_productshark:   productshark docs export_product
   138 all_fastdebugshark: fastdebugshark docs export_fastdebug
   139 all_debugshark:     debugshark docs export_debug
   140 all_optimizedshark: optimizedshark docs export_optimized
   142 allcore:           all_productcore all_fastdebugcore
   143 all_productcore:   productcore docs export_product
   144 all_fastdebugcore: fastdebugcore docs export_fastdebug
   145 all_debugcore:     debugcore docs export_debug
   146 all_optimizedcore: optimizedcore docs export_optimized
   148 # Do everything
   149 world:         all create_jdk
   151 # Build or export docs
   152 docs:
   153 ifeq ($(OSNAME),windows)
   154 	@$(ECHO) "No docs ($(VM_TARGET)) for windows"
   155 else
   156 # We specify 'BUILD_FLAVOR=product' so that the proper
   157 # ENABLE_FULL_DEBUG_SYMBOLS value is used.
   158 	$(CD) $(OUTPUTDIR); \
   159 	    $(MAKE) -f $(ABS_OS_MAKEFILE) \
   160 		      $(MAKE_ARGS) BUILD_FLAVOR=product docs
   161 endif
   163 # Output directories
   164 C1_DIR      =$(OUTPUTDIR)/$(VM_PLATFORM)_compiler1
   165 C2_DIR      =$(OUTPUTDIR)/$(VM_PLATFORM)_compiler2
   166 CORE_DIR    =$(OUTPUTDIR)/$(VM_PLATFORM)_core
   167 MINIMAL1_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_minimal1
   168 ZERO_DIR    =$(OUTPUTDIR)/$(VM_PLATFORM)_zero
   169 SHARK_DIR   =$(OUTPUTDIR)/$(VM_PLATFORM)_shark
   171 # Build variation of hotspot
   172 $(C1_VM_TARGETS):
   173 	$(CD) $(GAMMADIR)/make; \
   174 	$(MAKE) BUILD_DIR=$(C1_DIR) BUILD_FLAVOR=$(@:%1=%) VM_TARGET=$@ generic_build1 $(ALT_OUT)
   176 $(C2_VM_TARGETS):
   177 	$(CD) $(GAMMADIR)/make; \
   178 	$(MAKE) BUILD_DIR=$(C2_DIR) BUILD_FLAVOR=$@ VM_TARGET=$@ generic_build2 $(ALT_OUT)
   180 $(CORE_VM_TARGETS):
   181 	$(CD) $(GAMMADIR)/make; \
   182 	$(MAKE) BUILD_DIR=$(CORE_DIR) BUILD_FLAVOR=$(@:%core=%) VM_TARGET=$@ generic_buildcore $(ALT_OUT)
   184 $(ZERO_VM_TARGETS):
   185 	$(CD) $(GAMMADIR)/make; \
   186 	$(MAKE) BUILD_DIR=$(ZERO_DIR) BUILD_FLAVOR=$(@:%zero=%) VM_TARGET=$@ generic_buildzero $(ALT_OUT)
   188 $(SHARK_VM_TARGETS):
   189 	$(CD) $(GAMMADIR)/make; \
   190 	$(MAKE) BUILD_DIR=$(SHARK_DIR) BUILD_FLAVOR=$(@:%shark=%) VM_TARGET=$@ generic_buildshark $(ALT_OUT)
   192 $(MINIMAL1_VM_TARGETS):
   193 	$(CD) $(GAMMADIR)/make; \
   194 	$(MAKE) BUILD_DIR=$(MINIMAL1_DIR) BUILD_FLAVOR=$(@:%minimal1=%) VM_TARGET=$@ generic_buildminimal1 $(ALT_OUT)
   196 # Install hotspot script in build directory
   197 HOTSPOT_SCRIPT=$(BUILD_DIR)/$(BUILD_FLAVOR)/hotspot
   198 $(HOTSPOT_SCRIPT): $(GAMMADIR)/make/hotspot.script
   199 	$(QUIETLY) $(MKDIR) -p $(BUILD_DIR)/$(BUILD_FLAVOR)
   200 	$(QUIETLY) cat $< | sed -e 's|@@LIBARCH@@|$(LIBARCH)|g' | sed -e 's|@@JDK_IMPORT_PATH@@|$(JDK_IMPORT_PATH)|g' > $@
   201 	$(QUIETLY) chmod +x $@
   203 # Build compiler1 (client) rule, different for platforms
   204 generic_build1: $(HOTSPOT_SCRIPT)
   205 	$(MKDIR) -p $(OUTPUTDIR)
   206 ifeq ($(OSNAME),windows)
   207   ifeq ($(ARCH_DATA_MODEL), 32)
   208 	$(CD) $(OUTPUTDIR); \
   209 	    $(NMAKE) -f $(ABS_OS_MAKEFILE) \
   210 		      Variant=compiler1 \
   211                       WorkSpace=$(ABS_GAMMADIR) \
   212 		      BootStrapDir=$(ABS_BOOTDIR) \
   213                       BuildUser=$(USERNAME) \
   214 		      $(MAKE_ARGS) $(VM_TARGET:%1=%)
   215   else
   216 	@$(ECHO) "No compiler1 ($(VM_TARGET)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)"
   217   endif
   218 else
   219   ifeq ($(ARCH_DATA_MODEL), 32)
   220 	$(CD) $(OUTPUTDIR); \
   221 	    $(MAKE) -f $(ABS_OS_MAKEFILE) \
   222 		      $(MAKE_ARGS) $(VM_TARGET)
   223   else
   224 	@$(ECHO) "No compiler1 ($(VM_TARGET)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)"
   225   endif
   226 endif
   228 # Build compiler2 (server) rule, different for platforms
   229 generic_build2: $(HOTSPOT_SCRIPT)
   230 	$(MKDIR) -p $(OUTPUTDIR)
   231 ifeq ($(OSNAME),windows)
   232 	$(CD) $(OUTPUTDIR); \
   233 	    $(NMAKE) -f $(ABS_OS_MAKEFILE) \
   234 		      Variant=compiler2 \
   235                       WorkSpace=$(ABS_GAMMADIR) \
   236 		      BootStrapDir=$(ABS_BOOTDIR) \
   237                       BuildUser=$(USERNAME) \
   238 		      $(MAKE_ARGS) $(VM_TARGET)
   239 else
   240 	$(CD) $(OUTPUTDIR); \
   241 	    $(MAKE) -f $(ABS_OS_MAKEFILE) \
   242 		      $(MAKE_ARGS) $(VM_TARGET)
   243 endif
   245 generic_buildcore: $(HOTSPOT_SCRIPT)
   246 ifeq ($(HS_ARCH),ppc)
   247   ifeq ($(ARCH_DATA_MODEL),64)
   248 	$(MKDIR) -p $(OUTPUTDIR)
   249 	$(CD) $(OUTPUTDIR); \
   250 		$(MAKE) -f $(ABS_OS_MAKEFILE) \
   251 			$(MAKE_ARGS) $(VM_TARGET)
   252   else
   253 	@$(ECHO) "No ($(VM_TARGET)) for ppc ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)"
   254   endif
   255 else
   256 	@$(ECHO) "No ($(VM_TARGET)) for $(HS_ARCH)"
   257 endif
   259 generic_buildzero: $(HOTSPOT_SCRIPT)
   260 	$(MKDIR) -p $(OUTPUTDIR)
   261 	$(CD) $(OUTPUTDIR); \
   262 		$(MAKE) -f $(ABS_OS_MAKEFILE) \
   263 			$(MAKE_ARGS) $(VM_TARGET)
   265 generic_buildshark: $(HOTSPOT_SCRIPT)
   266 	$(MKDIR) -p $(OUTPUTDIR)
   267 	$(CD) $(OUTPUTDIR); \
   268 		$(MAKE) -f $(ABS_OS_MAKEFILE) \
   269 			$(MAKE_ARGS) $(VM_TARGET)
   271 generic_buildminimal1: $(HOTSPOT_SCRIPT)
   272 ifeq ($(JVM_VARIANT_MINIMAL1),true)
   273 	$(MKDIR) -p $(OUTPUTDIR)
   274   ifeq ($(ARCH_DATA_MODEL), 32)
   275     ifeq ($(OSNAME),windows)
   276 	$(ECHO) "No ($(VM_TARGET)) for $(OSNAME) ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" ;
   277     else
   278       ifeq ($(OSNAME),solaris)
   279 	$(ECHO) "No ($(VM_TARGET)) for $(OSNAME) ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" ;
   280       else
   281 	$(CD) $(OUTPUTDIR); \
   282 	$(MAKE) -f $(ABS_OS_MAKEFILE) $(MAKE_ARGS) $(VM_TARGET) ;
   283       endif
   284     endif
   285   else
   286 	    @$(ECHO) "No ($(VM_TARGET)) for $(OSNAME) ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)"
   287   endif
   288 else
   289 	@$(ECHO) "Error: trying to build a minimal target but JVM_VARIANT_MINIMAL1 is not true."
   290 endif
   292 # Export file rule
   293 generic_export: $(EXPORT_LIST)
   295 export_product:
   296 	$(MAKE) BUILD_FLAVOR=$(@:export_%=%) generic_export
   297 export_fastdebug:
   298 	$(MAKE) BUILD_FLAVOR=$(@:export_%=%) EXPORT_SUBDIR=/$(@:export_%=%) generic_export
   299 export_debug:
   300 	$(MAKE) BUILD_FLAVOR=$(@:export_%=%) EXPORT_SUBDIR=/$(@:export_%=%) generic_export
   301 export_optimized:
   302 	$(MAKE) BUILD_FLAVOR=$(@:export_%=%) EXPORT_SUBDIR=/$(@:export_%=%) generic_export
   304 export_product_jdk::
   305 	$(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR) generic_export
   306 export_optimized_jdk::
   307 	$(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR)/$(@:export_%_jdk=%) generic_export
   308 export_fastdebug_jdk::
   309 	$(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR)/$(@:export_%_jdk=%) generic_export
   310 export_debug_jdk::
   311 	$(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR)/$(@:export_%_jdk=%) generic_export
   313 # Export file copy rules
   314 XUSAGE=$(HS_SRC_DIR)/share/vm/Xusage.txt
   315 DOCS_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_docs
   316 C1_BUILD_DIR      =$(C1_DIR)/$(BUILD_FLAVOR)
   317 C2_BUILD_DIR      =$(C2_DIR)/$(BUILD_FLAVOR)
   318 CORE_BUILD_DIR    =$(CORE_DIR)/$(BUILD_FLAVOR)
   319 MINIMAL1_BUILD_DIR=$(MINIMAL1_DIR)/$(BUILD_FLAVOR)
   320 ZERO_BUILD_DIR    =$(ZERO_DIR)/$(BUILD_FLAVOR)
   321 SHARK_BUILD_DIR   =$(SHARK_DIR)/$(BUILD_FLAVOR)
   323 # Server (C2)
   324 ifeq ($(JVM_VARIANT_SERVER), true)
   325 # Common
   326 $(EXPORT_SERVER_DIR)/%.diz:       		$(C2_BUILD_DIR)/%.diz
   327 	$(install-file)
   328 $(EXPORT_LIB_DIR)/%.jar:			$(C2_BUILD_DIR)/../generated/%.jar
   329 	$(install-file)
   330 $(EXPORT_INCLUDE_DIR)/%:			$(C2_BUILD_DIR)/../generated/jvmtifiles/%
   331 	$(install-file)
   332 # Windows
   333 $(EXPORT_SERVER_DIR)/%.dll:			$(C2_BUILD_DIR)/%.dll
   334 	$(install-file)
   335 $(EXPORT_SERVER_DIR)/%.pdb:			$(C2_BUILD_DIR)/%.pdb
   336 	$(install-file)
   337 $(EXPORT_SERVER_DIR)/%.map:			$(C2_BUILD_DIR)/%.map
   338 	$(install-file)
   339 $(EXPORT_LIB_DIR)/%.lib:			$(C2_BUILD_DIR)/%.lib
   340 	$(install-file)
   341 $(EXPORT_JRE_BIN_DIR)/%.diz:			$(C2_BUILD_DIR)/%.diz
   342 	$(install-file)
   343 $(EXPORT_JRE_BIN_DIR)/%.dll:			$(C2_BUILD_DIR)/%.dll
   344 	$(install-file)
   345 $(EXPORT_JRE_BIN_DIR)/%.pdb:			$(C2_BUILD_DIR)/%.pdb
   346 	$(install-file)
   347 $(EXPORT_JRE_BIN_DIR)/%.map:			$(C2_BUILD_DIR)/%.map
   348 	$(install-file)
   349 # Unix
   350 $(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(C2_BUILD_DIR)/%.$(LIBRARY_SUFFIX)
   351 	$(install-file)
   352 $(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX):       $(C2_BUILD_DIR)/%.$(LIBRARY_SUFFIX)
   353 	$(install-file)
   354 $(EXPORT_SERVER_DIR)/64/%.$(LIBRARY_SUFFIX):    $(C2_BUILD_DIR)/%.$(LIBRARY_SUFFIX)
   355 	$(install-file)
   356 $(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: 	$(C2_BUILD_DIR)/%.debuginfo
   357 	$(install-file)
   358 $(EXPORT_SERVER_DIR)/%.debuginfo:       	$(C2_BUILD_DIR)/%.debuginfo
   359 	$(install-file)
   360 $(EXPORT_SERVER_DIR)/64/%.debuginfo:    	$(C2_BUILD_DIR)/%.debuginfo
   361 	$(install-file)
   362 $(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: 		$(C2_BUILD_DIR)/%.diz
   363 	$(install-file)
   364 $(EXPORT_SERVER_DIR)/64/%.diz:    		$(C2_BUILD_DIR)/%.diz
   365 	$(install-file)
   366 # MacOS X
   367 $(EXPORT_JRE_LIB_ARCH_DIR)/%.dSYM: 		$(C2_BUILD_DIR)/%.dSYM
   368 	$(install-dir)
   369 $(EXPORT_SERVER_DIR)/%.dSYM:       		$(C2_BUILD_DIR)/%.dSYM
   370 	$(install-dir)
   371 endif
   373 # Client (C1)
   374 ifeq ($(JVM_VARIANT_CLIENT), true)
   375 # Common
   376 $(EXPORT_CLIENT_DIR)/%.diz:       		$(C1_BUILD_DIR)/%.diz
   377 	$(install-file)
   378 $(EXPORT_LIB_DIR)/%.jar:			$(C1_BUILD_DIR)/../generated/%.jar
   379 	$(install-file)
   380 $(EXPORT_INCLUDE_DIR)/%:			$(C1_BUILD_DIR)/../generated/jvmtifiles/%
   381 	$(install-file)
   382 # Windows
   383 $(EXPORT_CLIENT_DIR)/%.dll:			$(C1_BUILD_DIR)/%.dll
   384 	$(install-file)
   385 $(EXPORT_CLIENT_DIR)/%.pdb:			$(C1_BUILD_DIR)/%.pdb
   386 	$(install-file)
   387 $(EXPORT_CLIENT_DIR)/%.map:			$(C1_BUILD_DIR)/%.map
   388 	$(install-file)
   389 $(EXPORT_LIB_DIR)/%.lib:			$(C1_BUILD_DIR)/%.lib
   390 	$(install-file)
   391 $(EXPORT_JRE_BIN_DIR)/%.diz:			$(C1_BUILD_DIR)/%.diz
   392 	$(install-file)
   393 $(EXPORT_JRE_BIN_DIR)/%.dll:			$(C1_BUILD_DIR)/%.dll
   394 	$(install-file)
   395 $(EXPORT_JRE_BIN_DIR)/%.pdb:			$(C1_BUILD_DIR)/%.pdb
   396 	$(install-file)
   397 $(EXPORT_JRE_BIN_DIR)/%.map:			$(C1_BUILD_DIR)/%.map
   398 	$(install-file)
   399 # Unix
   400 $(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(C1_BUILD_DIR)/%.$(LIBRARY_SUFFIX)
   401 	$(install-file)
   402 $(EXPORT_CLIENT_DIR)/%.$(LIBRARY_SUFFIX):       $(C1_BUILD_DIR)/%.$(LIBRARY_SUFFIX)
   403 	$(install-file)
   404 $(EXPORT_CLIENT_DIR)/64/%.$(LIBRARY_SUFFIX):    $(C1_BUILD_DIR)/%.$(LIBRARY_SUFFIX)
   405 	$(install-file)
   406 $(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: 	$(C1_BUILD_DIR)/%.debuginfo
   407 	$(install-file)
   408 $(EXPORT_CLIENT_DIR)/%.debuginfo:       	$(C1_BUILD_DIR)/%.debuginfo
   409 	$(install-file)
   410 $(EXPORT_CLIENT_DIR)/64/%.debuginfo:    	$(C1_BUILD_DIR)/%.debuginfo
   411 	$(install-file)
   412 $(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: 		$(C1_BUILD_DIR)/%.diz
   413 	$(install-file)
   414 $(EXPORT_CLIENT_DIR)/64/%.diz:    		$(C1_BUILD_DIR)/%.diz
   415 	$(install-file)
   416 # MacOS X
   417 $(EXPORT_JRE_LIB_ARCH_DIR)/%.dSYM: 		$(C1_BUILD_DIR)/%.dSYM
   418 	$(install-dir)
   419 $(EXPORT_CLIENT_DIR)/%.dSYM:       		$(C1_BUILD_DIR)/%.dSYM
   420 	$(install-dir)
   421 endif
   423 # Minimal1
   424 ifeq ($(JVM_VARIANT_MINIMAL1), true)
   425 # Common
   426 $(EXPORT_MINIMAL_DIR)/%.diz:			$(MINIMAL1_BUILD_DIR)/%.diz
   427 	$(install-file)
   428 $(EXPORT_LIB_DIR)/%.jar:			$(MINIMAL1_BUILD_DIR)/../generated/%.jar
   429 	$(install-file)
   430 $(EXPORT_INCLUDE_DIR)/%:			$(MINIMAL1_BUILD_DIR)/../generated/jvmtifiles/%
   431 	$(install-file)
   432 # Windows
   433 $(EXPORT_MINIMAL_DIR)/%.dll:			$(MINIMAL1_BUILD_DIR)/%.dll
   434 	$(install-file)
   435 $(EXPORT_MINIMAL_DIR)/%.pdb:			$(MINIMAL1_BUILD_DIR)/%.pdb
   436 	$(install-file)
   437 $(EXPORT_MINIMAL_DIR)/%.map:			$(MINIMAL1_BUILD_DIR)/%.map
   438 	$(install-file)
   439 $(EXPORT_LIB_DIR)/%.lib:			$(MINIMAL1_BUILD_DIR)/%.lib
   440 	$(install-file)
   441 $(EXPORT_JRE_BIN_DIR)/%.diz:			$(MINIMAL1_BUILD_DIR)/%.diz
   442 	$(install-file)
   443 $(EXPORT_JRE_BIN_DIR)/%.dll:			$(MINIMAL1_BUILD_DIR)/%.dll
   444 	$(install-file)
   445 $(EXPORT_JRE_BIN_DIR)/%.pdb:			$(MINIMAL1_BUILD_DIR)/%.pdb
   446 	$(install-file)
   447 $(EXPORT_JRE_BIN_DIR)/%.map:			$(MINIMAL1_BUILD_DIR)/%.map
   448 	$(install-file)
   449 # Unix
   450 $(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX):	$(MINIMAL1_BUILD_DIR)/%.$(LIBRARY_SUFFIX)
   451 	$(install-file)
   452 $(EXPORT_MINIMAL_DIR)/%.$(LIBRARY_SUFFIX):	$(MINIMAL1_BUILD_DIR)/%.$(LIBRARY_SUFFIX)
   453 	$(install-file)
   454 $(EXPORT_MINIMAL_DIR)/64/%.$(LIBRARY_SUFFIX):	$(MINIMAL1_BUILD_DIR)/%.$(LIBRARY_SUFFIX)
   455 	$(install-file)
   456 $(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo:		$(MINIMAL1_BUILD_DIR)/%.debuginfo
   457 	$(install-file)
   458 $(EXPORT_MINIMAL_DIR)/%.debuginfo:		$(MINIMAL1_BUILD_DIR)/%.debuginfo
   459 	$(install-file)
   460 $(EXPORT_MINIMAL_DIR)/64/%.debuginfo:		$(MINIMAL1_BUILD_DIR)/%.debuginfo
   461 	$(install-file)
   462 $(EXPORT_JRE_LIB_ARCH_DIR)/%.diz:		$(MINIMAL1_BUILD_DIR)/%.diz
   463 	$(install-file)
   464 $(EXPORT_MINIMAL_DIR)/64/%.diz:			$(MINIMAL1_BUILD_DIR)/%.diz
   465 	$(install-file)
   466 # MacOS X does not support Minimal1 config
   467 endif
   469 # Zero
   470 ifeq ($(JVM_VARIANT_ZERO), true)
   471 # Common
   472 $(EXPORT_LIB_DIR)/%.jar:			$(ZERO_BUILD_DIR)/../generated/%.jar
   473 	$(install-file)
   474 $(EXPORT_INCLUDE_DIR)/%:			$(ZERO_BUILD_DIR)/../generated/jvmtifiles/%
   475 	$(install-file)
   476 # Unix
   477 $(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(ZERO_BUILD_DIR)/%.$(LIBRARY_SUFFIX)
   478 	$(install-file)
   479 $(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo:		$(ZERO_BUILD_DIR)/%.debuginfo
   480 	$(install-file)
   481 $(EXPORT_JRE_LIB_ARCH_DIR)/%.diz:		$(ZERO_BUILD_DIR)/%.diz
   482 	$(install-file)
   483 $(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX):       $(ZERO_BUILD_DIR)/%.$(LIBRARY_SUFFIX)
   484 	$(install-file)
   485 $(EXPORT_SERVER_DIR)/%.debuginfo:		$(ZERO_BUILD_DIR)/%.debuginfo
   486 	$(install-file)
   487 $(EXPORT_SERVER_DIR)/%.diz:			$(ZERO_BUILD_DIR)/%.diz
   488 	$(install-file)
   489 # MacOS X
   490 $(EXPORT_JRE_LIB_ARCH_DIR)/%.dSYM: 		$(ZERO_BUILD_DIR)/%.dSYM
   491 	$(install-dir)
   492 $(EXPORT_SERVER_DIR)/%.dSYM:			$(ZERO_BUILD_DIR)/%.dSYM
   493 	$(install-dir)
   494 endif
   496 # Core
   497 ifeq ($(JVM_VARIANT_CORE), true)
   498 # Common
   499 $(EXPORT_LIB_DIR)/%.jar:			$(CORE_BUILD_DIR)/../generated/%.jar
   500 	$(install-file)
   501 $(EXPORT_INCLUDE_DIR)/%:			$(CORE_BUILD_DIR)/../generated/jvmtifiles/%
   502 	$(install-file)
   503 # Unix
   504 $(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX):	$(CORE_BUILD_DIR)/%.$(LIBRARY_SUFFIX)
   505 	$(install-file)
   506 $(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo:		$(CORE_BUILD_DIR)/%.debuginfo
   507 	$(install-file)
   508 $(EXPORT_JRE_LIB_ARCH_DIR)/%.diz:		$(CORE_BUILD_DIR)/%.diz
   509 	$(install-file)
   510 $(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX):	$(CORE_BUILD_DIR)/%.$(LIBRARY_SUFFIX)
   511 	$(install-file)
   512 $(EXPORT_SERVER_DIR)/%.debuginfo:		$(CORE_BUILD_DIR)/%.debuginfo
   513 	$(install-file)
   514 $(EXPORT_SERVER_DIR)/%.diz:			$(CORE_BUILD_DIR)/%.diz
   515 	$(install-file)
   516 endif
   518 # Shark
   519 ifeq ($(JVM_VARIANT_ZEROSHARK), true)
   520 # Common
   521 $(EXPORT_LIB_DIR)/%.jar:			$(SHARK_BUILD_DIR)/../generated/%.jar
   522 	$(install-file)
   523 $(EXPORT_INCLUDE_DIR)/%:			$(SHARK_BUILD_DIR)/../generated/jvmtifiles/%
   524 	$(install-file)
   525 # Unix
   526 $(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(SHARK_BUILD_DIR)/%.$(LIBRARY_SUFFIX)
   527 	$(install-file)
   528 $(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo):	$(SHARK_BUILD_DIR)/%.debuginfo
   529 	$(install-file)
   530 $(EXPORT_JRE_LIB_ARCH_DIR)/%.diz:		$(SHARK_BUILD_DIR)/%.diz
   531 	$(install-file)
   532 $(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX):       $(SHARK_BUILD_DIR)/%.$(LIBRARY_SUFFIX)
   533 	$(install-file)
   534 $(EXPORT_SERVER_DIR)/%.debuginfo:		$(SHARK_BUILD_DIR)/%.debuginfo
   535 	$(install-file)
   536 $(EXPORT_SERVER_DIR)/%.diz:			$(SHARK_BUILD_DIR)/%.diz
   537 	$(install-file)
   538 # MacOS X
   539 $(EXPORT_JRE_LIB_ARCH_DIR)/%.dSYM: 		$(SHARK_BUILD_DIR)/%.dSYM
   540 	$(install-dir)
   541 $(EXPORT_SERVER_DIR)/%.dSYM:			$(SHARK_BUILD_DIR)/%.dSYM
   542 	$(install-dir)
   543 endif
   545 $(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/code/%
   546 	$(install-file)
   548 $(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/prims/%
   549 	$(install-file)
   551 HS_JNI_ARCH_SRC=$(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(HS_ARCH)/vm/jni_$(HS_ARCH).h)
   552 $(EXPORT_INCLUDE_DIR)/$(JDK_INCLUDE_SUBDIR)/jni_md.h: $(HS_JNI_ARCH_SRC)
   553 	$(install-file)
   555 $(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/services/%
   556 	$(install-file)
   558 JFR_EXISTS=$(shell if [ -d $(HS_ALT_SRC) ]; then echo 1; else echo 0; fi)
   559 # export jfr.h
   560 ifeq ($JFR_EXISTS,1)
   561 $(EXPORT_INCLUDE_DIR)/%: $(HS_ALT_SRC)/share/vm/jfr/%
   562 	$(install-file)
   563 else
   564 $(EXPORT_INCLUDE_DIR)/jfr.h:
   565 endif
   567 # Doc files (jvmti.html)
   568 $(EXPORT_DOCS_DIR)/platform/jvmti/%: $(DOCS_DIR)/%
   569 	$(install-file)
   571 # Xusage file
   572 $(EXPORT_SERVER_DIR)/Xusage.txt $(EXPORT_CLIENT_DIR)/Xusage.txt $(EXPORT_MINIMAL_DIR)/Xusage.txt: $(XUSAGE)
   573 	$(prep-target)
   574 	$(RM) $@.temp
   575 	$(SED) 's/\(separated by \)[;:]/\1$(PATH_SEP)/g' $< > $@.temp
   576 	$(MV) $@.temp $@
   578 #
   579 # Clean rules
   580 #
   581 clobber clean: clean_build clean_export clean_jdk
   582 clean_build:
   583 	$(RM) -r $(C1_DIR)
   584 	$(RM) -r $(C2_DIR)
   585 	$(RM) -r $(CORE_DIR)
   586 	$(RM) -r $(ZERO_DIR)
   587 	$(RM) -r $(SHARK_DIR)
   588 	$(RM) -r $(MINIMAL1_DIR)
   589 clean_export:
   590 	$(RM) -r $(EXPORT_PATH)
   591 clean_jdk:
   592 	$(RM) -r $(JDK_IMAGE_DIR)
   594 #
   595 # Create JDK and place this build into it
   596 #
   597 create_jdk: copy_jdk update_jdk
   599 update_jdk: export_product_jdk export_fastdebug_jdk test_jdk
   601 copy_jdk: $(JDK_IMAGE_DIR)/jre/lib/rt.jar
   603 $(JDK_IMAGE_DIR)/jre/lib/rt.jar:
   604 	$(RM) -r $(JDK_IMAGE_DIR)
   605 	$(MKDIR) -p $(JDK_IMAGE_DIR)
   606 	($(CD) $(JDK_IMPORT_PATH) && \
   607 	 $(TAR) -cf - *) | \
   608 	 ($(CD) $(JDK_IMAGE_DIR) && $(TAR) -xf -)
   611 # Testing the built JVM
   612 RUN_JVM=JAVA_HOME=$(JDK_IMPORT_PATH) $(JDK_IMPORT_PATH)/bin/java -d$(ARCH_DATA_MODEL) -Dsun.java.launcher=gamma
   613 generic_test:
   614 	@$(ECHO) "Running with: $(ALTJVM_DIR)"
   615 	@$(RUN_JVM) -XXaltjvm=$(ALTJVM_DIR) -Xinternalversion
   616 	@$(RUN_JVM) -XXaltjvm=$(ALTJVM_DIR) -showversion -help
   618 # C2 test targets
   619 test_product test_optimized test_fastdebug test_debug:
   620 	@$(MAKE) generic_test ALTJVM_DIR="$(C2_DIR)/$(@:test_%=%)"
   622 # C1 test targets
   623 test_product1 test_optimized1 test_fastdebug1 test_debug1:
   624   ifeq ($(ARCH_DATA_MODEL), 32)
   625 	@$(MAKE) generic_test ALTJVM_DIR="$(C1_DIR)/$(@:test_%1=%)"
   626   else
   627 	@$(ECHO) "No compiler1 ($(@:test_%=%)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)"
   628   endif
   630 # Zero test targets
   631 test_productzero test_optimizedzero test_fastdebugzero test_debugzero:
   632 	@$(MAKE) generic_test ALTJVM_DIR="$(ZERO_DIR)/$(@:test_%zero=%)"
   634 # Shark test targets
   635 test_productshark test_optimizedshark test_fastdebugshark test_debugshark:
   636 	@$(MAKE) generic_test ALTJVM_DIR="$(SHARK_DIR)/$(@:test_%shark=%)"
   638 # Minimal1 test targets
   639 test_productminimal1 test_optimizedminimal1 test_fastdebugminimal1 test_debugminimal1:
   640 	@$(MAKE) generic_test ALTJVM_DIR="$(MINIMAL1_DIR)/$(@:test_%minimal1=%)"
   643 test_jdk:
   644   ifeq ($(JVM_VARIANT_CLIENT), true)
   645 	$(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -client -Xinternalversion
   646 	$(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -client -version
   647   endif
   648   ifeq ($(findstring true, $(JVM_VARIANT_SERVER)\
   649 		$(JVM_VARIANT_ZERO)$(JVM_VARIANT_ZEROSHARK)), true)
   650 	$(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -server -Xinternalversion
   651 	$(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -server -version
   652   endif
   654 copy_product_jdk::
   655 	$(RM) -r $(JDK_IMAGE_DIR)
   656 	$(MKDIR) -p $(JDK_IMAGE_DIR)
   657 	($(CD) $(JDK_IMPORT_PATH) && \
   658 	 $(TAR) -cf - $(JDK_DIRS)) | \
   659 	 ($(CD) $(JDK_IMAGE_DIR) && $(TAR) -xf -)
   661 copy_fastdebug_jdk::
   662 	$(RM) -r $(JDK_IMAGE_DIR)/fastdebug
   663 	$(MKDIR) -p $(JDK_IMAGE_DIR)/fastdebug
   664 	if [ -d $(JDK_IMPORT_PATH)/fastdebug ] ; then \
   665 	  ($(CD) $(JDK_IMPORT_PATH)/fastdebug && \
   666 	   $(TAR) -cf - $(JDK_DIRS)) | \
   667 	   ($(CD) $(JDK_IMAGE_DIR)/fastdebug && $(TAR) -xf -) ; \
   668 	else \
   669 	  ($(CD) $(JDK_IMPORT_PATH) && \
   670 	   $(TAR) -cf - $(JDK_DIRS)) | \
   671 	   ($(CD) $(JDK_IMAGE_DIR)/fastdebug && $(TAR) -xf -) ; \
   672 	fi
   674 copy_debug_jdk::
   675 	$(RM) -r $(JDK_IMAGE_DIR)/debug
   676 	$(MKDIR) -p $(JDK_IMAGE_DIR)/debug
   677 	if [ -d $(JDK_IMPORT_PATH)/debug ] ; then \
   678 	  ($(CD) $(JDK_IMPORT_PATH)/debug && \
   679 	   $(TAR) -cf - $(JDK_DIRS)) | \
   680 	   ($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \
   681 	elif [ -d $(JDK_IMPORT_PATH)/fastdebug ] ; then \
   682 	  ($(CD) $(JDK_IMPORT_PATH)/fastdebug && \
   683 	   $(TAR) -cf - $(JDK_DIRS)) | \
   684 	   ($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \
   685 	else \
   686 	  ($(CD) $(JDK_IMPORT_PATH) && \
   687 	   $(TAR) -cf - $(JDK_DIRS)) | \
   688 	   ($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \
   689 	fi
   691 copy_optimized_jdk::
   692 	$(RM) -r $(JDK_IMAGE_DIR)/optimized
   693 	$(MKDIR) -p $(JDK_IMAGE_DIR)/optimized
   694 	if [ -d $(JDK_IMPORT_PATH)/optimized ] ; then \
   695 	  ($(CD) $(JDK_IMPORT_PATH)/optimized && \
   696 	   $(TAR) -cf - $(JDK_DIRS)) | \
   697 	   ($(CD) $(JDK_IMAGE_DIR)/optimized && $(TAR) -xf -) ; \
   698 	else \
   699 	  ($(CD) $(JDK_IMPORT_PATH) && \
   700 	   $(TAR) -cf - $(JDK_DIRS)) | \
   701 	   ($(CD) $(JDK_IMAGE_DIR)/optimized && $(TAR) -xf -) ; \
   702 	fi
   704 #
   705 # Check target
   706 #
   707 check: variable_check
   709 #
   710 # Help target
   711 #
   712 help: intro_help target_help variable_help notes_help examples_help
   714 # Intro help message
   715 intro_help:
   716 	@$(ECHO) \
   717 "Makefile for the Hotspot workspace."
   718 	@$(ECHO) \
   719 "Default behavior is to build and create an export area for the j2se builds."
   721 # Target help
   722 target_help:
   723 	@$(ECHO) "help:             This help message"
   724 	@$(ECHO) "all:              Same as: all_product all_fastdebug"
   725 	@$(ECHO) "world:            Same as: all create_jdk"
   726 	@$(ECHO) "all_product:      Same as: product product1 export_product"
   727 	@$(ECHO) "all_fastdebug:    Same as: fastdebug fastdebug1 export_fastdebug"
   728 	@$(ECHO) "all_debug:        Same as: debug debug1 export_debug"
   729 	@$(ECHO) "all_optimized:    Same as: optimized optimized1 export_optimized"
   730 	@$(ECHO) "clean:            Clean all areas"
   731 	@$(ECHO) "export_product:   Export product files to EXPORT_PATH"
   732 	@$(ECHO) "export_fastdebug: Export fastdebug files to EXPORT_PATH"
   733 	@$(ECHO) "export_debug:     Export debug files to EXPORT_PATH"
   734 	@$(ECHO) "export_optimized: Export optimized files to EXPORT_PATH"
   735 	@$(ECHO) "create_jdk:       Create JDK image, export all files into it"
   736 	@$(ECHO) "update_jdk:       Update JDK image with fresh exported files"
   737 	@$(ECHO) " "
   738 	@$(ECHO) "Other targets are:"
   739 	@$(ECHO) "   $(C1_VM_TARGETS)"
   740 	@$(ECHO) "   $(C2_VM_TARGETS)"
   741 	@$(ECHO) "   $(MINIMAL1_VM_TARGETS)"
   743 # Variable help (only common ones used by this workspace)
   744 variable_help: variable_help_intro variable_list variable_help_end
   745 variable_help_intro:
   746 	@$(ECHO) "--- Common Variables ---"
   747 variable_help_end:
   748 	@$(ECHO) " "
   749 	@$(ECHO) "--- Make Arguments ---"
   750 	@$(ECHO) "MAKE_ARGS=$(MAKE_ARGS)"
   752 # One line descriptions for the variables
   753 SLASH_JAVA.desc            = Root of all build tools, e.g. /java or J:
   754 OUTPUTDIR.desc             = Output directory, default is build/<osname>
   755 BOOTDIR.desc               = JDK used to compile agent java source and test with
   756 JDK_IMPORT_PATH.desc       = Promoted JDK to copy for 'create_jdk'
   757 JDK_IMAGE_DIR.desc         = Directory to place JDK to copy
   758 EXPORT_PATH.desc           = Directory to place files to export for JDK build
   760 # Make variables to print out (description and value)
   761 VARIABLE_PRINTVAL_LIST +=       \
   762     SLASH_JAVA                  \
   763     OUTPUTDIR                   \
   764     BOOTDIR                     \
   765     JDK_IMPORT_PATH             \
   766     JDK_IMAGE_DIR               \
   767     EXPORT_PATH
   769 # Make variables that should refer to directories that exist
   770 VARIABLE_CHECKDIR_LIST +=       \
   771     SLASH_JAVA                  \
   772     BOOTDIR                     \
   773     JDK_IMPORT_PATH
   775 # For pattern rules below, so all are treated the same
   776 DO_PRINTVAL_LIST=$(VARIABLE_PRINTVAL_LIST:%=%.printval)
   777 DO_CHECKDIR_LIST=$(VARIABLE_CHECKDIR_LIST:%=%.checkdir)
   779 # Complete variable check
   780 variable_check: $(DO_CHECKDIR_LIST)
   781 variable_list: $(DO_PRINTVAL_LIST) variable_check
   783 # Pattern rule for printing out a variable
   784 %.printval:
   785 	@$(ECHO) "  ALT_$* - $($*.desc)"
   786 	@$(ECHO) "        $*=$($*)"
   788 # Pattern rule for checking to see if a variable with a directory exists
   789 %.checkdir:
   790 	@if [ ! -d $($*) ] ; then \
   791 	    $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
   792 	fi
   794 # Pattern rule for checking to see if a variable with a file exists
   795 %.checkfil:
   796 	@if [ ! -f $($*) ] ; then \
   797 	    $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
   798 	fi
   800 # Misc notes on help
   801 notes_help:
   802 	@$(ECHO) \
   803 "--- Notes --- "
   804 	@$(ECHO) \
   805 "- JDK_IMPORT_PATH must refer to a compatible build, not all past promoted"
   806 	@$(ECHO) \
   807 "        builds or previous release JDK builds will work."
   808 	@$(ECHO) \
   809 "- The fastest builds have been when the workspace and the BOOTDIR are on"
   810 	@$(ECHO) \
   811 "        local disk."
   813 examples_help:
   814 	@$(ECHO) \
   815 "--- Examples --- "
   816 	@$(ECHO) \
   817 "  $(MAKE) all"
   818 	@$(ECHO) \
   819 "  $(MAKE) world"
   820 	@$(ECHO) \
   821 "  $(MAKE) ALT_BOOTDIR=/opt/java/jdk$(PREVIOUS_JDK_VERSION)"
   822 	@$(ECHO) \
   823 "  $(MAKE) ALT_JDK_IMPORT_PATH=/opt/java/jdk$(JDK_VERSION)"
   825 # Universal build support
   826 ifeq ($(OS_VENDOR), Darwin)
   827 ifeq ($(MACOSX_UNIVERSAL),true)
   828 include $(GAMMADIR)/make/$(OSNAME)/makefiles/universal.gmk
   829 endif
   830 endif
   832 # Compatibility for transition to new naming
   833 warn_jvmg_deprecated:
   834 	echo "Warning: The jvmg target has been replaced with debug"
   835 	echo "Warning: Please update your usage"
   837 jvmg: warn_jvmg_deprecated debug
   839 jvmg1: warn_jvmg_deprecated debug1
   841 jvmgminimal1: warn_jvmg_deprecated debugminimal1
   843 jvmgcore: warn_jvmg_deprecated debugcore
   845 jvmgzero: warn_jvmg_deprecated debugzero
   847 jvmgshark: warn_jvmg_deprecated debugshark
   849 # JPRT rule to build this workspace
   850 include $(GAMMADIR)/make/jprt.gmk
   852 .PHONY: all world clobber clean help $(C1_VM_TARGETS) $(C2_VM_TARGETS) \
   853         $(MINIMAL1_VM_TARGETS) \
   854 	generic_build1 generic_build2 generic_buildminimal1 generic_export \
   855 	export_product export_fastdebug export_debug export_optimized \
   856 	export_jdk_product export_jdk_fastdebug export_jdk_debug \
   857 	create_jdk copy_jdk update_jdk test_jdk \
   858 	copy_product_jdk copy_fastdebug_jdk copy_debug_jdk  \
   859 	$(HS_ALT_MAKE)/Makefile.make

mercurial