spec.gmk.in 18.4 KB
Newer Older
1
#
2
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation.  Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#

26 27 28 29 30
# Configured @DATE_WHEN_CONFIGURED@ to build
# for target system @OPENJDK_TARGET_OS@-@OPENJDK_TARGET_CPU@
#   (called @OPENJDK_TARGET_AUTOCONF_NAME@ by autoconf)
# on build system @OPENJDK_BUILD_OS@-@OPENJDK_BUILD_CPU@
#   (called @OPENJDK_BUILD_AUTOCONF_NAME@ by autoconf)
31
# using 'configure @CONFIGURE_COMMAND_LINE@'
32 33 34 35 36 37 38 39 40 41 42 43

# When calling macros, the spaces between arguments are 
# often semantically important! Sometimes we need to subst 
# spaces and commas, therefore we need the following macros.
X:=
SPACE:=$(X) $(X)
COMMA:=,
HASH:=\#
SQUOTE:='
#'
DQUOTE:="
#"
O
ohair 已提交
44 45 46
define NEWLINE


47 48
endef

49 50 51 52 53 54
# A self-referential reference to this file.
SPEC:=@SPEC@

# Specify where the spec file is.
MAKE_ARGS="SPEC=$(SPEC)"

O
ohair 已提交
55
MAKE:=@MAKE@
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71

# Pass along the verbosity setting.
ifeq (,$(findstring VERBOSE=,$(MAKE)))
    MAKE:=$(MAKE) $(VERBOSE) VERBOSE="$(VERBOSE)"
endif

# No implicit variables or rules!
ifeq (,$(findstring -R,$(MAKE)))
    MAKE:=$(MAKE) -R
endif

# Specify where the common include directory for makefiles is.
ifeq (,$(findstring -I @SRC_ROOT@/common/makefiles,$(MAKE)))
    MAKE:=$(MAKE) -I @SRC_ROOT@/common/makefiles
endif

72 73 74
# The "human readable" name of this configuration
CONF_NAME:=@CONF_NAME@

75 76 77
# The built jdk will run in this target system.
OPENJDK_TARGET_OS:=@OPENJDK_TARGET_OS@
OPENJDK_TARGET_OS_API:=@OPENJDK_TARGET_OS_API@
O
ohair 已提交
78
OPENJDK_TARGET_OS_ENV:=@OPENJDK_TARGET_OS_ENV@
79 80 81 82 83

OPENJDK_TARGET_CPU:=@OPENJDK_TARGET_CPU@
OPENJDK_TARGET_CPU_ARCH:=@OPENJDK_TARGET_CPU_ARCH@
OPENJDK_TARGET_CPU_BITS:=@OPENJDK_TARGET_CPU_BITS@
OPENJDK_TARGET_CPU_ENDIAN:=@OPENJDK_TARGET_CPU_ENDIAN@
84

85 86 87 88 89 90 91 92 93 94 95
COMPILE_TYPE:=@COMPILE_TYPE@

# Legacy support
OPENJDK_TARGET_CPU_ISADIR:=@OPENJDK_TARGET_CPU_ISADIR@
OPENJDK_TARGET_CPU_LIBDIR:=@OPENJDK_TARGET_CPU_LIBDIR@
OPENJDK_TARGET_CPU_LEGACY:=@OPENJDK_TARGET_CPU_LEGACY@
OPENJDK_TARGET_CPU_LEGACY_LIB:=@OPENJDK_TARGET_CPU_LEGACY_LIB@
OPENJDK_TARGET_CPU_OSARCH:=@OPENJDK_TARGET_CPU_OSARCH@
OPENJDK_TARGET_CPU_JLI_CFLAGS:=@OPENJDK_TARGET_CPU_JLI_CFLAGS@
OPENJDK_TARGET_OS_API_DIR:=@OPENJDK_TARGET_OS_API_DIR@

