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