Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 1 | # |
| 2 | # Copyright (c) 2011, 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. 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 | # |
| 25 | |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 26 | # Configured @DATE_WHEN_CONFIGURED@ to build |
| 27 | # for target system @OPENJDK_TARGET_OS@-@OPENJDK_TARGET_CPU@ |
| 28 | # (called @OPENJDK_TARGET_AUTOCONF_NAME@ by autoconf) |
| 29 | # on build system @OPENJDK_BUILD_OS@-@OPENJDK_BUILD_CPU@ |
| 30 | # (called @OPENJDK_BUILD_AUTOCONF_NAME@ by autoconf) |
Erik Joelsson | f7b99ca | 2012-07-03 16:11:12 -0700 | [diff] [blame] | 31 | # using 'configure @CONFIGURE_COMMAND_LINE@' |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 32 | |
| 33 | # When calling macros, the spaces between arguments are |
| 34 | # often semantically important! Sometimes we need to subst |
| 35 | # spaces and commas, therefore we need the following macros. |
| 36 | X:= |
| 37 | SPACE:=$(X) $(X) |
| 38 | COMMA:=, |
| 39 | HASH:=\# |
| 40 | SQUOTE:=' |
| 41 | #' |
| 42 | DQUOTE:=" |
| 43 | #" |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 44 | define NEWLINE |
| 45 | |
| 46 | |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 47 | endef |
| 48 | |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 49 | # A self-referential reference to this file. |
| 50 | SPEC:=@SPEC@ |
| 51 | |
| 52 | # Specify where the spec file is. |
| 53 | MAKE_ARGS="SPEC=$(SPEC)" |
| 54 | |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 55 | MAKE:=@MAKE@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 56 | |
| 57 | # Pass along the verbosity setting. |
| 58 | ifeq (,$(findstring VERBOSE=,$(MAKE))) |
| 59 | MAKE:=$(MAKE) $(VERBOSE) VERBOSE="$(VERBOSE)" |
| 60 | endif |
| 61 | |
| 62 | # No implicit variables or rules! |
| 63 | ifeq (,$(findstring -R,$(MAKE))) |
| 64 | MAKE:=$(MAKE) -R |
| 65 | endif |
| 66 | |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 67 | # Specify where the common include directory for makefiles is. |
| 68 | ifeq (,$(findstring -I @SRC_ROOT@/common/makefiles,$(MAKE))) |
| 69 | MAKE:=$(MAKE) -I @SRC_ROOT@/common/makefiles |
| 70 | endif |
| 71 | |
Erik Joelsson | 36674b9 | 2012-06-07 20:25:06 -0700 | [diff] [blame] | 72 | # The "human readable" name of this configuration |
| 73 | CONF_NAME:=@CONF_NAME@ |
| 74 | |
Erik Joelsson | f7b99ca | 2012-07-03 16:11:12 -0700 | [diff] [blame] | 75 | # The built jdk will run in this target system. |
Erik Joelsson | f7b99ca | 2012-07-03 16:11:12 -0700 | [diff] [blame] | 76 | OPENJDK_TARGET_OS:=@OPENJDK_TARGET_OS@ |
Erik Joelsson | f7b99ca | 2012-07-03 16:11:12 -0700 | [diff] [blame] | 77 | OPENJDK_TARGET_OS_API:=@OPENJDK_TARGET_OS_API@ |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 78 | OPENJDK_TARGET_OS_ENV:=@OPENJDK_TARGET_OS_ENV@ |
Erik Joelsson | f7b99ca | 2012-07-03 16:11:12 -0700 | [diff] [blame] | 79 | |
| 80 | OPENJDK_TARGET_CPU:=@OPENJDK_TARGET_CPU@ |
| 81 | OPENJDK_TARGET_CPU_ARCH:=@OPENJDK_TARGET_CPU_ARCH@ |
| 82 | OPENJDK_TARGET_CPU_BITS:=@OPENJDK_TARGET_CPU_BITS@ |
| 83 | OPENJDK_TARGET_CPU_ENDIAN:=@OPENJDK_TARGET_CPU_ENDIAN@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 84 | |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 85 | COMPILE_TYPE:=@COMPILE_TYPE@ |
| 86 | |
| 87 | # Legacy support |
| 88 | OPENJDK_TARGET_CPU_ISADIR:=@OPENJDK_TARGET_CPU_ISADIR@ |
| 89 | OPENJDK_TARGET_CPU_LIBDIR:=@OPENJDK_TARGET_CPU_LIBDIR@ |
| 90 | OPENJDK_TARGET_CPU_LEGACY:=@OPENJDK_TARGET_CPU_LEGACY@ |
| 91 | OPENJDK_TARGET_CPU_LEGACY_LIB:=@OPENJDK_TARGET_CPU_LEGACY_LIB@ |
| 92 | OPENJDK_TARGET_CPU_OSARCH:=@OPENJDK_TARGET_CPU_OSARCH@ |
| 93 | OPENJDK_TARGET_CPU_JLI_CFLAGS:=@OPENJDK_TARGET_CPU_JLI_CFLAGS@ |
| 94 | OPENJDK_TARGET_OS_API_DIR:=@OPENJDK_TARGET_OS_API_DIR@ |
| 95 | |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 96 | # We are building on this build system. |
Erik Joelsson | f7b99ca | 2012-07-03 16:11:12 -0700 | [diff] [blame] | 97 | # When not cross-compiling, it is the same as the target. |
Erik Joelsson | f7b99ca | 2012-07-03 16:11:12 -0700 | [diff] [blame] | 98 | OPENJDK_BUILD_OS:=@OPENJDK_BUILD_OS@ |
Erik Joelsson | f7b99ca | 2012-07-03 16:11:12 -0700 | [diff] [blame] | 99 | OPENJDK_BUILD_OS_API:=@OPENJDK_BUILD_OS_API@ |
| 100 | |
| 101 | OPENJDK_BUILD_CPU:=@OPENJDK_BUILD_CPU@ |
| 102 | OPENJDK_BUILD_CPU_ARCH:=@OPENJDK_BUILD_CPU_ARCH@ |
| 103 | OPENJDK_BUILD_CPU_BITS:=@OPENJDK_BUILD_CPU_BITS@ |
| 104 | OPENJDK_BUILD_CPU_ENDIAN:=@OPENJDK_BUILD_CPU_ENDIAN@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 105 | |
Erik Joelsson | 36674b9 | 2012-06-07 20:25:06 -0700 | [diff] [blame] | 106 | # Legacy OS values for use in release file. |
| 107 | REQUIRED_OS_NAME:=@REQUIRED_OS_NAME@ |
| 108 | REQUIRED_OS_VERSION:=@REQUIRED_OS_VERSION@ |
| 109 | |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 110 | @SET_OPENJDK@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 111 | LIBM:=-lm |
Erik Joelsson | 36674b9 | 2012-06-07 20:25:06 -0700 | [diff] [blame] | 112 | LIBDL:=@LIBDL@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 113 | |
| 114 | # colon or semicolon |
| 115 | PATH_SEP:=@PATH_SEP@ |
| 116 | |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 117 | ifeq ($(OPENJDK_TARGET_OS), windows) |
| 118 | # On Windows, the Visual Studio toolchain needs the LIB and INCLUDE |
| 119 | # environment variables (in Windows path style), and the PATH needs to |
| 120 | # be adjusted to include Visual Studio tools (but this needs to be in |
| 121 | # cygwin/msys style). |
| 122 | export PATH:=@VS_PATH@ |
| 123 | export INCLUDE:=@VS_INCLUDE@ |
| 124 | export LIB:=@VS_LIB@ |
| 125 | endif |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 126 | |
| 127 | # The sys root where standard headers and libraries are found. |
| 128 | # Usually not needed since the configure script should have |
| 129 | # taken it into account already when setting CFLAGS et al. |
| 130 | SYS_ROOT:=@SYS_ROOT@ |
| 131 | |
| 132 | # Paths to the source code |
| 133 | SRC_ROOT:=@SRC_ROOT@ |
| 134 | ADD_SRC_ROOT:=@ADD_SRC_ROOT@ |
| 135 | OVERRIDE_SRC_ROOT:=@OVERRIDE_SRC_ROOT@ |
| 136 | TOPDIR:=@SRC_ROOT@ |
| 137 | OUTPUT_ROOT:=@OUTPUT_ROOT@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 138 | JDK_TOPDIR:=@JDK_TOPDIR@ |
| 139 | LANGTOOLS_TOPDIR:=@LANGTOOLS_TOPDIR@ |
| 140 | CORBA_TOPDIR:=@CORBA_TOPDIR@ |
| 141 | JAXP_TOPDIR:=@JAXP_TOPDIR@ |
| 142 | JAXWS_TOPDIR:=@JAXWS_TOPDIR@ |
| 143 | HOTSPOT_TOPDIR:=@HOTSPOT_TOPDIR@ |
| 144 | COPYRIGHT_YEAR:=@COPYRIGHT_YEAR@ |
| 145 | |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 146 | # Location where build customization files may be found |
| 147 | CUSTOM_MAKE_DIR:=@CUSTOM_MAKE_DIR@ |
| 148 | |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 149 | # Information gathered from the version.numbers file. |
| 150 | JDK_MAJOR_VERSION:=@JDK_MAJOR_VERSION@ |
| 151 | JDK_MINOR_VERSION:=@JDK_MINOR_VERSION@ |
| 152 | JDK_MICRO_VERSION:=@JDK_MICRO_VERSION@ |
| 153 | JDK_UPDATE_VERSION:=@JDK_UPDATE_VERSION@ |
| 154 | JDK_BUILD_NUMBER:=@JDK_BUILD_NUMBER@ |
| 155 | MILESTONE:=@MILESTONE@ |
| 156 | LAUNCHER_NAME:=@LAUNCHER_NAME@ |
| 157 | PRODUCT_NAME:=@PRODUCT_NAME@ |
| 158 | PRODUCT_SUFFIX:=@PRODUCT_SUFFIX@ |
| 159 | JDK_RC_PLATFORM_NAME:=@JDK_RC_PLATFORM_NAME@ |
| 160 | COMPANY_NAME:=@COMPANY_NAME@ |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 161 | MACOSX_BUNDLE_NAME_BASE=@MACOSX_BUNDLE_NAME_BASE@ |
| 162 | MACOSX_BUNDLE_ID_BASE=@MACOSX_BUNDLE_ID_BASE@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 163 | |
| 164 | # Different version strings generated from the above information. |
| 165 | JDK_VERSION:=@JDK_VERSION@ |
| 166 | RUNTIME_NAME:=@RUNTIME_NAME@ |
| 167 | FULL_VERSION:=@FULL_VERSION@ |
| 168 | JRE_RELEASE_VERSION:=@FULL_VERSION@ |
| 169 | RELEASE:=@RELEASE@ |
| 170 | COOKED_BUILD_NUMBER:=@COOKED_BUILD_NUMBER@ |
| 171 | |
| 172 | # How to compile the code: release, fastdebug or slowdebug |
| 173 | DEBUG_LEVEL:=@DEBUG_LEVEL@ |
| 174 | |
| 175 | # This is the JDK variant to build. |
| 176 | # The JDK variant is a name for a specific set of modules to be compiled for the JDK. |
| 177 | JDK_VARIANT:=@JDK_VARIANT@ |
| 178 | |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 179 | # Should we compile support for running with a graphical UI? (ie headful) |
| 180 | # Should we compile support for running without? (ie headless) |
| 181 | SUPPORT_HEADFUL:=@SUPPORT_HEADFUL@ |
| 182 | SUPPORT_HEADLESS:=@SUPPORT_HEADLESS@ |
| 183 | # Legacy defines controlled by the SUPPORT_HEADLESS and SUPPORT_HEADFUL options. |
| 184 | @BUILD_HEADLESS@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 185 | |
| 186 | # These are the libjvms that we want to build. |
| 187 | # The java launcher uses the default. |
| 188 | # The other can be selected by specifying -client -server -kernel -zero or -zeroshark |
| 189 | # on the java launcher command line. |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 190 | JVM_VARIANTS:=@JVM_VARIANTS@ |
| 191 | JVM_VARIANT_SERVER:=@JVM_VARIANT_SERVER@ |
| 192 | JVM_VARIANT_CLIENT:=@JVM_VARIANT_CLIENT@ |
| 193 | JVM_VARIANT_KERNEL:=@JVM_VARIANT_KERNEL@ |
| 194 | JVM_VARIANT_ZERO:=@JVM_VARIANT_ZERO@ |
| 195 | JVM_VARIANT_ZEROSHARK:=@JVM_VARIANT_ZEROSHARK@ |
| 196 | |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 197 | # Universal binaries on macosx |
| 198 | MACOSX_UNIVERSAL=@MACOSX_UNIVERSAL@ |
| 199 | |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 200 | # Legacy setting: -debug or -fastdebug |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 201 | # Still used in version string... |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 202 | BUILD_VARIANT_RELEASE:=@BUILD_VARIANT_RELEASE@ |
| 203 | |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 204 | # JDK_OUTPUTDIR specifies where a working jvm is built. |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 205 | # You can run $(JDK_OUTPUTDIR)/bin/java |
| 206 | # Though the layout of the contents of $(JDK_OUTPUTDIR) is not |
| 207 | # yet the same as a default installation. |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 208 | # |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 209 | # When you run "make install" it will create the standardized |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 210 | # layout for the jdk and the jre inside the IMAGES_OUTPUTDIR subdir. |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 211 | # Then it will copy the contents of the jdk into the installation |
| 212 | # directory. |
Erik Joelsson | f7b99ca | 2012-07-03 16:11:12 -0700 | [diff] [blame] | 213 | |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 214 | BUILD_OUTPUT:=@BUILD_OUTPUT@ |
| 215 | LANGTOOLS_OUTPUTDIR=$(BUILD_OUTPUT)/langtools |
| 216 | CORBA_OUTPUTDIR=$(BUILD_OUTPUT)/corba |
| 217 | JAXP_OUTPUTDIR=$(BUILD_OUTPUT)/jaxp |
| 218 | JAXWS_OUTPUTDIR=$(BUILD_OUTPUT)/jaxws |
| 219 | HOTSPOT_OUTPUTDIR=$(BUILD_OUTPUT)/hotspot |
| 220 | JDK_OUTPUTDIR=$(BUILD_OUTPUT)/jdk |
| 221 | IMAGES_OUTPUTDIR=$(BUILD_OUTPUT)/images |
Erik Joelsson | f7b99ca | 2012-07-03 16:11:12 -0700 | [diff] [blame] | 222 | |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 223 | LANGTOOLS_DIST=$(LANGTOOLS_OUTPUTDIR)/dist |
| 224 | CORBA_DIST=$(CORBA_OUTPUTDIR)/dist |
| 225 | JAXP_DIST=$(JAXP_OUTPUTDIR)/dist |
| 226 | JAXWS_DIST=$(JAXWS_OUTPUTDIR)/dist |
| 227 | HOTSPOT_DIST=$(HOTSPOT_OUTPUTDIR)/dist |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 228 | |
| 229 | # The boot jdk to use |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 230 | BOOT_JDK:=@BOOT_JDK@ |
| 231 | BOOT_JDK_JVMARGS:=@BOOT_JDK_JVMARGS@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 232 | BOOT_RTJAR:=@BOOT_RTJAR@ |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 233 | BOOT_TOOLSJAR=$(BOOT_JDK)/lib/tools.jar |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 234 | |
| 235 | # When compiling Java source to be run by the boot jdk |
| 236 | # use these extra flags, eg -source 6 -target 6 |
| 237 | BOOT_JDK_SOURCETARGET:=@BOOT_JDK_SOURCETARGET@ |
| 238 | |
| 239 | # Information about the build system |
| 240 | NUM_CORES:=@NUM_CORES@ |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 241 | # Enable sjavac support = use a javac server, |
| 242 | # multi core javac compilation and dependency tracking. |
| 243 | ENABLE_SJAVAC:=@ENABLE_SJAVAC@ |
| 244 | # Store sjavac server synchronization files here, and |
| 245 | # the sjavac server log files. |
| 246 | SJAVAC_SERVER_DIR:=@SJAVAC_SERVER_DIR@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 247 | # We can block the Javac server to never use more cores than this. |
| 248 | # This is not for performance reasons, but for memory usage, since each |
| 249 | # core requires its own JavaCompiler. We might have 64 cores and 4GB |
| 250 | # of memory, 64 JavaCompilers will currently not fit in a 3GB heap. |
| 251 | # Since there is no sharing of data between the JavaCompilers. |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 252 | SJAVAC_SERVER_CORES:=@SJAVAC_SERVER_CORES@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 253 | |
| 254 | # The OpenJDK makefiles should be changed to using the standard |
| 255 | # configure output ..._CFLAGS and ..._LIBS. In the meantime we |
| 256 | # extract the information here. |
| 257 | FREETYPE2_LIB_PATH:=@FREETYPE2_LIB_PATH@ |
| 258 | FREETYPE2_LIBS:=@FREETYPE2_LIBS@ |
| 259 | FREETYPE2_CFLAGS:=@FREETYPE2_CFLAGS@ |
| 260 | USING_SYSTEM_FT_LIB=@USING_SYSTEM_FT_LIB@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 261 | CUPS_CFLAGS:=@CUPS_CFLAGS@ |
| 262 | |
| 263 | PACKAGE_PATH=@PACKAGE_PATH@ |
| 264 | |
Erik Joelsson | 36674b9 | 2012-06-07 20:25:06 -0700 | [diff] [blame] | 265 | # Source file for cacerts |
| 266 | CACERTS_FILE=@CACERTS_FILE@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 267 | |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 268 | # Necessary additional compiler flags to compile X11 |
| 269 | X_CFLAGS:=@X_CFLAGS@ |
| 270 | X_LIBS:=@X_LIBS@ |
| 271 | OPENWIN_HOME:=@OPENWIN_HOME@ |
| 272 | |
| 273 | # There are two types: CC or CL |
| 274 | # CC is gcc and others behaving reasonably similar. |
| 275 | # CL is cl.exe only. |
| 276 | COMPILER_TYPE:=@COMPILER_TYPE@ |
| 277 | |
| 278 | CC_OUT_OPTION:=@CC_OUT_OPTION@ |
| 279 | EXE_OUT_OPTION:=@EXE_OUT_OPTION@ |
| 280 | LD_OUT_OPTION:=@LD_OUT_OPTION@ |
| 281 | AR_OUT_OPTION:=@AR_OUT_OPTION@ |
| 282 | |
| 283 | # Flags used for overriding the default opt setting for a C/C++ source file. |
Erik Joelsson | 36674b9 | 2012-06-07 20:25:06 -0700 | [diff] [blame] | 284 | C_O_FLAG_HIGHEST:=@C_O_FLAG_HIGHEST@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 285 | C_O_FLAG_HI:=@C_O_FLAG_HI@ |
| 286 | C_O_FLAG_NORM:=@C_O_FLAG_NORM@ |
| 287 | C_O_FLAG_NONE:=@C_O_FLAG_NONE@ |
Erik Joelsson | 36674b9 | 2012-06-07 20:25:06 -0700 | [diff] [blame] | 288 | CXX_O_FLAG_HIGHEST:=@CXX_O_FLAG_HIGHEST@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 289 | CXX_O_FLAG_HI:=@CXX_O_FLAG_HI@ |
| 290 | CXX_O_FLAG_NORM:=@CXX_O_FLAG_NORM@ |
| 291 | CXX_O_FLAG_NONE:=@CXX_O_FLAG_NONE@ |
| 292 | |
Erik Joelsson | 36674b9 | 2012-06-07 20:25:06 -0700 | [diff] [blame] | 293 | C_FLAG_DEPS:=@C_FLAG_DEPS@ |
| 294 | CXX_FLAG_DEPS:=@CXX_FLAG_DEPS@ |
| 295 | |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 296 | # Tools that potentially need to be cross compilation aware. |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 297 | CC:=@FIXPATH@ @CCACHE@ @CC@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 298 | |
| 299 | # CFLAGS used to compile the jdk native libraries (C-code) |
| 300 | CFLAGS_JDKLIB:=@CFLAGS_JDKLIB@ |
| 301 | CXXFLAGS_JDKLIB:=@CXXFLAGS_JDKLIB@ |
| 302 | |
| 303 | # CFLAGS used to compile the jdk native launchers (C-code) |
| 304 | CFLAGS_JDKEXE:=@CFLAGS_JDKEXE@ |
| 305 | CXXFLAGS_JDKEXE:=@CXXFLAGS_JDKEXE@ |
| 306 | |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 307 | CXX:=@FIXPATH@ @CCACHE@ @CXX@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 308 | #CXXFLAGS:=@CXXFLAGS@ |
| 309 | |
| 310 | OBJC:=@CCACHE@ @OBJC@ |
| 311 | #OBJCFLAGS:=@OBJCFLAGS@ |
| 312 | |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 313 | CPP:=@FIXPATH@ @CPP@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 314 | #CPPFLAGS:=@CPPFLAGS@ |
| 315 | |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 316 | # The linker can be gcc or ld on posix systems, or link.exe on windows systems. |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 317 | LD:=@FIXPATH@ @LD@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 318 | |
| 319 | # LDFLAGS used to link the jdk native libraries (C-code) |
| 320 | LDFLAGS_JDKLIB:=@LDFLAGS_JDKLIB@ |
| 321 | LDFLAGS_JDKLIB_SUFFIX:=@LDFLAGS_JDKLIB_SUFFIX@ |
| 322 | |
| 323 | # On some platforms the linker cannot be used to create executables, thus |
| 324 | # the need for a separate LDEXE command. |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 325 | LDEXE:=@FIXPATH@ @LDEXE@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 326 | |
| 327 | # LDFLAGS used to link the jdk native launchers (C-code) |
| 328 | LDFLAGS_JDKEXE:=@LDFLAGS_JDKEXE@ |
| 329 | LDFLAGS_JDKEXE_SUFFIX:=@LDFLAGS_JDKEXE_SUFFIX@ |
| 330 | |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 331 | # LDFLAGS specific to C++ linking. |
| 332 | LDFLAGS_CXX_JDK:=@LDFLAGS_CXX_JDK@ |
| 333 | |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 334 | # Sometimes a different linker is needed for c++ libs |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 335 | LDCXX:=@FIXPATH@ @LDCXX@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 336 | # The flags for linking libstdc++ linker. |
| 337 | LIBCXX:=@LIBCXX@ |
| 338 | |
| 339 | # Sometimes a different linker is needed for c++ executables |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 340 | LDEXECXX:=@FIXPATH@ @LDEXECXX@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 341 | |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 342 | # BUILD_CC/BUILD_LD is a compiler/linker that generates code that is runnable on the |
| 343 | # build platform. |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 344 | BUILD_CC:=@FIXPATH@ @BUILD_CC@ |
| 345 | BUILD_LD:=@FIXPATH@ @BUILD_LD@ |
Erik Joelsson | f7b99ca | 2012-07-03 16:11:12 -0700 | [diff] [blame] | 346 | |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 347 | AS:=@FIXPATH@ @AS@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 348 | |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 349 | # AR is used to create a static library (is ar in posix, lib.exe in windows) |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 350 | AR:=@FIXPATH@ @AR@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 351 | ARFLAGS:=@ARFLAGS@ |
| 352 | |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 353 | NM:=@NM@ |
| 354 | STRIP:=@STRIP@ |
| 355 | MCS:=@MCS@ |
| 356 | |
| 357 | LIPO:=@LIPO@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 358 | |
| 359 | # Command to create a shared library |
| 360 | SHARED_LIBRARY_FLAGS:=@SHARED_LIBRARY_FLAGS@ |
| 361 | |
| 362 | # Options to linker to specify a mapfile. |
| 363 | # (Note absence of := assignment, because we do not want to evaluate the macro body here) |
| 364 | SET_SHARED_LIBRARY_MAPFILE=@SET_SHARED_LIBRARY_MAPFILE@ |
| 365 | |
Erik Joelsson | 36674b9 | 2012-06-07 20:25:06 -0700 | [diff] [blame] | 366 | # Options for C/CXX compiler to be used if linking is performed |
| 367 | # using reorder file |
| 368 | C_FLAG_REORDER:=@C_FLAG_REORDER@ |
| 369 | CXX_FLAG_REORDER:=@CXX_FLAG_REORDER@ |
| 370 | |
Erik Joelsson | f7b99ca | 2012-07-03 16:11:12 -0700 | [diff] [blame] | 371 | # |
| 372 | # Options for generating debug symbols |
| 373 | ENABLE_DEBUG_SYMBOLS:=@ENABLE_DEBUG_SYMBOLS@ |
| 374 | CFLAGS_DEBUG_SYMBOLS:=@CFLAGS_DEBUG_SYMBOLS@ |
| 375 | CXXFLAGS_DEBUG_SYMBOLS:=@CXXFLAGS_DEBUG_SYMBOLS@ |
| 376 | ZIP_DEBUGINFO_FILES:=@ZIP_DEBUGINFO_FILES@ |
| 377 | |
| 378 | # |
| 379 | # Compress (or not) jars |
| 380 | COMPRESS_JARS=@COMPRESS_JARS@ |
| 381 | |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 382 | # Options to linker to specify the library name. |
| 383 | # (Note absence of := assignment, because we do not want to evaluate the macro body here) |
| 384 | SET_SHARED_LIBRARY_NAME=@SET_SHARED_LIBRARY_NAME@ |
| 385 | |
| 386 | # Set origin using the linker, ie use the relative path to the dependent library to find the dependees. |
| 387 | # (Note absence of := assignment, because we do not want to evaluate the macro body here) |
| 388 | SET_SHARED_LIBRARY_ORIGIN=@SET_SHARED_LIBRARY_ORIGIN@ |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 389 | SET_EXECUTABLE_ORIGIN=@SET_EXECUTABLE_ORIGIN@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 390 | |
| 391 | # Different OS:es have different ways of naming shared libraries. |
| 392 | # The SHARED_LIBRARY macro takes "verify" as and argument and returns: |
| 393 | # "libverify.so" or "libverify.dylib" or "verify.dll" depending on platform. |
| 394 | # (Note absence of := assignment, because we do not want to evaluate the macro body here) |
| 395 | SHARED_LIBRARY=@SHARED_LIBRARY@ |
| 396 | STATIC_LIBRARY=@STATIC_LIBRARY@ |
| 397 | LIBRARY_PREFIX:=@LIBRARY_PREFIX@ |
| 398 | SHARED_LIBRARY_SUFFIX:=@SHARED_LIBRARY_SUFFIX@ |
| 399 | STATIC_LIBRARY_SUFFIX:=@STATIC_LIBRARY_SUFFIX@ |
| 400 | EXE_SUFFIX:=@EXE_SUFFIX@ |
| 401 | OBJ_SUFFIX:=@OBJ_SUFFIX@ |
| 402 | |
Erik Joelsson | 36674b9 | 2012-06-07 20:25:06 -0700 | [diff] [blame] | 403 | POST_STRIP_CMD:=@POST_STRIP_CMD@ |
| 404 | POST_MCS_CMD:=@POST_MCS_CMD@ |
| 405 | |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 406 | JAVA_FLAGS:=@BOOT_JDK_JVMARGS@ |
| 407 | |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 408 | JAVA=@FIXPATH@ $(BOOT_JDK)/bin/java $(JAVA_FLAGS) |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 409 | |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 410 | JAVAC=@FIXPATH@ $(BOOT_JDK)/bin/javac |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 411 | # Hotspot sets this variable before reading the SPEC when compiling sa-jdi.jar. Avoid |
| 412 | # overriding that value by using ?=. |
| 413 | JAVAC_FLAGS?=@JAVAC_FLAGS@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 414 | |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 415 | JAVAH=@FIXPATH@ $(BOOT_JDK)/bin/javah |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 416 | |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 417 | JAR=@FIXPATH@ $(BOOT_JDK)/bin/jar |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 418 | |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 419 | RMIC=@FIXPATH@ $(BOOT_JDK)/bin/rmic |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 420 | |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 421 | NATIVE2ASCII=@FIXPATH@ $(BOOT_JDK)/bin/native2ascii |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 422 | |
| 423 | # Base flags for RC |
| 424 | # Guarding this against resetting value. Legacy make files include spec multiple |
| 425 | # times. |
| 426 | ifndef RC_FLAGS |
| 427 | RC_FLAGS:=@RC_FLAGS@ |
| 428 | endif |
| 429 | |
| 430 | # A specific java binary with specific options can be used to run |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 431 | # the long running background sjavac servers and other long running tasks. |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 432 | SJAVAC_SERVER_JAVA:=@FIXPATH@ @SJAVAC_SERVER_JAVA@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 433 | |
| 434 | # Tools adhering to a minimal and common standard of posix compliance. |
| 435 | AWK:=@AWK@ |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 436 | BASENAME:=@BASENAME@ |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 437 | BASH:=@BASH@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 438 | CAT:=@CAT@ |
| 439 | CCACHE:=@CCACHE@ |
| 440 | # CD is going away, but remains to cater for legacy makefiles. |
| 441 | CD:=cd |
| 442 | CHMOD:=@CHMOD@ |
| 443 | CP:=@CP@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 444 | CUT:=@CUT@ |
| 445 | DATE:=@DATE@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 446 | DIFF:=@DIFF@ |
| 447 | FIND:=@FIND@ |
| 448 | FIND_DELETE:=@FIND_DELETE@ |
| 449 | ECHO:=@ECHO@ |
| 450 | EGREP:=@EGREP@ |
| 451 | FGREP:=@FGREP@ |
| 452 | GREP:=@GREP@ |
| 453 | HEAD:=@HEAD@ |
| 454 | LS:=@LS@ |
| 455 | LN:=@LN@ |
| 456 | MKDIR:=@MKDIR@ |
| 457 | MV:=@MV@ |
| 458 | NAWK:=@NAWK@ |
| 459 | PRINTF:=@PRINTF@ |
| 460 | PWD:=@THEPWDCMD@ |
| 461 | RM:=@RM@ |
| 462 | SED:=@SED@ |
| 463 | SH:=@SH@ |
| 464 | SORT:=@SORT@ |
| 465 | TAR:=@TAR@ |
| 466 | TAIL:=@TAIL@ |
| 467 | TEE:=@TEE@ |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 468 | TIME:=@TIME@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 469 | TR:=@TR@ |
| 470 | TOUCH:=@TOUCH@ |
| 471 | WC:=@WC@ |
| 472 | XARGS:=@XARGS@ |
| 473 | ZIPEXE:=@ZIP@ |
| 474 | ZIP:=@ZIP@ |
| 475 | UNZIP:=@UNZIP@ |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 476 | MT:=@FIXPATH@ @MT@ |
| 477 | RC:=@FIXPATH@ @RC@ |
| 478 | DUMPBIN:=@FIXPATH@ @DUMPBIN@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 479 | CYGPATH:=@CYGPATH@ |
| 480 | LDD:=@LDD@ |
| 481 | OTOOL:=@OTOOL@ |
| 482 | READELF:=@READELF@ |
| 483 | EXPR:=@EXPR@ |
| 484 | FILE:=@FILE@ |
Erik Joelsson | 36674b9 | 2012-06-07 20:25:06 -0700 | [diff] [blame] | 485 | HG:=@HG@ |
Erik Joelsson | f7b99ca | 2012-07-03 16:11:12 -0700 | [diff] [blame] | 486 | OBJCOPY:=@OBJCOPY@ |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 487 | SETFILE:=@SETFILE@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 488 | |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 489 | FIXPATH:=@FIXPATH@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 490 | |
| 491 | # Where the build output is stored for your convenience. |
| 492 | BUILD_LOG:=@BUILD_LOG@ |
Erik Joelsson | f7b99ca | 2012-07-03 16:11:12 -0700 | [diff] [blame] | 493 | BUILD_LOG_PREVIOUS:=@BUILD_LOG_PREVIOUS@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 494 | BUILD_LOG_WRAPPER:=@BUILD_LOG_WRAPPER@ |
| 495 | |
| 496 | # Build setup |
Erik Joelsson | f7b99ca | 2012-07-03 16:11:12 -0700 | [diff] [blame] | 497 | ENABLE_JFR=@ENABLE_JFR@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 498 | USE_EXTERNAL_LIBJPEG:=@USE_EXTERNAL_LIBJPEG@ |
| 499 | USE_EXTERNAL_LIBGIF:=@USE_EXTERNAL_LIBGIF@ |
| 500 | USE_EXTERNAL_LIBZ:=@USE_EXTERNAL_LIBZ@ |
Erik Joelsson | f7b99ca | 2012-07-03 16:11:12 -0700 | [diff] [blame] | 501 | LIBZIP_CAN_USE_MMAP:=@LIBZIP_CAN_USE_MMAP@ |
Kelly O'Hair | f9c6f4b | 2012-10-26 14:29:57 -0700 | [diff] [blame^] | 502 | MSVCR_DLL:=@MSVCR_DLL@ |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 503 | |
Erik Joelsson | f7b99ca | 2012-07-03 16:11:12 -0700 | [diff] [blame] | 504 | |
Fredrik Ohstrom | c413395 | 2012-04-10 08:18:28 -0700 | [diff] [blame] | 505 | # ADD_SRCS takes a single argument with source roots |
| 506 | # and appends any corresponding source roots found |
| 507 | # below --with-add-source-root and below |
| 508 | # --with-override-source-root. It is the responsibility |
| 509 | # of the next macro to get rid of superfluous files. |
| 510 | ADD_SRCS=$1 |
| 511 | ifneq (,$(ADD_SRC_ROOT)) |
| 512 | # Append wildcard rule to pickup any matching source roots found below ADD_SRC_ROOT |
| 513 | ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(ADD_SRC_ROOT),$1)) |
| 514 | endif |
| 515 | ifneq (,$(OVERRIDE_SRC_ROOT)) |
| 516 | # Append wildcard rule to pickup any matching source roots found below OVERRIDE_SRC_ROOT |
| 517 | ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(OVERRIDE_SRC_ROOT),$1)) |
| 518 | endif |
| 519 | |
| 520 | # OVR_SRCS creates a filter expression to filter out sources in |
| 521 | # the original source directory that lie inside directories below |
| 522 | # --with-override-source-root. |
| 523 | # Use := here since we want to scan for these files here. To avoid recomputation later. |
| 524 | # We cannot do the scan in configure, since that would force us to rerun configure when |
| 525 | # we add overridden sources. |
| 526 | ifneq (,$(OVERRIDE_SRC_ROOT)) |
| 527 | OVR_SRCS:=$(addsuffix %,$(subst $(OVERRIDE_SRC_ROOT),$(SRC_ROOT),$(sort $(dir $(shell $(FIND) $(OVERRIDE_SRC_ROOT) -type f))))) |
| 528 | else |
| 529 | OVR_SRCS:= |
| 530 | endif |
| 531 | |
| 532 | #################################################### |
| 533 | # |
| 534 | # INSTALLATION |
| 535 | # |
| 536 | |
| 537 | # Common prefix for all installed files. Defaults to /usr/local, |
| 538 | # but /opt/myjdk is another common version. |
| 539 | INSTALL_PREFIX=@prefix@ |
| 540 | |
| 541 | # Directories containing architecture-dependent files should be relative to exec_prefix |
| 542 | INSTALL_EXECPREFIX=@exec_prefix@ |
| 543 | |
| 544 | # java,javac,javah,javap etc are installed here. |
| 545 | INSTALL_BINDIR=@bindir@ |
| 546 | |
| 547 | # Read only architecture-independent data |
| 548 | INSTALL_DATADIR=@datadir@ |
| 549 | |
| 550 | # Root of above. |
| 551 | INSTALL_DATAROOTDIR=@datarootdir@ |
| 552 | |
| 553 | # Doc files, other than info and man. |
| 554 | INSTALL_DOCDIR=@docdir@ |
| 555 | |
| 556 | # Html documentation |
| 557 | INSTALL_HTMLDIR=@htmldir@ |
| 558 | |
| 559 | # Installing C header files, JNI headers for example. |
| 560 | INSTALL_INCLUDEDIR=@includedir@ |
| 561 | |
| 562 | # Installing library files.... |
| 563 | INSTALL_INCLUDEDIR=@libdir@ |
| 564 | |
| 565 | # Executables that other programs run. |
| 566 | INSTALL_LIBEXECDIR=@libexecdir@ |
| 567 | |
| 568 | # Locale-dependent but architecture-independent data, such as message catalogs. |
| 569 | INSTALL_LOCALEDIR=@localedir@ |
| 570 | |
| 571 | # Modifiable single-machine data |
| 572 | INSTALL_LOCALSTATEDIR=@localstatedir@ |
| 573 | |
| 574 | # Man pages |
| 575 | INSTALL_MANDIR=@mandir@ |
| 576 | |
| 577 | # Modifiable architecture-independent data. |
| 578 | INSTALL_SHAREDSTATEDIR=@sharedstatedir@ |
| 579 | |
| 580 | # Read-only single-machine data |
| 581 | INSTALL_SYSCONFDIR=@sysconfdir@ |
| 582 | |
| 583 | |
| 584 | #################################################### |
| 585 | # |
| 586 | # Misc |
| 587 | # |
| 588 | |
Erik Joelsson | 36674b9 | 2012-06-07 20:25:06 -0700 | [diff] [blame] | 589 | # Name of Service Agent library |
| 590 | SALIB_NAME=@SALIB_NAME@ |
| 591 | |
Erik Joelsson | 36674b9 | 2012-06-07 20:25:06 -0700 | [diff] [blame] | 592 | OS_VERSION_MAJOR:=@OS_VERSION_MAJOR@ |
| 593 | OS_VERSION_MINOR:=@OS_VERSION_MINOR@ |
| 594 | OS_VERSION_MICRO:=@OS_VERSION_MICRO@ |
| 595 | |
Kelly O'Hair | 228c216 | 2012-09-18 11:29:16 -0700 | [diff] [blame] | 596 | # Include the custom-spec.gmk file if it exists |
| 597 | -include $(dir @SPEC@)/custom-spec.gmk |