96
# We are building on this build system.
97 98 99
# When not cross-compiling, it is the same as the target.
OPENJDK_BUILD_OS:=@OPENJDK_BUILD_OS@
OPENJDK_BUILD_OS_API:=@OPENJDK_BUILD_OS_API@
100

101 102 103 104
OPENJDK_BUILD_CPU:=@OPENJDK_BUILD_CPU@
OPENJDK_BUILD_CPU_ARCH:=@OPENJDK_BUILD_CPU_ARCH@
OPENJDK_BUILD_CPU_BITS:=@OPENJDK_BUILD_CPU_BITS@
OPENJDK_BUILD_CPU_ENDIAN:=@OPENJDK_BUILD_CPU_ENDIAN@
105

106 107 108 109
# Legacy OS values for use in release file.
REQUIRED_OS_NAME:=@REQUIRED_OS_NAME@
REQUIRED_OS_VERSION:=@REQUIRED_OS_VERSION@

110 111
@SET_OPENJDK@
LIBM:=-lm
112
LIBDL:=@LIBDL@
113 114 115 116

# colon or semicolon
PATH_SEP:=@PATH_SEP@

O
ohair 已提交
117 118 119 120 121 122 123 124 125
ifeq ($(OPENJDK_TARGET_OS), windows)
  # On Windows, the Visual Studio toolchain needs the LIB and INCLUDE
  # environment variables (in Windows path style), and the PATH needs to
  # be adjusted to include Visual Studio tools (but this needs to be in
  # cygwin/msys style).
  export PATH:=@VS_PATH@
  export INCLUDE:=@VS_INCLUDE@
  export LIB:=@VS_LIB@
endif
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145

# The sys root where standard headers and libraries are found.
# Usually not needed since the configure script should have
# taken it into account already when setting CFLAGS et al.
SYS_ROOT:=@SYS_ROOT@

# Paths to the source code
SRC_ROOT:=@SRC_ROOT@
ADD_SRC_ROOT:=@ADD_SRC_ROOT@
OVERRIDE_SRC_ROOT:=@OVERRIDE_SRC_ROOT@
TOPDIR:=@SRC_ROOT@
OUTPUT_ROOT:=@OUTPUT_ROOT@
JDK_TOPDIR:=@JDK_TOPDIR@
LANGTOOLS_TOPDIR:=@LANGTOOLS_TOPDIR@
CORBA_TOPDIR:=@CORBA_TOPDIR@
JAXP_TOPDIR:=@JAXP_TOPDIR@
JAXWS_TOPDIR:=@JAXWS_TOPDIR@
HOTSPOT_TOPDIR:=@HOTSPOT_TOPDIR@
COPYRIGHT_YEAR:=@COPYRIGHT_YEAR@

146 147 148
# Location where build customization files may be found
CUSTOM_MAKE_DIR:=@CUSTOM_MAKE_DIR@

149 150 151 152 153 154 155 156 157 158 159 160
# Information gathered from the version.numbers file.
JDK_MAJOR_VERSION:=@JDK_MAJOR_VERSION@
JDK_MINOR_VERSION:=@JDK_MINOR_VERSION@
JDK_MICRO_VERSION:=@JDK_MICRO_VERSION@
JDK_UPDATE_VERSION:=@JDK_UPDATE_VERSION@
JDK_BUILD_NUMBER:=@JDK_BUILD_NUMBER@
MILESTONE:=@MILESTONE@
LAUNCHER_NAME:=@LAUNCHER_NAME@
PRODUCT_NAME:=@PRODUCT_NAME@
PRODUCT_SUFFIX:=@PRODUCT_SUFFIX@
JDK_RC_PLATFORM_NAME:=@JDK_RC_PLATFORM_NAME@
COMPANY_NAME:=@COMPANY_NAME@
O
ohair 已提交
161 162
MACOSX_BUNDLE_NAME_BASE=@MACOSX_BUNDLE_NAME_BASE@
MACOSX_BUNDLE_ID_BASE=@MACOSX_BUNDLE_ID_BASE@
163 164 165

