common/autoconf/spec.gmk.in

Mon, 14 Sep 2020 16:42:03 +0100

author
andrew
date
Mon, 14 Sep 2020 16:42:03 +0100
changeset 2554
7f60c2d9823e
parent 2424
3a2c8d0a600d
child 2438
f4b08401e50d
permissions
-rw-r--r--

Added tag jdk8u272-b08 for changeset 34c6baf21464

ohair@425 1 #
simonis@2406 2 # Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
ohair@425 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ohair@425 4 #
ohair@425 5 # This code is free software; you can redistribute it and/or modify it
ohair@425 6 # under the terms of the GNU General Public License version 2 only, as
ohair@425 7 # published by the Free Software Foundation. Oracle designates this
ohair@425 8 # particular file as subject to the "Classpath" exception as provided
ohair@425 9 # by Oracle in the LICENSE file that accompanied this code.
ohair@425 10 #
ohair@425 11 # This code is distributed in the hope that it will be useful, but WITHOUT
ohair@425 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ohair@425 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ohair@425 14 # version 2 for more details (a copy is included in the LICENSE file that
ohair@425 15 # accompanied this code).
ohair@425 16 #
ohair@425 17 # You should have received a copy of the GNU General Public License version
ohair@425 18 # 2 along with this work; if not, write to the Free Software Foundation,
ohair@425 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ohair@425 20 #
ohair@425 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@425 22 # or visit www.oracle.com if you need additional information or have any
ohair@425 23 # questions.
ohair@425 24 #
ohair@425 25
ohair@478 26 # Configured @DATE_WHEN_CONFIGURED@ to build
ohair@478 27 # for target system @OPENJDK_TARGET_OS@-@OPENJDK_TARGET_CPU@
ohair@478 28 # (called @OPENJDK_TARGET_AUTOCONF_NAME@ by autoconf)
ohair@478 29 # on build system @OPENJDK_BUILD_OS@-@OPENJDK_BUILD_CPU@
ohair@478 30 # (called @OPENJDK_BUILD_AUTOCONF_NAME@ by autoconf)
erikj@458 31 # using 'configure @CONFIGURE_COMMAND_LINE@'
ohair@425 32
ihse@839 33 # When calling macros, the spaces between arguments are
ihse@839 34 # often semantically important! Sometimes we need to subst
ohair@425 35 # spaces and commas, therefore we need the following macros.
ohair@425 36 X:=
ohair@425 37 SPACE:=$(X) $(X)
ohair@425 38 COMMA:=,
ohair@425 39 HASH:=\#
ohair@425 40 SQUOTE:='
ohair@425 41 #'
ohair@425 42 DQUOTE:="
ohair@425 43 #"
ohair@494 44 define NEWLINE
ohair@494 45
ohair@494 46
ohair@425 47 endef
ohair@425 48
kevinw@2211 49 # The command line given to configure.
kevinw@2211 50 CONFIGURE_COMMAND_LINE:=@CONFIGURE_COMMAND_LINE@
kevinw@2211 51
ohair@478 52 # A self-referential reference to this file.
ohair@478 53 SPEC:=@SPEC@
ohair@478 54
ohair@478 55 # Specify where the spec file is.
ohair@478 56 MAKE_ARGS="SPEC=$(SPEC)"
ohair@478 57
ohair@494 58 MAKE:=@MAKE@
ohair@425 59
erikj@713 60 # Pass along the verbosity and log level settings.
ohair@425 61 ifeq (,$(findstring VERBOSE=,$(MAKE)))
ihse@839 62 MAKE:=$(MAKE) $(VERBOSE) VERBOSE="$(VERBOSE)" LOG_LEVEL="$(LOG_LEVEL)"
ohair@425 63 endif
ohair@425 64
ohair@425 65 # No implicit variables or rules!
ohair@425 66 ifeq (,$(findstring -R,$(MAKE)))
ihse@839 67 MAKE:=$(MAKE) -R
ohair@425 68 endif
ohair@425 69
ohair@425 70 # Specify where the common include directory for makefiles is.
kevinw@2212 71 ifeq (,$(findstring -I @TOPDIR@/make/common,$(MAKE)))
kevinw@2212 72 MAKE:=$(MAKE) -I @TOPDIR@/make/common
ohair@425 73 endif
ohair@425 74
erikj@445 75 # The "human readable" name of this configuration
erikj@445 76 CONF_NAME:=@CONF_NAME@
erikj@445 77
erikj@458 78 # The built jdk will run in this target system.
erikj@458 79 OPENJDK_TARGET_OS:=@OPENJDK_TARGET_OS@
erikj@458 80 OPENJDK_TARGET_OS_API:=@OPENJDK_TARGET_OS_API@
ohair@494 81 OPENJDK_TARGET_OS_ENV:=@OPENJDK_TARGET_OS_ENV@
erikj@458 82
erikj@458 83 OPENJDK_TARGET_CPU:=@OPENJDK_TARGET_CPU@
erikj@458 84 OPENJDK_TARGET_CPU_ARCH:=@OPENJDK_TARGET_CPU_ARCH@
erikj@458 85 OPENJDK_TARGET_CPU_BITS:=@OPENJDK_TARGET_CPU_BITS@
erikj@458 86 OPENJDK_TARGET_CPU_ENDIAN:=@OPENJDK_TARGET_CPU_ENDIAN@
ohair@425 87
ohair@478 88 COMPILE_TYPE:=@COMPILE_TYPE@
ohair@478 89
ohair@478 90 # Legacy support
ohair@478 91 OPENJDK_TARGET_CPU_ISADIR:=@OPENJDK_TARGET_CPU_ISADIR@
ohair@478 92 OPENJDK_TARGET_CPU_LIBDIR:=@OPENJDK_TARGET_CPU_LIBDIR@
ohair@478 93 OPENJDK_TARGET_CPU_LEGACY:=@OPENJDK_TARGET_CPU_LEGACY@
ohair@478 94 OPENJDK_TARGET_CPU_LEGACY_LIB:=@OPENJDK_TARGET_CPU_LEGACY_LIB@
ohair@478 95 OPENJDK_TARGET_CPU_OSARCH:=@OPENJDK_TARGET_CPU_OSARCH@
ohair@478 96 OPENJDK_TARGET_CPU_JLI_CFLAGS:=@OPENJDK_TARGET_CPU_JLI_CFLAGS@
ohair@478 97 OPENJDK_TARGET_OS_API_DIR:=@OPENJDK_TARGET_OS_API_DIR@
dholmes@872 98 OPENJDK_TARGET_OS_EXPORT_DIR:=@OPENJDK_TARGET_OS_EXPORT_DIR@
ohair@478 99
ohair@425 100 # We are building on this build system.
erikj@458 101 # When not cross-compiling, it is the same as the target.
erikj@458 102 OPENJDK_BUILD_OS:=@OPENJDK_BUILD_OS@
erikj@458 103 OPENJDK_BUILD_OS_API:=@OPENJDK_BUILD_OS_API@
kevinw@2219 104 OPENJDK_BUILD_OS_ENV:=@OPENJDK_BUILD_OS_ENV@
erikj@458 105
erikj@458 106 OPENJDK_BUILD_CPU:=@OPENJDK_BUILD_CPU@
erikj@458 107 OPENJDK_BUILD_CPU_ARCH:=@OPENJDK_BUILD_CPU_ARCH@
erikj@458 108 OPENJDK_BUILD_CPU_BITS:=@OPENJDK_BUILD_CPU_BITS@
erikj@458 109 OPENJDK_BUILD_CPU_ENDIAN:=@OPENJDK_BUILD_CPU_ENDIAN@
ohair@425 110
erikj@445 111 # Legacy OS values for use in release file.
erikj@445 112 REQUIRED_OS_NAME:=@REQUIRED_OS_NAME@
erikj@445 113 REQUIRED_OS_VERSION:=@REQUIRED_OS_VERSION@
erikj@445 114
ohair@425 115 @SET_OPENJDK@
ohair@425 116 LIBM:=-lm
erikj@445 117 LIBDL:=@LIBDL@
ohair@425 118
ohair@425 119 # colon or semicolon
ohair@425 120 PATH_SEP:=@PATH_SEP@
ohair@425 121
ohair@494 122 ifeq ($(OPENJDK_TARGET_OS), windows)
ohair@494 123 # On Windows, the Visual Studio toolchain needs the LIB and INCLUDE
ohair@494 124 # environment variables (in Windows path style), and the PATH needs to
ohair@494 125 # be adjusted to include Visual Studio tools (but this needs to be in
ohair@494 126 # cygwin/msys style).
ohair@494 127 export PATH:=@VS_PATH@
ohair@494 128 export INCLUDE:=@VS_INCLUDE@
ohair@494 129 export LIB:=@VS_LIB@
ohair@494 130 endif
ohair@425 131
kevinw@2215 132 SYSROOT_CFLAGS := @SYSROOT_CFLAGS@
kevinw@2215 133 SYSROOT_LDFLAGS := @SYSROOT_LDFLAGS@
ohair@425 134
ohair@425 135 # Paths to the source code
ohair@425 136 ADD_SRC_ROOT:=@ADD_SRC_ROOT@
ohair@425 137 OVERRIDE_SRC_ROOT:=@OVERRIDE_SRC_ROOT@
kevinw@2212 138
kevinw@2212 139 # The top-level directory of the forest (SRC_ROOT is a traditional alias)
kevinw@2212 140 TOPDIR:=@TOPDIR@
kevinw@2212 141 SRC_ROOT:=@TOPDIR@
kevinw@2212 142
ohair@425 143 OUTPUT_ROOT:=@OUTPUT_ROOT@
ohair@425 144 JDK_TOPDIR:=@JDK_TOPDIR@
ohair@425 145 LANGTOOLS_TOPDIR:=@LANGTOOLS_TOPDIR@
ohair@425 146 CORBA_TOPDIR:=@CORBA_TOPDIR@
ohair@425 147 JAXP_TOPDIR:=@JAXP_TOPDIR@
ohair@425 148 JAXWS_TOPDIR:=@JAXWS_TOPDIR@
ohair@425 149 HOTSPOT_TOPDIR:=@HOTSPOT_TOPDIR@
jjg@645 150 NASHORN_TOPDIR:=@NASHORN_TOPDIR@
ohair@425 151 COPYRIGHT_YEAR:=@COPYRIGHT_YEAR@
ohair@425 152
simonis@2406 153 # Platform naming variables
simonis@2406 154 LAUNCHER_NAME:=@LAUNCHER_NAME@
simonis@2406 155 PRODUCT_NAME:=@PRODUCT_NAME@
simonis@2406 156 PRODUCT_SUFFIX:=@PRODUCT_SUFFIX@
simonis@2406 157 JDK_RC_PLATFORM_NAME:=@JDK_RC_PLATFORM_NAME@
simonis@2406 158 COMPANY_NAME:=@COMPANY_NAME@
simonis@2406 159 MACOSX_BUNDLE_NAME_BASE=@MACOSX_BUNDLE_NAME_BASE@
simonis@2406 160 MACOSX_BUNDLE_ID_BASE=@MACOSX_BUNDLE_ID_BASE@
simonis@2406 161 VENDOR_URL:=@VENDOR_URL@
simonis@2406 162 VENDOR_URL_BUG:=@VENDOR_URL_BUG@
simonis@2406 163 VENDOR_URL_VM_BUG:=@VENDOR_URL_VM_BUG@
simonis@2406 164
ohair@478 165 # Location where build customization files may be found
ohair@478 166 CUSTOM_MAKE_DIR:=@CUSTOM_MAKE_DIR@
ohair@478 167
ohair@425 168 # Information gathered from the version.numbers file.
ohair@425 169 JDK_MAJOR_VERSION:=@JDK_MAJOR_VERSION@
ohair@425 170 JDK_MINOR_VERSION:=@JDK_MINOR_VERSION@
ohair@425 171 JDK_MICRO_VERSION:=@JDK_MICRO_VERSION@
ohair@425 172 JDK_UPDATE_VERSION:=@JDK_UPDATE_VERSION@
ohair@425 173 JDK_BUILD_NUMBER:=@JDK_BUILD_NUMBER@
ohair@425 174 MILESTONE:=@MILESTONE@
erikj@813 175 USER_RELEASE_SUFFIX=@USER_RELEASE_SUFFIX@
ohair@425 176
simonis@2406 177 ifneq ($(COMPANY_NAME),)
simonis@2406 178 # COMPANY_NAME is set to "N/A" in $AUTOCONF_DIR/version-numbers by default,
simonis@2406 179 # but can be customized with the '--with-vendor-name' configure option.
simonis@2406 180 # Only export "VENDOR" to the build if COMPANY_NAME contains a real value.
simonis@2406 181 # Otherwise the default value for VENDOR, which is used to set the "java.vendor"
simonis@2406 182 # and "java.vm.vendor" properties is hard-coded into the source code (i.e. in
simonis@2406 183 # System.c in the jdk for "vm.vendor" and vm_version.cpp in the VM for "java.vm.vendor")
simonis@2406 184 ifneq ($(COMPANY_NAME), N/A)
simonis@2406 185 VERSION_CFLAGS += -DVENDOR='"$(COMPANY_NAME)"'
simonis@2406 186 endif
simonis@2406 187 endif
simonis@2406 188
simonis@2406 189 # Only export VENDOR_URL, VENDOR_URL_BUG and VENDOR_VM_URL_BUG to the build if
simonis@2406 190 # they are not empty. Otherwise, default values which are defined in the sources
simonis@2406 191 # will be used.
simonis@2406 192 ifneq ($(VENDOR_URL),)
simonis@2406 193 VERSION_CFLAGS += -DVENDOR_URL='"$(VENDOR_URL)"'
simonis@2406 194 endif
simonis@2406 195 ifneq ($(VENDOR_URL_BUG),)
simonis@2406 196 VERSION_CFLAGS += -DVENDOR_URL_BUG='"$(VENDOR_URL_BUG)"'
simonis@2406 197 endif
simonis@2406 198 ifneq ($(VENDOR_URL_VM_BUG),)
simonis@2406 199 VERSION_CFLAGS += -DVENDOR_URL_VM_BUG='"$(VENDOR_URL_VM_BUG)"'
simonis@2406 200 endif
simonis@2406 201
ohair@425 202 # Different version strings generated from the above information.
ohair@425 203 JDK_VERSION:=@JDK_VERSION@
erikj@562 204 RUNTIME_NAME=$(PRODUCT_NAME) $(PRODUCT_SUFFIX)
erikj@1404 205 COOKED_JDK_UPDATE_VERSION:=@COOKED_JDK_UPDATE_VERSION@
ohair@425 206 COOKED_BUILD_NUMBER:=@COOKED_BUILD_NUMBER@
erikj@561 207 # These variables need to be generated here so that MILESTONE and
erikj@561 208 # JDK_BUILD_NUMBER can be overridden on the make command line.
erikj@935 209 ifeq ($(MILESTONE), fcs)
erikj@561 210 RELEASE=$(JDK_VERSION)$(BUILD_VARIANT_RELEASE)
erikj@561 211 else
erikj@561 212 RELEASE=$(JDK_VERSION)-$(MILESTONE)$(BUILD_VARIANT_RELEASE)
erikj@561 213 endif
erikj@813 214
ihse@839 215 ifneq ($(USER_RELEASE_SUFFIX), )
erikj@561 216 FULL_VERSION=$(RELEASE)-$(USER_RELEASE_SUFFIX)-$(JDK_BUILD_NUMBER)
erikj@561 217 else
erikj@561 218 FULL_VERSION=$(RELEASE)-$(JDK_BUILD_NUMBER)
erikj@561 219 endif
erikj@562 220 JRE_RELEASE_VERSION:=$(FULL_VERSION)
ohair@425 221
ohair@425 222 # How to compile the code: release, fastdebug or slowdebug
ohair@425 223 DEBUG_LEVEL:=@DEBUG_LEVEL@
ohair@425 224
ohair@425 225 # This is the JDK variant to build.
ohair@425 226 # The JDK variant is a name for a specific set of modules to be compiled for the JDK.
ohair@425 227 JDK_VARIANT:=@JDK_VARIANT@
ohair@425 228
ohair@425 229 # Should we compile support for running with a graphical UI? (ie headful)
ohair@425 230 # Should we compile support for running without? (ie headless)
ohair@425 231 SUPPORT_HEADFUL:=@SUPPORT_HEADFUL@
ohair@425 232 SUPPORT_HEADLESS:=@SUPPORT_HEADLESS@
ohair@425 233 # Legacy defines controlled by the SUPPORT_HEADLESS and SUPPORT_HEADFUL options.
ohair@425 234 @BUILD_HEADLESS@
ohair@425 235
ohair@425 236 # These are the libjvms that we want to build.
ohair@425 237 # The java launcher uses the default.
dholmes@542 238 # The others can be selected by specifying -client -server -minimal1 -kernel -zero or -zeroshark
ohair@425 239 # on the java launcher command line.
ohair@425 240 JVM_VARIANTS:=@JVM_VARIANTS@
ohair@425 241 JVM_VARIANT_SERVER:=@JVM_VARIANT_SERVER@
ohair@425 242 JVM_VARIANT_CLIENT:=@JVM_VARIANT_CLIENT@
dholmes@542 243 JVM_VARIANT_MINIMAL1:=@JVM_VARIANT_MINIMAL1@
ohair@425 244 JVM_VARIANT_KERNEL:=@JVM_VARIANT_KERNEL@
ohair@425 245 JVM_VARIANT_ZERO:=@JVM_VARIANT_ZERO@
ohair@425 246 JVM_VARIANT_ZEROSHARK:=@JVM_VARIANT_ZEROSHARK@
simonis@965 247 JVM_VARIANT_CORE:=@JVM_VARIANT_CORE@
ohair@425 248
ohair@478 249 # Universal binaries on macosx
ohair@478 250 MACOSX_UNIVERSAL=@MACOSX_UNIVERSAL@
ohair@478 251
ohair@425 252 # Legacy setting: -debug or -fastdebug
ohair@478 253 # Still used in version string...
ohair@425 254 BUILD_VARIANT_RELEASE:=@BUILD_VARIANT_RELEASE@
ohair@425 255
ohair@478 256 # JDK_OUTPUTDIR specifies where a working jvm is built.
ohair@425 257 # You can run $(JDK_OUTPUTDIR)/bin/java
ohair@425 258 # Though the layout of the contents of $(JDK_OUTPUTDIR) is not
ohair@425 259 # yet the same as a default installation.
ohair@478 260 #
ohair@425 261 # When you run "make install" it will create the standardized
ohair@478 262 # layout for the jdk and the jre inside the IMAGES_OUTPUTDIR subdir.
ohair@425 263 # Then it will copy the contents of the jdk into the installation
ohair@425 264 # directory.
erikj@458 265
ohair@478 266 BUILD_OUTPUT:=@BUILD_OUTPUT@
erikj@668 267 # Colon left out to be able to override IMAGES_OUTPUTDIR for bootcycle-images
ohair@478 268 LANGTOOLS_OUTPUTDIR=$(BUILD_OUTPUT)/langtools
ohair@478 269 CORBA_OUTPUTDIR=$(BUILD_OUTPUT)/corba
ohair@478 270 JAXP_OUTPUTDIR=$(BUILD_OUTPUT)/jaxp
ohair@478 271 JAXWS_OUTPUTDIR=$(BUILD_OUTPUT)/jaxws
ohair@478 272 HOTSPOT_OUTPUTDIR=$(BUILD_OUTPUT)/hotspot
ohair@478 273 JDK_OUTPUTDIR=$(BUILD_OUTPUT)/jdk
jjg@645 274 NASHORN_OUTPUTDIR=$(BUILD_OUTPUT)/nashorn
ohair@478 275 IMAGES_OUTPUTDIR=$(BUILD_OUTPUT)/images
erikj@458 276
ohair@478 277 LANGTOOLS_DIST=$(LANGTOOLS_OUTPUTDIR)/dist
ohair@478 278 CORBA_DIST=$(CORBA_OUTPUTDIR)/dist
ohair@478 279 JAXP_DIST=$(JAXP_OUTPUTDIR)/dist
ohair@478 280 JAXWS_DIST=$(JAXWS_OUTPUTDIR)/dist
tbell@506 281 HOTSPOT_DIST=@HOTSPOT_DIST@
jjg@645 282 NASHORN_DIST=$(NASHORN_OUTPUTDIR)/dist
tbell@506 283
tbell@506 284 BUILD_HOTSPOT=@BUILD_HOTSPOT@
ohair@425 285
ohair@425 286 # The boot jdk to use
ohair@425 287 BOOT_JDK:=@BOOT_JDK@
ohair@425 288 BOOT_RTJAR:=@BOOT_RTJAR@
ohair@478 289 BOOT_TOOLSJAR=$(BOOT_JDK)/lib/tools.jar
ohair@425 290
ohair@425 291 # When compiling Java source to be run by the boot jdk
ohair@425 292 # use these extra flags, eg -source 6 -target 6
ohair@425 293 BOOT_JDK_SOURCETARGET:=@BOOT_JDK_SOURCETARGET@
ohair@425 294
ohair@425 295 # Information about the build system
ohair@425 296 NUM_CORES:=@NUM_CORES@
ohair@478 297 # Enable sjavac support = use a javac server,
ohair@478 298 # multi core javac compilation and dependency tracking.
ohair@478 299 ENABLE_SJAVAC:=@ENABLE_SJAVAC@
ohair@478 300 # Store sjavac server synchronization files here, and
ohair@478 301 # the sjavac server log files.
ohair@478 302 SJAVAC_SERVER_DIR:=@SJAVAC_SERVER_DIR@
ohair@425 303
erikj@635 304 # Number of parallel jobs to use for compilation
erikj@635 305 JOBS?=@JOBS@
erikj@635 306
ihse@868 307 FREETYPE_LIBS:=@FREETYPE_LIBS@
ihse@868 308 FREETYPE_CFLAGS:=@FREETYPE_CFLAGS@
ihse@868 309 FREETYPE_BUNDLE_LIB_PATH=@FREETYPE_BUNDLE_LIB_PATH@
ihse@2418 310 FONTCONFIG_CFLAGS:=@FONTCONFIG_CFLAGS@
ohair@425 311 CUPS_CFLAGS:=@CUPS_CFLAGS@
erikj@737 312 ALSA_LIBS:=@ALSA_LIBS@
erikj@737 313 ALSA_CFLAGS:=@ALSA_CFLAGS@
ohair@425 314
ohair@425 315 PACKAGE_PATH=@PACKAGE_PATH@
ohair@425 316
erikj@445 317 # Source file for cacerts
erikj@445 318 CACERTS_FILE=@CACERTS_FILE@
ohair@425 319
ihse@495 320 # Enable unlimited crypto policy
ihse@495 321 UNLIMITED_CRYPTO=@UNLIMITED_CRYPTO@
ihse@495 322
ihse@839 323 # Necessary additional compiler flags to compile X11
ohair@425 324 X_CFLAGS:=@X_CFLAGS@
ohair@425 325 X_LIBS:=@X_LIBS@
ohair@425 326
erikj@621 327 # The lowest required version of macosx to enforce compatiblity for
erikj@631 328 MACOSX_VERSION_MIN=@MACOSX_VERSION_MIN@
erikj@621 329
kevinw@2206 330 # Toolchain type: gcc, clang, solstudio, lxc, microsoft...
kevinw@2206 331 TOOLCHAIN_TYPE:=@TOOLCHAIN_TYPE@
ohair@425 332
simonis@971 333 # Option used to tell the compiler whether to create 32- or 64-bit executables
simonis@971 334 COMPILER_TARGET_BITS_FLAG:=@COMPILER_TARGET_BITS_FLAG@
omajid@695 335 COMPILER_SUPPORTS_TARGET_BITS_FLAG=@COMPILER_SUPPORTS_TARGET_BITS_FLAG@
omajid@695 336
ohair@425 337 CC_OUT_OPTION:=@CC_OUT_OPTION@
ohair@425 338 EXE_OUT_OPTION:=@EXE_OUT_OPTION@
ohair@425 339 LD_OUT_OPTION:=@LD_OUT_OPTION@
ohair@425 340 AR_OUT_OPTION:=@AR_OUT_OPTION@
ohair@425 341
ohair@425 342 # Flags used for overriding the default opt setting for a C/C++ source file.
erikj@445 343 C_O_FLAG_HIGHEST:=@C_O_FLAG_HIGHEST@
ohair@425 344 C_O_FLAG_HI:=@C_O_FLAG_HI@
ohair@425 345 C_O_FLAG_NORM:=@C_O_FLAG_NORM@
ohair@425 346 C_O_FLAG_NONE:=@C_O_FLAG_NONE@
erikj@445 347 CXX_O_FLAG_HIGHEST:=@CXX_O_FLAG_HIGHEST@
ohair@425 348 CXX_O_FLAG_HI:=@CXX_O_FLAG_HI@
ohair@425 349 CXX_O_FLAG_NORM:=@CXX_O_FLAG_NORM@
ohair@425 350 CXX_O_FLAG_NONE:=@CXX_O_FLAG_NONE@
ohair@425 351
erikj@445 352 C_FLAG_DEPS:=@C_FLAG_DEPS@
erikj@445 353 CXX_FLAG_DEPS:=@CXX_FLAG_DEPS@
erikj@445 354
ohair@425 355 # Tools that potentially need to be cross compilation aware.
ohair@494 356 CC:=@FIXPATH@ @CCACHE@ @CC@
ohair@425 357
ohair@425 358 # CFLAGS used to compile the jdk native libraries (C-code)
sgehwolf@2424 359 FDLIBM_CFLAGS:=@FDLIBM_CFLAGS@
ohair@425 360 CFLAGS_JDKLIB:=@CFLAGS_JDKLIB@
ohair@425 361 CXXFLAGS_JDKLIB:=@CXXFLAGS_JDKLIB@
ohair@425 362
ohair@425 363 # CFLAGS used to compile the jdk native launchers (C-code)
ohair@425 364 CFLAGS_JDKEXE:=@CFLAGS_JDKEXE@
ohair@425 365 CXXFLAGS_JDKEXE:=@CXXFLAGS_JDKEXE@
ohair@425 366
andrew@1862 367 NO_DELETE_NULL_POINTER_CHECKS_CFLAG=@NO_DELETE_NULL_POINTER_CHECKS_CFLAG@
andrew@1862 368 NO_LIFETIME_DSE_CFLAG=@NO_LIFETIME_DSE_CFLAG@
andrew@1862 369 CXXSTD_CXXFLAG=@CXXSTD_CXXFLAG@
andrew@1862 370
ohair@494 371 CXX:=@FIXPATH@ @CCACHE@ @CXX@
ohair@425 372 #CXXFLAGS:=@CXXFLAGS@
ohair@425 373
ohair@425 374 OBJC:=@CCACHE@ @OBJC@
ohair@425 375 #OBJCFLAGS:=@OBJCFLAGS@
ohair@425 376
ohair@494 377 CPP:=@FIXPATH@ @CPP@
ohair@425 378 #CPPFLAGS:=@CPPFLAGS@
ohair@425 379
ohair@478 380 # The linker can be gcc or ld on posix systems, or link.exe on windows systems.
ohair@494 381 LD:=@FIXPATH@ @LD@
ohair@425 382
ddehaven@1304 383 ifeq ($(OPENJDK_TARGET_OS), macosx)
ddehaven@1304 384 # Xcode SDK and tools path
ddehaven@1304 385 SDKPATH:=@SDKPATH@
ddehaven@1304 386 @SET_DEVELOPER_DIR@
ddehaven@1304 387 endif
ddehaven@1304 388
simonis@965 389 # The linker on older SuSE distros (e.g. on SLES 10) complains with:
simonis@965 390 # "Invalid version tag `SUNWprivate_1.1'. Only anonymous version tag is allowed in executable."
simonis@965 391 # if feeded with a version script which contains named tags.
simonis@965 392 USING_BROKEN_SUSE_LD:=@USING_BROKEN_SUSE_LD@
simonis@965 393
ohair@425 394 # LDFLAGS used to link the jdk native libraries (C-code)
ohair@425 395 LDFLAGS_JDKLIB:=@LDFLAGS_JDKLIB@
ohair@425 396 LDFLAGS_JDKLIB_SUFFIX:=@LDFLAGS_JDKLIB_SUFFIX@
ohair@425 397
ohair@425 398 # On some platforms the linker cannot be used to create executables, thus
ohair@425 399 # the need for a separate LDEXE command.
ohair@494 400 LDEXE:=@FIXPATH@ @LDEXE@
ohair@425 401
ohair@425 402 # LDFLAGS used to link the jdk native launchers (C-code)
ohair@425 403 LDFLAGS_JDKEXE:=@LDFLAGS_JDKEXE@
ohair@425 404 LDFLAGS_JDKEXE_SUFFIX:=@LDFLAGS_JDKEXE_SUFFIX@
ohair@425 405
ohair@478 406 # LDFLAGS specific to C++ linking.
ohair@478 407 LDFLAGS_CXX_JDK:=@LDFLAGS_CXX_JDK@
ohair@478 408
ohair@425 409 # Sometimes a different linker is needed for c++ libs
ohair@494 410 LDCXX:=@FIXPATH@ @LDCXX@
ohair@425 411 # The flags for linking libstdc++ linker.
ohair@425 412 LIBCXX:=@LIBCXX@
ohair@425 413
ohair@425 414 # Sometimes a different linker is needed for c++ executables
ohair@494 415 LDEXECXX:=@FIXPATH@ @LDEXECXX@
ohair@425 416
ohair@478 417 # BUILD_CC/BUILD_LD is a compiler/linker that generates code that is runnable on the
ohair@478 418 # build platform.
ohair@494 419 BUILD_CC:=@FIXPATH@ @BUILD_CC@
ohair@494 420 BUILD_LD:=@FIXPATH@ @BUILD_LD@
erikj@458 421
ohair@494 422 AS:=@FIXPATH@ @AS@
ohair@425 423
ohair@478 424 # AR is used to create a static library (is ar in posix, lib.exe in windows)
ohair@494 425 AR:=@FIXPATH@ @AR@
ohair@425 426 ARFLAGS:=@ARFLAGS@
ohair@425 427
ohair@478 428 NM:=@NM@
erikj@672 429 GNM:=@GNM@
ohair@478 430 STRIP:=@STRIP@
ohair@478 431 MCS:=@MCS@
ohair@478 432
ohair@425 433 # Command to create a shared library
ohair@425 434 SHARED_LIBRARY_FLAGS:=@SHARED_LIBRARY_FLAGS@
ohair@425 435
ihse@839 436 # Options to linker to specify a mapfile.
ohair@425 437 # (Note absence of := assignment, because we do not want to evaluate the macro body here)
ohair@425 438 SET_SHARED_LIBRARY_MAPFILE=@SET_SHARED_LIBRARY_MAPFILE@
ohair@425 439
erikj@445 440 # Options for C/CXX compiler to be used if linking is performed
erikj@445 441 # using reorder file
erikj@445 442 C_FLAG_REORDER:=@C_FLAG_REORDER@
erikj@445 443 CXX_FLAG_REORDER:=@CXX_FLAG_REORDER@
erikj@445 444
erikj@458 445 #
erikj@458 446 # Options for generating debug symbols
erikj@458 447 ENABLE_DEBUG_SYMBOLS:=@ENABLE_DEBUG_SYMBOLS@
erikj@458 448 CFLAGS_DEBUG_SYMBOLS:=@CFLAGS_DEBUG_SYMBOLS@
sgehwolf@2322 449 ASFLAGS_DEBUG_SYMBOLS:=@ASFLAGS_DEBUG_SYMBOLS@
erikj@458 450 CXXFLAGS_DEBUG_SYMBOLS:=@CXXFLAGS_DEBUG_SYMBOLS@
erikj@458 451 ZIP_DEBUGINFO_FILES:=@ZIP_DEBUGINFO_FILES@
sgehwolf@2236 452 STRIP_POLICY:=@STRIP_POLICY@
sgehwolf@2236 453 DEBUG_BINARIES:=@DEBUG_BINARIES@
erikj@458 454
erikj@458 455 #
erikj@458 456 # Compress (or not) jars
erikj@458 457 COMPRESS_JARS=@COMPRESS_JARS@
erikj@458 458
ohair@425 459 # Options to linker to specify the library name.
ohair@425 460 # (Note absence of := assignment, because we do not want to evaluate the macro body here)
ohair@425 461 SET_SHARED_LIBRARY_NAME=@SET_SHARED_LIBRARY_NAME@
ohair@425 462
ohair@425 463 # Set origin using the linker, ie use the relative path to the dependent library to find the dependees.
ohair@425 464 # (Note absence of := assignment, because we do not want to evaluate the macro body here)
ohair@425 465 SET_SHARED_LIBRARY_ORIGIN=@SET_SHARED_LIBRARY_ORIGIN@
ohair@478 466 SET_EXECUTABLE_ORIGIN=@SET_EXECUTABLE_ORIGIN@
ohair@425 467
ohair@425 468 # Different OS:es have different ways of naming shared libraries.
ohair@425 469 # The SHARED_LIBRARY macro takes "verify" as and argument and returns:
ohair@425 470 # "libverify.so" or "libverify.dylib" or "verify.dll" depending on platform.
ohair@425 471 # (Note absence of := assignment, because we do not want to evaluate the macro body here)
ohair@425 472 SHARED_LIBRARY=@SHARED_LIBRARY@
ohair@425 473 STATIC_LIBRARY=@STATIC_LIBRARY@
ohair@425 474 LIBRARY_PREFIX:=@LIBRARY_PREFIX@
ohair@425 475 SHARED_LIBRARY_SUFFIX:=@SHARED_LIBRARY_SUFFIX@
ohair@425 476 STATIC_LIBRARY_SUFFIX:=@STATIC_LIBRARY_SUFFIX@
ohair@425 477 EXE_SUFFIX:=@EXE_SUFFIX@
ohair@425 478 OBJ_SUFFIX:=@OBJ_SUFFIX@
ohair@425 479
erikj@445 480 POST_STRIP_CMD:=@POST_STRIP_CMD@
erikj@445 481 POST_MCS_CMD:=@POST_MCS_CMD@
erikj@445 482
erikj@1187 483 JAVA_FLAGS:=@JAVA_FLAGS@
erikj@1187 484 JAVA_FLAGS_BIG:=@JAVA_FLAGS_BIG@
erikj@1187 485 JAVA_FLAGS_SMALL:=@JAVA_FLAGS_SMALL@
ohair@425 486
erikj@1187 487 JAVA=@FIXPATH@ $(BOOT_JDK)/bin/java $(JAVA_FLAGS_BIG) $(JAVA_FLAGS)
erikj@1187 488 JAVA_SMALL=@FIXPATH@ $(BOOT_JDK)/bin/java $(JAVA_FLAGS_SMALL) $(JAVA_FLAGS)
ohair@425 489
ohair@494 490 JAVAC=@FIXPATH@ $(BOOT_JDK)/bin/javac
ohair@478 491 # Hotspot sets this variable before reading the SPEC when compiling sa-jdi.jar. Avoid
ohair@478 492 # overriding that value by using ?=.
ohair@478 493 JAVAC_FLAGS?=@JAVAC_FLAGS@
ohair@425 494
ohair@494 495 JAVAH=@FIXPATH@ $(BOOT_JDK)/bin/javah
ohair@425 496
ohair@494 497 JAR=@FIXPATH@ $(BOOT_JDK)/bin/jar
ohair@425 498
ohair@494 499 RMIC=@FIXPATH@ $(BOOT_JDK)/bin/rmic
ohair@425 500
erikj@1187 501 NATIVE2ASCII=@FIXPATH@ $(BOOT_JDK)/bin/native2ascii $(addprefix -J, $(JAVA_FLAGS_SMALL))
ohair@425 502
erikj@563 503 JARSIGNER=@FIXPATH@ $(BOOT_JDK)/bin/jarsigner
erikj@563 504
ohrstrom@607 505 # You run the new javac using the boot jdk with $(BOOT_JDK)/bin/java $(NEW_JAVAC) ...
ohrstrom@607 506 BOOTSTRAP_JAVAC_JAR:=$(LANGTOOLS_OUTPUTDIR)/dist/bootstrap/lib/javac.jar
ohrstrom@607 507 BOOTSTRAP_JAVAC_ARGS:="-Xbootclasspath/p:$(BOOTSTRAP_JAVAC_JAR)" -cp $(BOOTSTRAP_JAVAC_JAR)
ohrstrom@607 508 NEW_JAVAC = $(BOOTSTRAP_JAVAC_ARGS) com.sun.tools.javac.Main
ohrstrom@607 509 NEW_JAVADOC = $(BOOTSTRAP_JAVAC_ARGS) com.sun.tools.javadoc.Main
ohrstrom@607 510
ohair@425 511 # Base flags for RC
ohair@425 512 # Guarding this against resetting value. Legacy make files include spec multiple
ohair@425 513 # times.
ohair@425 514 ifndef RC_FLAGS
ihse@839 515 RC_FLAGS:=@RC_FLAGS@
ohair@425 516 endif
ohair@425 517
ohair@425 518 # A specific java binary with specific options can be used to run
ohair@478 519 # the long running background sjavac servers and other long running tasks.
ohair@494 520 SJAVAC_SERVER_JAVA:=@FIXPATH@ @SJAVAC_SERVER_JAVA@
ohair@425 521
ohair@425 522 # Tools adhering to a minimal and common standard of posix compliance.
ohair@425 523 AWK:=@AWK@
ohair@478 524 BASENAME:=@BASENAME@
ohair@494 525 BASH:=@BASH@
ohair@425 526 CAT:=@CAT@
ohair@425 527 CCACHE:=@CCACHE@
ohair@425 528 # CD is going away, but remains to cater for legacy makefiles.
ohair@425 529 CD:=cd
ohair@425 530 CHMOD:=@CHMOD@
erikj@725 531 CODESIGN:=@CODESIGN@
erikj@562 532 COMM:=@COMM@
ohair@425 533 CP:=@CP@
erikj@562 534 CPIO:=@CPIO@
ohair@425 535 CUT:=@CUT@
ohair@425 536 DATE:=@DATE@
ohair@425 537 DIFF:=@DIFF@
erikj@562 538 DIRNAME:=@DIRNAME@
dcubed@854 539 DSYMUTIL:=@DSYMUTIL@
ohair@425 540 FIND:=@FIND@
ohair@425 541 FIND_DELETE:=@FIND_DELETE@
ohair@425 542 ECHO:=@ECHO@
ohair@425 543 EGREP:=@EGREP@
ohair@425 544 FGREP:=@FGREP@
ohair@425 545 GREP:=@GREP@
ohair@425 546 HEAD:=@HEAD@
ohair@425 547 LS:=@LS@
ohair@425 548 LN:=@LN@
ohair@425 549 MKDIR:=@MKDIR@
ohair@425 550 MV:=@MV@
ohair@425 551 NAWK:=@NAWK@
ohair@425 552 PRINTF:=@PRINTF@
ohair@425 553 PWD:=@THEPWDCMD@
ohair@425 554 RM:=@RM@
ohair@425 555 SED:=@SED@
ohair@425 556 SH:=@SH@
ohair@425 557 SORT:=@SORT@
ohair@425 558 TAR:=@TAR@
ohair@425 559 TAIL:=@TAIL@
ohair@425 560 TEE:=@TEE@
ohair@494 561 TIME:=@TIME@
erikj@754 562 IS_GNU_TIME:=@IS_GNU_TIME@
ohair@425 563 TR:=@TR@
ohair@425 564 TOUCH:=@TOUCH@
erikj@562 565 UNIQ:=@UNIQ@
ohair@425 566 WC:=@WC@
ohair@425 567 XARGS:=@XARGS@
ohair@425 568 ZIPEXE:=@ZIP@
ohair@425 569 ZIP:=@ZIP@
ohair@425 570 UNZIP:=@UNZIP@
ohair@494 571 MT:=@FIXPATH@ @MT@
ohair@494 572 RC:=@FIXPATH@ @RC@
ohair@494 573 DUMPBIN:=@FIXPATH@ @DUMPBIN@
ohair@425 574 CYGPATH:=@CYGPATH@
ohair@425 575 LDD:=@LDD@
ohair@425 576 OTOOL:=@OTOOL@
ohair@425 577 READELF:=@READELF@
ohair@425 578 EXPR:=@EXPR@
ohair@425 579 FILE:=@FILE@
erikj@445 580 HG:=@HG@
erikj@458 581 OBJCOPY:=@OBJCOPY@
ohair@494 582 SETFILE:=@SETFILE@
erikj@670 583 XATTR:=@XATTR@
erikj@718 584 JT_HOME:=@JT_HOME@
erikj@718 585 JTREGEXE:=@JTREGEXE@
ohair@425 586
ddehaven@1304 587 XCODEBUILD=@XCODEBUILD@
ohair@494 588 FIXPATH:=@FIXPATH@
ohair@425 589
ohair@425 590 # Where the build output is stored for your convenience.
ohair@425 591 BUILD_LOG:=@BUILD_LOG@
erikj@458 592 BUILD_LOG_PREVIOUS:=@BUILD_LOG_PREVIOUS@
tbell@507 593 # Disable the build log wrapper on sjavac+winapi until
tbell@507 594 # we have solved how to prevent the log wrapper to wait
tbell@507 595 # for the background sjavac server process.
tbell@507 596 ifeq (@ENABLE_SJAVAC@X@OPENJDK_BUILD_OS_API@,yesXwinapi)
ihse@839 597 BUILD_LOG_WRAPPER:=
tbell@507 598 else
ihse@839 599 BUILD_LOG_WRAPPER:=@BUILD_LOG_WRAPPER@
tbell@507 600 endif
ohair@425 601
ohair@425 602 # Build setup
erikj@458 603 ENABLE_JFR=@ENABLE_JFR@
omajid@656 604 ENABLE_INTREE_EC=@ENABLE_INTREE_EC@
ohair@425 605 USE_EXTERNAL_LIBJPEG:=@USE_EXTERNAL_LIBJPEG@
ohair@425 606 USE_EXTERNAL_LIBGIF:=@USE_EXTERNAL_LIBGIF@
ohair@425 607 USE_EXTERNAL_LIBZ:=@USE_EXTERNAL_LIBZ@
erikj@458 608 LIBZIP_CAN_USE_MMAP:=@LIBZIP_CAN_USE_MMAP@
ohair@494 609 MSVCR_DLL:=@MSVCR_DLL@
kevinw@2223 610 MSVCP_DLL:=@MSVCP_DLL@
kevinw@2333 611 UCRT_DLL_DIR:=@UCRT_DLL_DIR@
ohair@425 612
erikj@458 613
ohair@425 614 # ADD_SRCS takes a single argument with source roots
ohair@425 615 # and appends any corresponding source roots found
ohair@425 616 # below --with-add-source-root and below
ohair@425 617 # --with-override-source-root. It is the responsibility
ohair@425 618 # of the next macro to get rid of superfluous files.
ohair@425 619 ADD_SRCS=$1
ohair@425 620 ifneq (,$(ADD_SRC_ROOT))
ihse@839 621 # Append wildcard rule to pickup any matching source roots found below ADD_SRC_ROOT
ihse@839 622 ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(ADD_SRC_ROOT),$1))
ohair@425 623 endif
ohair@425 624 ifneq (,$(OVERRIDE_SRC_ROOT))
ihse@839 625 # Append wildcard rule to pickup any matching source roots found below OVERRIDE_SRC_ROOT
ihse@839 626 ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(OVERRIDE_SRC_ROOT),$1))
ohair@425 627 endif
ohair@425 628
ohair@425 629 # OVR_SRCS creates a filter expression to filter out sources in
ohair@425 630 # the original source directory that lie inside directories below
ohair@425 631 # --with-override-source-root.
ohair@425 632 # Use := here since we want to scan for these files here. To avoid recomputation later.
ohair@425 633 # We cannot do the scan in configure, since that would force us to rerun configure when
ohair@425 634 # we add overridden sources.
ohair@425 635 ifneq (,$(OVERRIDE_SRC_ROOT))
ihse@839 636 OVR_SRCS:=$(addsuffix %,$(subst $(OVERRIDE_SRC_ROOT),$(SRC_ROOT),$(sort $(dir $(shell $(FIND) $(OVERRIDE_SRC_ROOT) -type f)))))
ohair@425 637 else
ihse@839 638 OVR_SRCS:=
ohair@425 639 endif
ohair@425 640
ohair@425 641 ####################################################
ohair@425 642 #
ohair@425 643 # INSTALLATION
ohair@425 644 #
ohair@425 645
ohair@425 646 # Common prefix for all installed files. Defaults to /usr/local,
ihse@839 647 # but /opt/myjdk is another common version.
ohair@425 648 INSTALL_PREFIX=@prefix@
ohair@425 649
ohair@425 650 # Directories containing architecture-dependent files should be relative to exec_prefix
ohair@425 651 INSTALL_EXECPREFIX=@exec_prefix@
ohair@425 652
ohair@425 653 # java,javac,javah,javap etc are installed here.
ohair@425 654 INSTALL_BINDIR=@bindir@
ohair@425 655
ohair@425 656 # Read only architecture-independent data
ohair@425 657 INSTALL_DATADIR=@datadir@
ohair@425 658
ohair@425 659 # Root of above.
ohair@425 660 INSTALL_DATAROOTDIR=@datarootdir@
ohair@425 661
ohair@425 662 # Doc files, other than info and man.
ohair@425 663 INSTALL_DOCDIR=@docdir@
ohair@425 664
ohair@425 665 # Html documentation
ohair@425 666 INSTALL_HTMLDIR=@htmldir@
ohair@425 667
ohair@425 668 # Installing C header files, JNI headers for example.
ohair@425 669 INSTALL_INCLUDEDIR=@includedir@
ohair@425 670
ohair@425 671 # Installing library files....
ohair@425 672 INSTALL_INCLUDEDIR=@libdir@
ohair@425 673
ohair@425 674 # Executables that other programs run.
ohair@425 675 INSTALL_LIBEXECDIR=@libexecdir@
ohair@425 676
ihse@839 677 # Locale-dependent but architecture-independent data, such as message catalogs.
ohair@425 678 INSTALL_LOCALEDIR=@localedir@
ohair@425 679
ohair@425 680 # Modifiable single-machine data
ohair@425 681 INSTALL_LOCALSTATEDIR=@localstatedir@
ohair@425 682
ohair@425 683 # Man pages
ohair@425 684 INSTALL_MANDIR=@mandir@
ohair@425 685
ohair@425 686 # Modifiable architecture-independent data.
ohair@425 687 INSTALL_SHAREDSTATEDIR=@sharedstatedir@
ohair@425 688
ohair@425 689 # Read-only single-machine data
ohair@425 690 INSTALL_SYSCONFDIR=@sysconfdir@
ohair@425 691
ohair@425 692
ohair@425 693 ####################################################
ohair@425 694 #
ohair@425 695 # Misc
ohair@425 696 #
ohair@425 697
erikj@445 698 # Name of Service Agent library
erikj@445 699 SALIB_NAME=@SALIB_NAME@
erikj@445 700
omajid@671 701 INCLUDE_SA=@INCLUDE_SA@
omajid@671 702
erikj@445 703 OS_VERSION_MAJOR:=@OS_VERSION_MAJOR@
erikj@445 704 OS_VERSION_MINOR:=@OS_VERSION_MINOR@
erikj@445 705 OS_VERSION_MICRO:=@OS_VERSION_MICRO@
erikj@445 706
erikj@564 707 # Images directory definitions
erikj@564 708 JDK_IMAGE_SUBDIR:=j2sdk-image
erikj@564 709 JRE_IMAGE_SUBDIR:=j2re-image
erikj@564 710 JDK_OVERLAY_IMAGE_SUBDIR:=j2sdk-overlay-image
erikj@564 711 JRE_OVERLAY_IMAGE_SUBDIR:=j2re-overlay-image
erikj@668 712 # Colon left out to be able to override output dir for bootcycle-images
erikj@668 713 JDK_IMAGE_DIR=$(IMAGES_OUTPUTDIR)/$(JDK_IMAGE_SUBDIR)
erikj@668 714 JRE_IMAGE_DIR=$(IMAGES_OUTPUTDIR)/$(JRE_IMAGE_SUBDIR)
erikj@668 715 JDK_OVERLAY_IMAGE_DIR=$(IMAGES_OUTPUTDIR)/$(JDK_OVERLAY_IMAGE_SUBDIR)
erikj@668 716 JRE_OVERLAY_IMAGE_DIR=$(IMAGES_OUTPUTDIR)/$(JRE_OVERLAY_IMAGE_SUBDIR)
erikj@564 717
erikj@564 718 # Macosx bundles directory definitions
erikj@668 719 JDK_BUNDLE_SUBDIR=j2sdk-bundle/jdk$(JDK_VERSION).jdk/Contents
erikj@668 720 JRE_BUNDLE_SUBDIR=j2re-bundle/jre$(JDK_VERSION).jre/Contents
erikj@668 721 JDK_BUNDLE_DIR=$(IMAGES_OUTPUTDIR)/$(JDK_BUNDLE_SUBDIR)
erikj@668 722 JRE_BUNDLE_DIR=$(IMAGES_OUTPUTDIR)/$(JRE_BUNDLE_SUBDIR)
erikj@564 723
ohair@478 724 # Include the custom-spec.gmk file if it exists
ohair@478 725 -include $(dir @SPEC@)/custom-spec.gmk

mercurial