common/autoconf/spec.gmk.in

Tue, 18 Sep 2012 11:29:16 -0700

author
ohair
date
Tue, 18 Sep 2012 11:29:16 -0700
changeset 478
2ba6f4da4bf3
parent 458
c8d320b48626
child 494
e64f2cb57d05
permissions
-rw-r--r--

7197849: Update new build-infra makefiles
Reviewed-by: ihse, erikj, ohrstrom, tbell

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

mercurial