# Different version strings generated from the above information.
JDK_VERSION:=@JDK_VERSION@
166
RUNTIME_NAME=$(PRODUCT_NAME) $(PRODUCT_SUFFIX)
167
COOKED_BUILD_NUMBER:=@COOKED_BUILD_NUMBER@
168 169 170 171 172 173 174 175 176 177 178 179 180
# These variables need to be generated here so that MILESTONE and
# JDK_BUILD_NUMBER can be overridden on the make command line.
ifeq ($(MILESTONE),)
  RELEASE=$(JDK_VERSION)$(BUILD_VARIANT_RELEASE)
else
  RELEASE=$(JDK_VERSION)-$(MILESTONE)$(BUILD_VARIANT_RELEASE)
endif
ifeq ($(JDK_BUILD_NUMBER),b00)
  USER_RELEASE_SUFFIX=@USER_RELEASE_SUFFIX@
  FULL_VERSION=$(RELEASE)-$(USER_RELEASE_SUFFIX)-$(JDK_BUILD_NUMBER)
else
  FULL_VERSION=$(RELEASE)-$(JDK_BUILD_NUMBER)
endif
181
JRE_RELEASE_VERSION:=$(FULL_VERSION)
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198

# How to compile the code: release, fastdebug or slowdebug
DEBUG_LEVEL:=@DEBUG_LEVEL@

# This is the JDK variant to build.
# The JDK variant is a name for a specific set of modules to be compiled for the JDK.
JDK_VARIANT:=@JDK_VARIANT@

# Should we compile support for running with a graphical UI? (ie headful)
# Should we compile support for running without? (ie headless)
SUPPORT_HEADFUL:=@SUPPORT_HEADFUL@
SUPPORT_HEADLESS:=@SUPPORT_HEADLESS@
# Legacy defines controlled by the SUPPORT_HEADLESS and SUPPORT_HEADFUL options.
@BUILD_HEADLESS@

# These are the libjvms that we want to build.
# The java launcher uses the default.
199
# The others can be selected by specifying -client -server -minimal1 -kernel -zero or -zeroshark
200 201 202 203
# on the java launcher command line.
JVM_VARIANTS:=@JVM_VARIANTS@
JVM_VARIANT_SERVER:=@JVM_VARIANT_SERVER@
JVM_VARIANT_CLIENT:=@JVM_VARIANT_CLIENT@
204
JVM_VARIANT_MINIMAL1:=@JVM_VARIANT_MINIMAL1@
205 206 207 208
JVM_VARIANT_KERNEL:=@JVM_VARIANT_KERNEL@
JVM_VARIANT_ZERO:=@JVM_VARIANT_ZERO@
JVM_VARIANT_ZEROSHARK:=@JVM_VARIANT_ZEROSHARK@

209 210 211
# Universal binaries on macosx
MACOSX_UNIVERSAL=@MACOSX_UNIVERSAL@

212
# Legacy setting: -debug or -fastdebug
213
# Still used in version string...
214 215
BUILD_VARIANT_RELEASE:=@BUILD_VARIANT_RELEASE@

216
# JDK_OUTPUTDIR specifies where a working jvm is built.
217 218 219
# You can run $(JDK_OUTPUTDIR)/bin/java
# Though the layout of the contents of $(JDK_OUTPUTDIR) is not
# yet the same as a default installation.
220
#
221
# When you run "make install" it will create the standardized
222
# layout for the jdk and the jre inside the IMAGES_OUTPUTDIR subdir.
223 224
# Then it will copy the contents of the jdk into the installation
# directory.
225

