make/Defs-internal.gmk

Tue, 25 May 2010 15:51:26 -0700

author
ohair
date
Tue, 25 May 2010 15:51:26 -0700
changeset 182
412712f77af6
parent 151
432cbbdc44bc
child 191
47f6b7db1882
permissions
-rw-r--r--

6943119: Rebrand source copyright notices
Reviewed-by: darcy

     1 #
     2 # Copyright (c) 1995, 2009, Oracle and/or its affiliates. All rights reserved.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4 #
     5 # This code is free software; you can redistribute it and/or modify it
     6 # under the terms of the GNU General Public License version 2 only, as
     7 # published by the Free Software Foundation.  Oracle designates this
     8 # particular file as subject to the "Classpath" exception as provided
     9 # by Oracle in the LICENSE file that accompanied this code.
    10 #
    11 # This code is distributed in the hope that it will be useful, but WITHOUT
    12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14 # version 2 for more details (a copy is included in the LICENSE file that
    15 # accompanied this code).
    16 #
    17 # You should have received a copy of the GNU General Public License version
    18 # 2 along with this work; if not, write to the Free Software Foundation,
    19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20 #
    21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22 # or visit www.oracle.com if you need additional information or have any
    23 # questions.
    24 #
    26 #
    27 # Common variables used by all the Java makefiles.  This file should
    28 # not contain rules.
    29 #
    31 # Indicate that we are visiting a separate repo or component 
    32 define MakeStart
    33 $(PRINTF) "\n\n%s\n%s\n##### %-60.60s #####\n%s\n" \
    34 "########################################################################" \
    35 "########################################################################" \
    36 "Entering $1 for target $2" \
    37 "########################################################################"
    38 endef
    40 define MakeFinish
    41 $(PRINTF) "%s\n##### %-60.60s #####\n%s\n%s\n\n" \
    42 "########################################################################" \
    43 "Leaving $1 for target $2" \
    44 "########################################################################" \
    45 "########################################################################"
    46 endef
    48 ifdef OPENJDK
    49   ifneq ($(OPENJDK),true)
    50     x:=$(error "OPENJDK (if defined) can only be set to true")
    51   endif
    52 endif
    54 # Define absolute paths to TOPDIRs
    55 ABS_CONTROL_TOPDIR:=$(call OptFullPath,"$(CONTROL_TOPDIR)")
    56 ABS_LANGTOOLS_TOPDIR:=$(call OptFullPath,"$(LANGTOOLS_TOPDIR)")
    57 ABS_CORBA_TOPDIR:=$(call OptFullPath,"$(CORBA_TOPDIR)")
    58 ABS_JAXP_TOPDIR:=$(call OptFullPath,"$(JAXP_TOPDIR)")
    59 ABS_JAXWS_TOPDIR:=$(call OptFullPath,"$(JAXWS_TOPDIR)")
    60 ABS_JDK_TOPDIR:=$(call OptFullPath,"$(JDK_TOPDIR)")
    61 ABS_HOTSPOT_TOPDIR:=$(call OptFullPath,"$(HOTSPOT_TOPDIR)")
    62 ABS_INSTALL_TOPDIR:=$(call OptFullPath,"$(INSTALL_TOPDIR)")
    63 ABS_SPONSORS_TOPDIR:=$(call OptFullPath,"$(SPONSORS_TOPDIR)")
    64 ABS_DEPLOY_TOPDIR:=$(call OptFullPath,"$(DEPLOY_TOPDIR)")
    66 # Macro to return true or false if a file exists and is readable
    67 define MkExists
    68 $(shell if [ -r $1 ]; then $(ECHO) true; else $(ECHO) false; fi)
    69 endef
    71 HOTSPOT_SRC_AVAILABLE := $(call MkExists,$(HOTSPOT_TOPDIR)/make/Makefile)
    72 ifndef BUILD_HOTSPOT
    73   ifdef ALT_HOTSPOT_IMPORT_PATH
    74     BUILD_HOTSPOT := false
    75   else
    76     BUILD_HOTSPOT := $(HOTSPOT_SRC_AVAILABLE)
    77   endif
    78 endif
    80 LANGTOOLS_SRC_AVAILABLE := $(call MkExists,$(LANGTOOLS_TOPDIR)/make/Makefile)
    81 ifndef BUILD_LANGTOOLS
    82   ifdef ALT_LANGTOOLS_DIST
    83     BUILD_LANGTOOLS := false
    84   else
    85     BUILD_LANGTOOLS := $(LANGTOOLS_SRC_AVAILABLE)
    86   endif
    87 endif
    89 CORBA_SRC_AVAILABLE := $(call MkExists,$(CORBA_TOPDIR)/make/Makefile)
    90 ifndef BUILD_CORBA
    91   ifdef ALT_CORBA_DIST
    92     BUILD_CORBA := false
    93   else
    94     BUILD_CORBA := $(CORBA_SRC_AVAILABLE)
    95   endif
    96 endif
    98 JAXP_SRC_AVAILABLE := $(call MkExists,$(JAXP_TOPDIR)/make/Makefile)
    99 ifndef BUILD_JAXP
   100   ifdef ALT_JAXP_DIST
   101     BUILD_JAXP := false
   102   else
   103     BUILD_JAXP := $(JAXP_SRC_AVAILABLE)
   104   endif
   105 endif
   107 JAXWS_SRC_AVAILABLE := $(call MkExists,$(JAXWS_TOPDIR)/make/Makefile)
   108 ifndef BUILD_JAXWS
   109   ifdef ALT_JAXWS_DIST
   110     BUILD_JAXWS := false
   111   else
   112     BUILD_JAXWS := $(JAXWS_SRC_AVAILABLE)
   113   endif
   114 endif
   116 JDK_SRC_AVAILABLE := $(call MkExists,$(JDK_TOPDIR)/make/Makefile)
   117 ifndef BUILD_JDK
   118   BUILD_JDK := $(JDK_SRC_AVAILABLE)
   119 endif
   120 ifeq ($(JDK_SRC_AVAILABLE),true)
   121   JDK_CLOSED_SRC_AVAILABLE := $(call MkExists,$(JDK_TOPDIR)/src/closed)
   122   ifeq ($(JDK_CLOSED_SRC_AVAILABLE),false)
   123     OPENJDK = true
   124   endif
   125 endif
   127 DEPLOY_SRC_AVAILABLE := $(call MkExists,$(DEPLOY_TOPDIR)/make/Makefile)
   128 ifndef BUILD_DEPLOY
   129   BUILD_DEPLOY := $(DEPLOY_SRC_AVAILABLE)
   130 endif
   132 INSTALL_SRC_AVAILABLE := $(call MkExists,$(INSTALL_TOPDIR)/make/Makefile)
   133 ifndef BUILD_INSTALL
   134   ifdef DEV_ONLY
   135     BUILD_INSTALL := false
   136   else
   137     BUILD_INSTALL := $(INSTALL_SRC_AVAILABLE)
   138   endif
   139 endif
   141 SPONSORS_SRC_AVAILABLE := $(call MkExists,$(SPONSORS_TOPDIR)/make/Makefile)
   142 ifndef BUILD_SPONSORS
   143   ifdef DEV_ONLY
   144     BUILD_SPONSORS := false
   145   else
   146     BUILD_SPONSORS := $(SPONSORS_SRC_AVAILABLE)
   147   endif
   148 endif
   151 # Do we build the source and openjdk binary plug bundles?
   152 BUNDLE_RULES = $(JDK_TOPDIR)/make/closed/bundles.gmk
   153 ifeq ($(SKIP_BUNDLES_BUILD), true)
   154   BUNDLE_RULES_AVAILABLE := false
   155 else 
   156   BUNDLE_RULES_AVAILABLE := $(call MkExists,$(BUNDLE_RULES))
   157 endif
   159 # Current things we do NOT build for OPENJDK
   160 ifdef OPENJDK
   161   BUILD_DEPLOY = false
   162   BUILD_INSTALL = false
   163   BUILD_SPONSORS = false
   164   BUNDLE_RULES_AVAILABLE := false
   165   # These could be over-ridden on the command line or in environment
   166   ifndef SKIP_FASTDEBUG_BUILD
   167     SKIP_FASTDEBUG_BUILD = true
   168   endif
   169   ifndef SKIP_DEBUG_BUILD
   170     SKIP_DEBUG_BUILD = true
   171   endif
   172   ifndef SKIP_COMPARE_IMAGES
   173     SKIP_COMPARE_IMAGES = true
   174   endif
   175   SKIP_OPENJDK_BUILD = true
   176 else
   178   # Various non-OPENJDK reasons to NOT build the deploy repository
   179   ifeq ($(ARCH), ia64)
   180     BUILD_DEPLOY=false
   181   endif
   182   ifeq ($(ARCH), sparcv9)
   183     BUILD_DEPLOY=false
   184   endif
   185   ifeq ($(ARCH), amd64)
   186     ifeq ($(PLATFORM), solaris)
   187       BUILD_DEPLOY=false
   188     endif
   189   endif
   191   ifndef SKIP_OPENJDK_BUILD
   192     #SKIP_OPENJDK_BUILD = false
   193     # Until 6675289 is resolved, or this feature is removed.
   194     SKIP_OPENJDK_BUILD = true
   195   endif
   196 endif
   197 ifndef SKIP_PRODUCT_BUILD
   198   SKIP_PRODUCT_BUILD = false
   199 endif
   201 # Solaris 64 bit builds are not complete enough to ever do this
   202 ifeq ($(PLATFORM)$(ARCH_DATA_MODEL),solaris64)
   203   SKIP_OPENJDK_BUILD = true
   204 endif
   206 # Many reasons why we would want to skip the comparison to previous jdk
   207 ifndef SKIP_COMPARE_IMAGES
   208   ifeq ($(BUILD_JDK), false)
   209     SKIP_COMPARE_IMAGES = true
   210   endif
   211   ifeq ($(BUILD_DEPLOY), false)
   212     SKIP_COMPARE_IMAGES = true
   213   endif
   214   ifeq ($(BUILD_INSTALL), false)
   215     SKIP_COMPARE_IMAGES = true
   216   endif
   217   ifdef DEV_ONLY
   218     SKIP_COMPARE_IMAGES = true
   219   endif
   220 endif
   222 # Select defaults if these are not set to true or false
   223 ifndef SKIP_DEBUG_BUILD
   224   SKIP_DEBUG_BUILD=true
   225 endif
   226 ifndef SKIP_FASTDEBUG_BUILD
   227   SKIP_FASTDEBUG_BUILD=false
   228 endif
   230 # Select javadoc setting GENERATE_DOCS
   231 ifndef NO_DOCS
   232   # Default value (we want javadoc run)
   233   GENERATE_DOCS=true
   234   # No DOCS build when JDK_UPDATE_VERSION set on non-OPENJDK builds
   235   ifndef OPENJDK
   236     ifdef JDK_UPDATE_VERSION
   237       GENERATE_DOCS=false
   238     endif
   239   endif
   240   # If langtools, corba, jaxp, and jaxws are not being built, 
   241   #   a full jdk javadoc is not possible
   242   ifneq ($(BUILD_LANGTOOLS), true)
   243     GENERATE_DOCS=false
   244   endif
   245   ifneq ($(BUILD_CORBA), true)
   246     GENERATE_DOCS=false
   247   endif
   248   ifneq ($(BUILD_JAXP), true)
   249     GENERATE_DOCS=false
   250   endif
   251   ifneq ($(BUILD_JAXWS), true)
   252     GENERATE_DOCS=false
   253   endif
   254   ifeq ($(GENERATE_DOCS),false)
   255     NO_DOCS=true
   256   endif
   257 else
   258   GENERATE_DOCS=false
   259 endif
   261 # Output directory for hotspot build
   262 HOTSPOT_DIR = $(ABS_OUTPUTDIR)/hotspot
   264 # If we are building components
   265 ifndef ALT_LANGTOOLS_DIST
   266   LANGTOOLS_OUTPUTDIR = $(ABS_OUTPUTDIR)/langtools
   267   ABS_LANGTOOLS_DIST = $(LANGTOOLS_OUTPUTDIR)/dist
   268 endif
   269 ifndef ALT_CORBA_DIST
   270   CORBA_OUTPUTDIR = $(ABS_OUTPUTDIR)/corba
   271   ABS_CORBA_DIST = $(CORBA_OUTPUTDIR)/dist
   272 endif
   273 ifndef ALT_JAXP_DIST
   274   JAXP_OUTPUTDIR = $(ABS_OUTPUTDIR)/jaxp
   275   ABS_JAXP_DIST = $(JAXP_OUTPUTDIR)/dist
   276 endif
   277 ifndef ALT_JAXWS_DIST
   278   JAXWS_OUTPUTDIR = $(ABS_OUTPUTDIR)/jaxws
   279   ABS_JAXWS_DIST = $(JAXWS_OUTPUTDIR)/dist
   280 endif
   282 # Common make arguments (supplied to all component builds)
   283 COMMON_BUILD_ARGUMENTS = \
   284     JDK_TOPDIR=$(ABS_JDK_TOPDIR) \
   285     JDK_MAKE_SHARED_DIR=$(ABS_JDK_TOPDIR)/make/common/shared \
   286     EXTERNALSANITYCONTROL=true \
   287     SOURCE_LANGUAGE_VERSION=$(SOURCE_LANGUAGE_VERSION) \
   288     TARGET_CLASS_VERSION=$(TARGET_CLASS_VERSION) \
   289     MILESTONE=$(MILESTONE) \
   290     BUILD_NUMBER=$(BUILD_NUMBER) \
   291     JDK_BUILD_NUMBER=$(JDK_BUILD_NUMBER) \
   292     FULL_VERSION=$(FULL_VERSION) \
   293     PREVIOUS_JDK_VERSION=$(PREVIOUS_JDK_VERSION) \
   294     JDK_VERSION=$(JDK_VERSION) \
   295     JDK_MKTG_VERSION=$(JDK_MKTG_VERSION) \
   296     JDK_MAJOR_VERSION=$(JDK_MAJOR_VERSION) \
   297     JDK_MINOR_VERSION=$(JDK_MINOR_VERSION) \
   298     JDK_MICRO_VERSION=$(JDK_MICRO_VERSION) \
   299     PREVIOUS_MAJOR_VERSION=$(PREVIOUS_MAJOR_VERSION) \
   300     PREVIOUS_MINOR_VERSION=$(PREVIOUS_MINOR_VERSION) \
   301     PREVIOUS_MICRO_VERSION=$(PREVIOUS_MICRO_VERSION)
   303 ifdef ARCH_DATA_MODEL
   304   COMMON_BUILD_ARGUMENTS += ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)
   305 endif
   307 ifeq ($(DEBUG_NAME), debug)
   308   COMMON_BUILD_ARGUMENTS += VARIANT=DBG DEBUG_CLASSFILES=true
   309 endif
   311 ifeq ($(DEBUG_NAME), fastdebug)
   312   COMMON_BUILD_ARGUMENTS += VARIANT=DBG FASTDEBUG=true DEBUG_CLASSFILES=true
   313 endif
   315 ifdef COOKED_JDK_UPDATE_VERSION
   316   COMMON_BUILD_ARGUMENTS += COOKED_JDK_UPDATE_VERSION=$(COOKED_JDK_UPDATE_VERSION)
   317 endif
   319 ifdef COOKED_BUILD_NUMBER
   320   COMMON_BUILD_ARGUMENTS += COOKED_BUILD_NUMBER=$(COOKED_BUILD_NUMBER)
   321 endif
   323 ifdef ANT_HOME
   324   COMMON_BUILD_ARGUMENTS += ANT_HOME="$(ANT_HOME)"
   325 endif

mercurial