226 227 228 229 230 231 232 233
BUILD_OUTPUT:=@BUILD_OUTPUT@
LANGTOOLS_OUTPUTDIR=$(BUILD_OUTPUT)/langtools
CORBA_OUTPUTDIR=$(BUILD_OUTPUT)/corba
JAXP_OUTPUTDIR=$(BUILD_OUTPUT)/jaxp
JAXWS_OUTPUTDIR=$(BUILD_OUTPUT)/jaxws
HOTSPOT_OUTPUTDIR=$(BUILD_OUTPUT)/hotspot
JDK_OUTPUTDIR=$(BUILD_OUTPUT)/jdk
IMAGES_OUTPUTDIR=$(BUILD_OUTPUT)/images
234
JCE_OUTPUTDIR=$(BUILD_OUTPUT)/jce-release
235 236 237 238 239

LANGTOOLS_DIST=$(LANGTOOLS_OUTPUTDIR)/dist
CORBA_DIST=$(CORBA_OUTPUTDIR)/dist
JAXP_DIST=$(JAXP_OUTPUTDIR)/dist
JAXWS_DIST=$(JAXWS_OUTPUTDIR)/dist
240 241 242
HOTSPOT_DIST=@HOTSPOT_DIST@

BUILD_HOTSPOT=@BUILD_HOTSPOT@
243 244 245 246 247

# The boot jdk to use
BOOT_JDK:=@BOOT_JDK@
BOOT_JDK_JVMARGS:=@BOOT_JDK_JVMARGS@
BOOT_RTJAR:=@BOOT_RTJAR@
248
BOOT_TOOLSJAR=$(BOOT_JDK)/lib/tools.jar
249 250 251 252 253 254 255

# When compiling Java source to be run by the boot jdk
# use these extra flags, eg -source 6 -target 6
BOOT_JDK_SOURCETARGET:=@BOOT_JDK_SOURCETARGET@

# Information about the build system
NUM_CORES:=@NUM_CORES@
256 257 258 259 260 261
# Enable sjavac support = use a javac server,
# multi core javac compilation and dependency tracking.
ENABLE_SJAVAC:=@ENABLE_SJAVAC@
# Store sjavac server synchronization files here, and
# the sjavac server log files.
SJAVAC_SERVER_DIR:=@SJAVAC_SERVER_DIR@
262 263 264 265 266 267 268 269 270 271 272 273

# The OpenJDK makefiles should be changed to using the standard
# configure output ..._CFLAGS and ..._LIBS. In the meantime we
# extract the information here.
FREETYPE2_LIB_PATH:=@FREETYPE2_LIB_PATH@
FREETYPE2_LIBS:=@FREETYPE2_LIBS@
FREETYPE2_CFLAGS:=@FREETYPE2_CFLAGS@
USING_SYSTEM_FT_LIB=@USING_SYSTEM_FT_LIB@
CUPS_CFLAGS:=@CUPS_CFLAGS@

PACKAGE_PATH=@PACKAGE_PATH@

274 275
# Source file for cacerts
CACERTS_FILE=@CACERTS_FILE@
276

277 278 279
# Enable unlimited crypto policy
UNLIMITED_CRYPTO=@UNLIMITED_CRYPTO@

280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
# Necessary additional compiler flags to compile X11 
X_CFLAGS:=@X_CFLAGS@
X_LIBS:=@X_LIBS@
OPENWIN_HOME:=@OPENWIN_HOME@

# There are two types: CC or CL
# CC is gcc and others behaving reasonably similar.
# CL is cl.exe only.
COMPILER_TYPE:=@COMPILER_TYPE@

CC_OUT_OPTION:=@CC_OUT_OPTION@
EXE_OUT_OPTION:=@EXE_OUT_OPTION@
LD_OUT_OPTION:=@LD_OUT_OPTION@
AR_OUT_OPTION:=@AR_OUT_OPTION@

# Flags used for overriding the default opt setting for a C/C++ source file.
296
C_O_FLAG_HIGHEST:=@C_O_FLAG_HIGHEST@
297 298 299
C_O_FLAG_HI:=@C_O_FLAG_HI@
C_O_FLAG_NORM:=@C_O_FLAG_NORM@
C_O_FLAG_NONE:=@C_O_FLAG_NONE@
300
CXX_O_FLAG_HIGHEST:=@CXX_O_FLAG_HIGHEST@
301 302 303 304
CXX_O_FLAG_HI:=@CXX_O_FLAG_HI@
CXX_O_FLAG_NORM:=@CXX_O_FLAG_NORM@
CXX_O_FLAG_NONE:=@CXX_O_FLAG_NONE@

305 306 307
C_FLAG_DEPS:=@C_FLAG_DEPS@
CXX_FLAG_DEPS:=@CXX_FLAG_DEPS@

308
# Tools that potentially need to be cross compilation aware.
O
ohair 已提交
309
CC:=@FIXPATH@ @CCACHE@ @CC@
310 311 312 313 314 315 316 317 318

# CFLAGS used to compile the jdk native libraries (C-code)
CFLAGS_JDKLIB:=@CFLAGS_JDKLIB@
CXXFLAGS_JDKLIB:=@CXXFLAGS_JDKLIB@

# CFLAGS used to compile the jdk native launchers (C-code)
CFLAGS_JDKEXE:=@CFLAGS_JDKEXE@
CXXFLAGS_JDKEXE:=@CXXFLAGS_JDKEXE@

O
ohair 已提交
319
CXX:=@FIXPATH@ @CCACHE@ @CXX@
320 321 322 323 324
#CXXFLAGS:=@CXXFLAGS@

OBJC:=@CCACHE@ @OBJC@
#OBJCFLAGS:=@OBJCFLAGS@

O
ohair 已提交
325
CPP:=@FIXPATH@ @CPP@
326 327
#CPPFLAGS:=@CPPFLAGS@

328
# The linker can be gcc or ld on posix systems, or link.exe on windows systems.
O
ohair 已提交
329
LD:=@FIXPATH@ @LD@
330 331 332 333 334 335 336

# LDFLAGS used to link the jdk native libraries (C-code)
LDFLAGS_JDKLIB:=@LDFLAGS_JDKLIB@
LDFLAGS_JDKLIB_SUFFIX:=@LDFLAGS_JDKLIB_SUFFIX@

# On some platforms the linker cannot be used to create executables, thus
# the need for a separate LDEXE command.
O
ohair 已提交
337
LDEXE:=@FIXPATH@ @LDEXE@
338 339 340 341 342

# LDFLAGS used to link the jdk native launchers (C-code)
LDFLAGS_JDKEXE:=@LDFLAGS_JDKEXE@
LDFLAGS_JDKEXE_SUFFIX:=@LDFLAGS_JDKEXE_SUFFIX@

343 344 345
# LDFLAGS specific to C++ linking.
LDFLAGS_CXX_JDK:=@LDFLAGS_CXX_JDK@

346
# Sometimes a different linker is needed for c++ libs
O
ohair 已提交
347
LDCXX:=@FIXPATH@ @LDCXX@
348 349 350 351
# The flags for linking libstdc++ linker.
LIBCXX:=@LIBCXX@

# Sometimes a different linker is needed for c++ executables
O
ohair 已提交
352
LDEXECXX:=@FIXPATH@ @LDEXECXX@
353

354 355
# BUILD_CC/BUILD_LD is a compiler/linker that generates code that is runnable on the
# build platform.
O
ohair 已提交
356 357
BUILD_CC:=@FIXPATH@ @BUILD_CC@
BUILD_LD:=@FIXPATH@ @BUILD_LD@
358

O
ohair 已提交
359
AS:=@FIXPATH@ @AS@
360

361
# AR is used to create a static library (is ar in posix, lib.exe in windows)
O
ohair 已提交
362
AR:=@FIXPATH@ @AR@
363 364
ARFLAGS:=@ARFLAGS@

365 366 367 368 369
NM:=@NM@
STRIP:=@STRIP@
MCS:=@MCS@

LIPO:=@LIPO@
370 371 372 373 374 375 376 377

# Command to create a shared library
SHARED_LIBRARY_FLAGS:=@SHARED_LIBRARY_FLAGS@

# Options to linker to specify a mapfile. 
# (Note absence of := assignment, because we do not want to evaluate the macro body here)
SET_SHARED_LIBRARY_MAPFILE=@SET_SHARED_LIBRARY_MAPFILE@

378 379 380 381 382
# Options for C/CXX compiler to be used if linking is performed
#   using reorder file
C_FLAG_REORDER:=@C_FLAG_REORDER@
CXX_FLAG_REORDER:=@CXX_FLAG_REORDER@

383 384 385 386 387 388 389 390 391 392 393
#
# Options for generating debug symbols
ENABLE_DEBUG_SYMBOLS:=@ENABLE_DEBUG_SYMBOLS@
CFLAGS_DEBUG_SYMBOLS:=@CFLAGS_DEBUG_SYMBOLS@
CXXFLAGS_DEBUG_SYMBOLS:=@CXXFLAGS_DEBUG_SYMBOLS@
ZIP_DEBUGINFO_FILES:=@ZIP_DEBUGINFO_FILES@

#
# Compress (or not) jars
COMPRESS_JARS=@COMPRESS_JARS@

394 395 396 397 398 399 400
# Options to linker to specify the library name.
# (Note absence of := assignment, because we do not want to evaluate the macro body here)
SET_SHARED_LIBRARY_NAME=@SET_SHARED_LIBRARY_NAME@

# Set origin using the linker, ie use the relative path to the dependent library to find the dependees.
# (Note absence of := assignment, because we do not want to evaluate the macro body here)
SET_SHARED_LIBRARY_ORIGIN=@SET_SHARED_LIBRARY_ORIGIN@
401
SET_EXECUTABLE_ORIGIN=@SET_EXECUTABLE_ORIGIN@
402 403 404 405 406 407 408 409 410 411 412 413 414

# Different OS:es have different ways of naming shared libraries.
# The SHARED_LIBRARY macro takes "verify" as and argument and returns:
#    "libverify.so" or "libverify.dylib" or "verify.dll" depending on platform.
# (Note absence of := assignment, because we do not want to evaluate the macro body here)
SHARED_LIBRARY=@SHARED_LIBRARY@
STATIC_LIBRARY=@STATIC_LIBRARY@
LIBRARY_PREFIX:=@LIBRARY_PREFIX@
SHARED_LIBRARY_SUFFIX:=@SHARED_LIBRARY_SUFFIX@
STATIC_LIBRARY_SUFFIX:=@STATIC_LIBRARY_SUFFIX@
EXE_SUFFIX:=@EXE_SUFFIX@
OBJ_SUFFIX:=@OBJ_SUFFIX@

415 416 417
POST_STRIP_CMD:=@POST_STRIP_CMD@
POST_MCS_CMD:=@POST_MCS_CMD@

418 419
JAVA_FLAGS:=@BOOT_JDK_JVMARGS@

O
ohair 已提交
420
JAVA=@FIXPATH@ $(BOOT_JDK)/bin/java $(JAVA_FLAGS)
421

O
ohair 已提交
422
JAVAC=@FIXPATH@ $(BOOT_JDK)/bin/javac
423 424 425
# Hotspot sets this variable before reading the SPEC when compiling sa-jdi.jar. Avoid
# overriding that value by using ?=.
JAVAC_FLAGS?=@JAVAC_FLAGS@
426

O
ohair 已提交
427
JAVAH=@FIXPATH@ $(BOOT_JDK)/bin/javah
428

O
ohair 已提交
429
JAR=@FIXPATH@ $(BOOT_JDK)/bin/jar
430

O
ohair 已提交
431
RMIC=@FIXPATH@ $(BOOT_JDK)/bin/rmic
432

O
ohair 已提交
433
NATIVE2ASCII=@FIXPATH@ $(BOOT_JDK)/bin/native2ascii
434

435 436
JARSIGNER=@FIXPATH@ $(BOOT_JDK)/bin/jarsigner

437 438 439 440 441 442 443 444
# Base flags for RC
# Guarding this against resetting value. Legacy make files include spec multiple
# times.
ifndef RC_FLAGS
RC_FLAGS:=@RC_FLAGS@
endif

# A specific java binary with specific options can be used to run
445
# the long running background sjavac servers and other long running tasks.
O
ohair 已提交
446
SJAVAC_SERVER_JAVA:=@FIXPATH@ @SJAVAC_SERVER_JAVA@
447 448 449

# Tools adhering to a minimal and common standard of posix compliance.
AWK:=@AWK@
450
BASENAME:=@BASENAME@
O
ohair 已提交
451
BASH:=@BASH@
452 453 454 455 456
CAT:=@CAT@
CCACHE:=@CCACHE@
# CD is going away, but remains to cater for legacy makefiles.
CD:=cd
CHMOD:=@CHMOD@
457
COMM:=@COMM@
458
CP:=@CP@
459
CPIO:=@CPIO@
460 461 462
CUT:=@CUT@
DATE:=@DATE@
DIFF:=@DIFF@
463
DIRNAME:=@DIRNAME@
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
FIND:=@FIND@
FIND_DELETE:=@FIND_DELETE@
ECHO:=@ECHO@
EGREP:=@EGREP@
FGREP:=@FGREP@
GREP:=@GREP@
HEAD:=@HEAD@
LS:=@LS@
LN:=@LN@
MKDIR:=@MKDIR@
MV:=@MV@
NAWK:=@NAWK@
PRINTF:=@PRINTF@
PWD:=@THEPWDCMD@
RM:=@RM@
SED:=@SED@
SH:=@SH@
SORT:=@SORT@
TAR:=@TAR@
TAIL:=@TAIL@
TEE:=@TEE@
O
ohair 已提交
485
TIME:=@TIME@
486 487
TR:=@TR@
TOUCH:=@TOUCH@
488
UNIQ:=@UNIQ@
489 490 491 492 493
WC:=@WC@
XARGS:=@XARGS@
ZIPEXE:=@ZIP@
ZIP:=@ZIP@
UNZIP:=@UNZIP@
O
ohair 已提交
494 495 496
MT:=@FIXPATH@ @MT@
RC:=@FIXPATH@ @RC@
DUMPBIN:=@FIXPATH@ @DUMPBIN@
497 498 499 500 501 502
CYGPATH:=@CYGPATH@
LDD:=@LDD@
OTOOL:=@OTOOL@
READELF:=@READELF@
EXPR:=@EXPR@
FILE:=@FILE@
503
HG:=@HG@
504
OBJCOPY:=@OBJCOPY@
O
ohair 已提交
505
SETFILE:=@SETFILE@
506

O
ohair 已提交
507
FIXPATH:=@FIXPATH@
508 509 510

# Where the build output is stored for your convenience.
BUILD_LOG:=@BUILD_LOG@
511
BUILD_LOG_PREVIOUS:=@BUILD_LOG_PREVIOUS@
512 513 514 515 516 517 518 519
# Disable the build log wrapper on sjavac+winapi until
# we have solved how to prevent the log wrapper to wait
# for the background sjavac server process.
ifeq (@ENABLE_SJAVAC@X@OPENJDK_BUILD_OS_API@,yesXwinapi)
    BUILD_LOG_WRAPPER:=
else
    BUILD_LOG_WRAPPER:=@BUILD_LOG_WRAPPER@
endif
520 521

# Build setup
522
ENABLE_JFR=@ENABLE_JFR@
523 524 525
USE_EXTERNAL_LIBJPEG:=@USE_EXTERNAL_LIBJPEG@
USE_EXTERNAL_LIBGIF:=@USE_EXTERNAL_LIBGIF@
USE_EXTERNAL_LIBZ:=@USE_EXTERNAL_LIBZ@
526
LIBZIP_CAN_USE_MMAP:=@LIBZIP_CAN_USE_MMAP@
O
ohair 已提交
527
MSVCR_DLL:=@MSVCR_DLL@
528

529

530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
# ADD_SRCS takes a single argument with source roots
# and appends any corresponding source roots found
# below --with-add-source-root and below
# --with-override-source-root. It is the responsibility
# of the next macro to get rid of superfluous files.
ADD_SRCS=$1
ifneq (,$(ADD_SRC_ROOT))
    # Append wildcard rule to pickup any matching source roots found below ADD_SRC_ROOT 
    ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(ADD_SRC_ROOT),$1))
endif
ifneq (,$(OVERRIDE_SRC_ROOT))
    # Append wildcard rule to pickup any matching source roots found below OVERRIDE_SRC_ROOT 
    ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(OVERRIDE_SRC_ROOT),$1))
endif

# OVR_SRCS creates a filter expression to filter out sources in
# the original source directory that lie inside directories below
# --with-override-source-root.
# Use := here since we want to scan for these files here. To avoid recomputation later.
# We cannot do the scan in configure, since that would force us to rerun configure when
# we add overridden sources.
ifneq (,$(OVERRIDE_SRC_ROOT))
    OVR_SRCS:=$(addsuffix %,$(subst $(OVERRIDE_SRC_ROOT),$(SRC_ROOT),$(sort $(dir $(shell $(FIND) $(OVERRIDE_SRC_ROOT) -type f)))))
else
    OVR_SRCS:=
endif

####################################################
#
# INSTALLATION
#

# Common prefix for all installed files. Defaults to /usr/local,
# but /opt/myjdk is another common version. 
INSTALL_PREFIX=@prefix@

# Directories containing architecture-dependent files should be relative to exec_prefix
INSTALL_EXECPREFIX=@exec_prefix@

# java,javac,javah,javap etc are installed here.
INSTALL_BINDIR=@bindir@

# Read only architecture-independent data
INSTALL_DATADIR=@datadir@

# Root of above.
INSTALL_DATAROOTDIR=@datarootdir@

# Doc files, other than info and man.
INSTALL_DOCDIR=@docdir@

# Html documentation
INSTALL_HTMLDIR=@htmldir@

# Installing C header files, JNI headers for example.
INSTALL_INCLUDEDIR=@includedir@

# Installing library files....
INSTALL_INCLUDEDIR=@libdir@

# Executables that other programs run.
INSTALL_LIBEXECDIR=@libexecdir@

# Locale-dependent but architecture-independent data, such as message catalogs. 
INSTALL_LOCALEDIR=@localedir@

# Modifiable single-machine data
INSTALL_LOCALSTATEDIR=@localstatedir@

# Man pages
INSTALL_MANDIR=@mandir@

# Modifiable architecture-independent data.
INSTALL_SHAREDSTATEDIR=@sharedstatedir@

# Read-only single-machine data
INSTALL_SYSCONFDIR=@sysconfdir@


####################################################
#
# Misc
#

614 615 616 617 618 619 620
# Name of Service Agent library
SALIB_NAME=@SALIB_NAME@

OS_VERSION_MAJOR:=@OS_VERSION_MAJOR@
OS_VERSION_MINOR:=@OS_VERSION_MINOR@
OS_VERSION_MICRO:=@OS_VERSION_MICRO@

621 622
# Include the custom-spec.gmk file if it exists
-include $(dir @SPEC@)/custom-spec.gmk