author | ihse |
Thu, 13 Feb 2014 23:30:08 +0100 | |
changeset 22716 | cf32fe2eb254 |
parent 22714 | a752920c4317 |
child 22721 | 63761da45392 |
child 23164 | 15414968e6b8 |
permissions | -rw-r--r-- |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
22477 | 2 |
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
4 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
10 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
15 |
# accompanied this code). |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
16 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
20 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
23 |
# questions. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
24 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
25 |
|
13697 | 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) |
|
13132 | 31 |
# using 'configure @CONFIGURE_COMMAND_LINE@' |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
32 |
|
20363 | 33 |
# When calling macros, the spaces between arguments are |
34 |
# often semantically important! Sometimes we need to subst |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
35 |
# spaces and commas, therefore we need the following macros. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
36 |
X:= |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
37 |
SPACE:=$(X) $(X) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
38 |
COMMA:=, |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
39 |
HASH:=\# |
22479
43e372703313
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
22477
diff
changeset
|
40 |
LEFT_PAREN:=( |
43e372703313
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
22477
diff
changeset
|
41 |
RIGHT_PAREN:=) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
42 |
SQUOTE:=' |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
43 |
#' |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
44 |
DQUOTE:=" |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
45 |
#" |
14111 | 46 |
define NEWLINE |
47 |
||
48 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
49 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
50 |
|
22716
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
51 |
# The command line given to configure. |
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
52 |
CONFIGURE_COMMAND_LINE:=@CONFIGURE_COMMAND_LINE@ |
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
53 |
|
13697 | 54 |
# A self-referential reference to this file. |
55 |
SPEC:=@SPEC@ |
|
56 |
||
57 |
# Specify where the spec file is. |
|
58 |
MAKE_ARGS="SPEC=$(SPEC)" |
|
59 |
||
14111 | 60 |
MAKE:=@MAKE@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
61 |
|
17352 | 62 |
# Pass along the verbosity and log level settings. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
63 |
ifeq (,$(findstring VERBOSE=,$(MAKE))) |
20363 | 64 |
MAKE:=$(MAKE) $(VERBOSE) VERBOSE="$(VERBOSE)" LOG_LEVEL="$(LOG_LEVEL)" |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
65 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
66 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
67 |
# No implicit variables or rules! |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
68 |
ifeq (,$(findstring -R,$(MAKE))) |
20363 | 69 |
MAKE:=$(MAKE) -R |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
70 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
71 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
72 |
# Specify where the common include directory for makefiles is. |
21759 | 73 |
ifeq (,$(findstring -I @SRC_ROOT@/make/common,$(MAKE))) |
74 |
MAKE:=$(MAKE) -I @SRC_ROOT@/make/common |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
75 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
76 |
|
12801 | 77 |
# The "human readable" name of this configuration |
78 |
CONF_NAME:=@CONF_NAME@ |
|
79 |
||
13132 | 80 |
# The built jdk will run in this target system. |
81 |
OPENJDK_TARGET_OS:=@OPENJDK_TARGET_OS@ |
|
82 |
OPENJDK_TARGET_OS_API:=@OPENJDK_TARGET_OS_API@ |
|
14111 | 83 |
OPENJDK_TARGET_OS_ENV:=@OPENJDK_TARGET_OS_ENV@ |
13132 | 84 |
|
85 |
OPENJDK_TARGET_CPU:=@OPENJDK_TARGET_CPU@ |
|
86 |
OPENJDK_TARGET_CPU_ARCH:=@OPENJDK_TARGET_CPU_ARCH@ |
|
87 |
OPENJDK_TARGET_CPU_BITS:=@OPENJDK_TARGET_CPU_BITS@ |
|
88 |
OPENJDK_TARGET_CPU_ENDIAN:=@OPENJDK_TARGET_CPU_ENDIAN@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
89 |
|
13697 | 90 |
COMPILE_TYPE:=@COMPILE_TYPE@ |
91 |
||
92 |
# Legacy support |
|
93 |
OPENJDK_TARGET_CPU_ISADIR:=@OPENJDK_TARGET_CPU_ISADIR@ |
|
94 |
OPENJDK_TARGET_CPU_LIBDIR:=@OPENJDK_TARGET_CPU_LIBDIR@ |
|
95 |
OPENJDK_TARGET_CPU_LEGACY:=@OPENJDK_TARGET_CPU_LEGACY@ |
|
96 |
OPENJDK_TARGET_CPU_LEGACY_LIB:=@OPENJDK_TARGET_CPU_LEGACY_LIB@ |
|
97 |
OPENJDK_TARGET_CPU_OSARCH:=@OPENJDK_TARGET_CPU_OSARCH@ |
|
98 |
OPENJDK_TARGET_CPU_JLI_CFLAGS:=@OPENJDK_TARGET_CPU_JLI_CFLAGS@ |
|
99 |
OPENJDK_TARGET_OS_API_DIR:=@OPENJDK_TARGET_OS_API_DIR@ |
|
21055
d52217bb8e80
8016096: [macosx] jawt_md.h shipped with jdk is outdated
dholmes
parents:
20654
diff
changeset
|
100 |
OPENJDK_TARGET_OS_EXPORT_DIR:=@OPENJDK_TARGET_OS_EXPORT_DIR@ |
13697 | 101 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
102 |
# We are building on this build system. |
13132 | 103 |
# When not cross-compiling, it is the same as the target. |
104 |
OPENJDK_BUILD_OS:=@OPENJDK_BUILD_OS@ |
|
105 |
OPENJDK_BUILD_OS_API:=@OPENJDK_BUILD_OS_API@ |
|
106 |
||
107 |
OPENJDK_BUILD_CPU:=@OPENJDK_BUILD_CPU@ |
|
108 |
OPENJDK_BUILD_CPU_ARCH:=@OPENJDK_BUILD_CPU_ARCH@ |
|
109 |
OPENJDK_BUILD_CPU_BITS:=@OPENJDK_BUILD_CPU_BITS@ |
|
110 |
OPENJDK_BUILD_CPU_ENDIAN:=@OPENJDK_BUILD_CPU_ENDIAN@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
111 |
|
12801 | 112 |
# Legacy OS values for use in release file. |
113 |
REQUIRED_OS_NAME:=@REQUIRED_OS_NAME@ |
|
114 |
REQUIRED_OS_VERSION:=@REQUIRED_OS_VERSION@ |
|
115 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
116 |
@SET_OPENJDK@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
117 |
LIBM:=-lm |
12801 | 118 |
LIBDL:=@LIBDL@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
119 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
120 |
# colon or semicolon |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
121 |
PATH_SEP:=@PATH_SEP@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
122 |
|
14111 | 123 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
124 |
# On Windows, the Visual Studio toolchain needs the LIB and INCLUDE |
|
125 |
# environment variables (in Windows path style), and the PATH needs to |
|
126 |
# be adjusted to include Visual Studio tools (but this needs to be in |
|
127 |
# cygwin/msys style). |
|
128 |
export PATH:=@VS_PATH@ |
|
129 |
export INCLUDE:=@VS_INCLUDE@ |
|
130 |
export LIB:=@VS_LIB@ |
|
131 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
132 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
133 |
# The sys root where standard headers and libraries are found. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
134 |
# Usually not needed since the configure script should have |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
135 |
# taken it into account already when setting CFLAGS et al. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
136 |
SYS_ROOT:=@SYS_ROOT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
137 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
138 |
# Paths to the source code |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
139 |
SRC_ROOT:=@SRC_ROOT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
140 |
ADD_SRC_ROOT:=@ADD_SRC_ROOT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
141 |
OVERRIDE_SRC_ROOT:=@OVERRIDE_SRC_ROOT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
142 |
TOPDIR:=@SRC_ROOT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
143 |
OUTPUT_ROOT:=@OUTPUT_ROOT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
144 |
JDK_TOPDIR:=@JDK_TOPDIR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
145 |
LANGTOOLS_TOPDIR:=@LANGTOOLS_TOPDIR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
146 |
CORBA_TOPDIR:=@CORBA_TOPDIR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
147 |
JAXP_TOPDIR:=@JAXP_TOPDIR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
148 |
JAXWS_TOPDIR:=@JAXWS_TOPDIR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
149 |
HOTSPOT_TOPDIR:=@HOTSPOT_TOPDIR@ |
15903 | 150 |
NASHORN_TOPDIR:=@NASHORN_TOPDIR@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
151 |
COPYRIGHT_YEAR:=@COPYRIGHT_YEAR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
152 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
153 |
# Information gathered from the version.numbers file. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
154 |
JDK_MAJOR_VERSION:=@JDK_MAJOR_VERSION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
155 |
JDK_MINOR_VERSION:=@JDK_MINOR_VERSION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
156 |
JDK_MICRO_VERSION:=@JDK_MICRO_VERSION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
157 |
JDK_UPDATE_VERSION:=@JDK_UPDATE_VERSION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
158 |
JDK_BUILD_NUMBER:=@JDK_BUILD_NUMBER@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
159 |
MILESTONE:=@MILESTONE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
160 |
LAUNCHER_NAME:=@LAUNCHER_NAME@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
161 |
PRODUCT_NAME:=@PRODUCT_NAME@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
162 |
PRODUCT_SUFFIX:=@PRODUCT_SUFFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
163 |
JDK_RC_PLATFORM_NAME:=@JDK_RC_PLATFORM_NAME@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
164 |
COMPANY_NAME:=@COMPANY_NAME@ |
14111 | 165 |
MACOSX_BUNDLE_NAME_BASE=@MACOSX_BUNDLE_NAME_BASE@ |
166 |
MACOSX_BUNDLE_ID_BASE=@MACOSX_BUNDLE_ID_BASE@ |
|
20275
bdf86ab49b78
8005924: Make it possible to set both --with-user-release-suffix and --with-build-number
erikj
parents:
19760
diff
changeset
|
167 |
USER_RELEASE_SUFFIX=@USER_RELEASE_SUFFIX@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
168 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
169 |
# Different version strings generated from the above information. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
170 |
JDK_VERSION:=@JDK_VERSION@ |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
171 |
RUNTIME_NAME=$(PRODUCT_NAME) $(PRODUCT_SUFFIX) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
172 |
COOKED_BUILD_NUMBER:=@COOKED_BUILD_NUMBER@ |
15055
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
173 |
# These variables need to be generated here so that MILESTONE and |
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
174 |
# JDK_BUILD_NUMBER can be overridden on the make command line. |
22711
e24d19c865ed
8032632: Wrong version for the first jdk8 fcs build
erikj
parents:
22709
diff
changeset
|
175 |
ifeq ($(MILESTONE), fcs) |
15055
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
176 |
RELEASE=$(JDK_VERSION)$(BUILD_VARIANT_RELEASE) |
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
177 |
else |
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
178 |
RELEASE=$(JDK_VERSION)-$(MILESTONE)$(BUILD_VARIANT_RELEASE) |
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
179 |
endif |
20275
bdf86ab49b78
8005924: Make it possible to set both --with-user-release-suffix and --with-build-number
erikj
parents:
19760
diff
changeset
|
180 |
|
20363 | 181 |
ifneq ($(USER_RELEASE_SUFFIX), ) |
15055
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
182 |
FULL_VERSION=$(RELEASE)-$(USER_RELEASE_SUFFIX)-$(JDK_BUILD_NUMBER) |
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
183 |
else |
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
184 |
FULL_VERSION=$(RELEASE)-$(JDK_BUILD_NUMBER) |
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
185 |
endif |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
186 |
JRE_RELEASE_VERSION:=$(FULL_VERSION) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
187 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
188 |
# How to compile the code: release, fastdebug or slowdebug |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
189 |
DEBUG_LEVEL:=@DEBUG_LEVEL@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
190 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
191 |
# This is the JDK variant to build. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
192 |
# The JDK variant is a name for a specific set of modules to be compiled for the JDK. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
193 |
JDK_VARIANT:=@JDK_VARIANT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
194 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
195 |
# Should we compile support for running with a graphical UI? (ie headful) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
196 |
# Should we compile support for running without? (ie headless) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
197 |
SUPPORT_HEADFUL:=@SUPPORT_HEADFUL@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
198 |
SUPPORT_HEADLESS:=@SUPPORT_HEADLESS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
199 |
# Legacy defines controlled by the SUPPORT_HEADLESS and SUPPORT_HEADFUL options. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
200 |
@BUILD_HEADLESS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
201 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
202 |
# These are the libjvms that we want to build. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
203 |
# The java launcher uses the default. |
14810 | 204 |
# The others can be selected by specifying -client -server -minimal1 -kernel -zero or -zeroshark |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
205 |
# on the java launcher command line. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
206 |
JVM_VARIANTS:=@JVM_VARIANTS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
207 |
JVM_VARIANT_SERVER:=@JVM_VARIANT_SERVER@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
208 |
JVM_VARIANT_CLIENT:=@JVM_VARIANT_CLIENT@ |
14810 | 209 |
JVM_VARIANT_MINIMAL1:=@JVM_VARIANT_MINIMAL1@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
210 |
JVM_VARIANT_KERNEL:=@JVM_VARIANT_KERNEL@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
211 |
JVM_VARIANT_ZERO:=@JVM_VARIANT_ZERO@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
212 |
JVM_VARIANT_ZEROSHARK:=@JVM_VARIANT_ZEROSHARK@ |
22460
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
18018
diff
changeset
|
213 |
JVM_VARIANT_CORE:=@JVM_VARIANT_CORE@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
214 |
|
13697 | 215 |
# Universal binaries on macosx |
216 |
MACOSX_UNIVERSAL=@MACOSX_UNIVERSAL@ |
|
217 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
218 |
# Legacy setting: -debug or -fastdebug |
13697 | 219 |
# Still used in version string... |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
220 |
BUILD_VARIANT_RELEASE:=@BUILD_VARIANT_RELEASE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
221 |
|
13697 | 222 |
# JDK_OUTPUTDIR specifies where a working jvm is built. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
223 |
# You can run $(JDK_OUTPUTDIR)/bin/java |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
224 |
# Though the layout of the contents of $(JDK_OUTPUTDIR) is not |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
225 |
# yet the same as a default installation. |
13697 | 226 |
# |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
227 |
# When you run "make install" it will create the standardized |
13697 | 228 |
# layout for the jdk and the jre inside the IMAGES_OUTPUTDIR subdir. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
229 |
# Then it will copy the contents of the jdk into the installation |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
230 |
# directory. |
13132 | 231 |
|
13697 | 232 |
BUILD_OUTPUT:=@BUILD_OUTPUT@ |
16578
7a35b47cb9e5
8006828: "SKIP_BOOT_CYCLE=false" must work in new building infrastructure
erikj
parents:
15914
diff
changeset
|
233 |
# Colon left out to be able to override IMAGES_OUTPUTDIR for bootcycle-images |
13697 | 234 |
LANGTOOLS_OUTPUTDIR=$(BUILD_OUTPUT)/langtools |
235 |
CORBA_OUTPUTDIR=$(BUILD_OUTPUT)/corba |
|
236 |
JAXP_OUTPUTDIR=$(BUILD_OUTPUT)/jaxp |
|
237 |
JAXWS_OUTPUTDIR=$(BUILD_OUTPUT)/jaxws |
|
238 |
HOTSPOT_OUTPUTDIR=$(BUILD_OUTPUT)/hotspot |
|
239 |
JDK_OUTPUTDIR=$(BUILD_OUTPUT)/jdk |
|
15903 | 240 |
NASHORN_OUTPUTDIR=$(BUILD_OUTPUT)/nashorn |
13697 | 241 |
IMAGES_OUTPUTDIR=$(BUILD_OUTPUT)/images |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
242 |
|
13697 | 243 |
LANGTOOLS_DIST=$(LANGTOOLS_OUTPUTDIR)/dist |
244 |
CORBA_DIST=$(CORBA_OUTPUTDIR)/dist |
|
245 |
JAXP_DIST=$(JAXP_OUTPUTDIR)/dist |
|
246 |
JAXWS_DIST=$(JAXWS_OUTPUTDIR)/dist |
|
14378
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
14112
diff
changeset
|
247 |
HOTSPOT_DIST=@HOTSPOT_DIST@ |
15903 | 248 |
NASHORN_DIST=$(NASHORN_OUTPUTDIR)/dist |
14378
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
14112
diff
changeset
|
249 |
|
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
14112
diff
changeset
|
250 |
BUILD_HOTSPOT=@BUILD_HOTSPOT@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
251 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
252 |
# The boot jdk to use |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
253 |
BOOT_JDK:=@BOOT_JDK@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
254 |
BOOT_JDK_JVMARGS:=@BOOT_JDK_JVMARGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
255 |
BOOT_RTJAR:=@BOOT_RTJAR@ |
13697 | 256 |
BOOT_TOOLSJAR=$(BOOT_JDK)/lib/tools.jar |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
257 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
258 |
# When compiling Java source to be run by the boot jdk |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
259 |
# use these extra flags, eg -source 6 -target 6 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
260 |
BOOT_JDK_SOURCETARGET:=@BOOT_JDK_SOURCETARGET@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
261 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
262 |
# Information about the build system |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
263 |
NUM_CORES:=@NUM_CORES@ |
13697 | 264 |
# Enable sjavac support = use a javac server, |
265 |
# multi core javac compilation and dependency tracking. |
|
266 |
ENABLE_SJAVAC:=@ENABLE_SJAVAC@ |
|
267 |
# Store sjavac server synchronization files here, and |
|
268 |
# the sjavac server log files. |
|
269 |
SJAVAC_SERVER_DIR:=@SJAVAC_SERVER_DIR@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
270 |
|
15790 | 271 |
# Number of parallel jobs to use for compilation |
272 |
JOBS?=@JOBS@ |
|
273 |
||
20654 | 274 |
FREETYPE_LIBS:=@FREETYPE_LIBS@ |
275 |
FREETYPE_CFLAGS:=@FREETYPE_CFLAGS@ |
|
276 |
FREETYPE_BUNDLE_LIB_PATH=@FREETYPE_BUNDLE_LIB_PATH@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
277 |
CUPS_CFLAGS:=@CUPS_CFLAGS@ |
18018
d9d70190de37
8014231: --with-alsa configuration options don't add include or lib directories to proper flags
erikj
parents:
17661
diff
changeset
|
278 |
ALSA_LIBS:=@ALSA_LIBS@ |
d9d70190de37
8014231: --with-alsa configuration options don't add include or lib directories to proper flags
erikj
parents:
17661
diff
changeset
|
279 |
ALSA_CFLAGS:=@ALSA_CFLAGS@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
280 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
281 |
PACKAGE_PATH=@PACKAGE_PATH@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
282 |
|
12801 | 283 |
# Source file for cacerts |
284 |
CACERTS_FILE=@CACERTS_FILE@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
285 |
|
14112
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
286 |
# Enable unlimited crypto policy |
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
287 |
UNLIMITED_CRYPTO=@UNLIMITED_CRYPTO@ |
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
288 |
|
22709
540ed4c23085
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22480
diff
changeset
|
289 |
# Enable RMIConnector IIOP transport |
540ed4c23085
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22480
diff
changeset
|
290 |
RMICONNECTOR_IIOP=@RMICONNECTOR_IIOP@ |
540ed4c23085
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22480
diff
changeset
|
291 |
|
20363 | 292 |
# Necessary additional compiler flags to compile X11 |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
293 |
X_CFLAGS:=@X_CFLAGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
294 |
X_LIBS:=@X_LIBS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
295 |
OPENWIN_HOME:=@OPENWIN_HOME@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
296 |
|
15581
1dd771c6a1ee
8005879: Add -DMAC_OS_X_VERSION_MAX_ALLOWED=1070 to builds on Mac
erikj
parents:
15393
diff
changeset
|
297 |
# The lowest required version of macosx to enforce compatiblity for |
15786 | 298 |
MACOSX_VERSION_MIN=@MACOSX_VERSION_MIN@ |
15581
1dd771c6a1ee
8005879: Add -DMAC_OS_X_VERSION_MAX_ALLOWED=1070 to builds on Mac
erikj
parents:
15393
diff
changeset
|
299 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
300 |
# There are two types: CC or CL |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
301 |
# CC is gcc and others behaving reasonably similar. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
302 |
# CL is cl.exe only. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
303 |
COMPILER_TYPE:=@COMPILER_TYPE@ |
16988
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
16984
diff
changeset
|
304 |
COMPILER_NAME:=@COMPILER_NAME@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
305 |
|
22466 | 306 |
# Option used to tell the compiler whether to create 32- or 64-bit executables |
307 |
COMPILER_TARGET_BITS_FLAG:=@COMPILER_TARGET_BITS_FLAG@ |
|
16984 | 308 |
COMPILER_SUPPORTS_TARGET_BITS_FLAG=@COMPILER_SUPPORTS_TARGET_BITS_FLAG@ |
309 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
310 |
CC_OUT_OPTION:=@CC_OUT_OPTION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
311 |
EXE_OUT_OPTION:=@EXE_OUT_OPTION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
312 |
LD_OUT_OPTION:=@LD_OUT_OPTION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
313 |
AR_OUT_OPTION:=@AR_OUT_OPTION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
314 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
315 |
# Flags used for overriding the default opt setting for a C/C++ source file. |
12801 | 316 |
C_O_FLAG_HIGHEST:=@C_O_FLAG_HIGHEST@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
317 |
C_O_FLAG_HI:=@C_O_FLAG_HI@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
318 |
C_O_FLAG_NORM:=@C_O_FLAG_NORM@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
319 |
C_O_FLAG_NONE:=@C_O_FLAG_NONE@ |
12801 | 320 |
CXX_O_FLAG_HIGHEST:=@CXX_O_FLAG_HIGHEST@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
321 |
CXX_O_FLAG_HI:=@CXX_O_FLAG_HI@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
322 |
CXX_O_FLAG_NORM:=@CXX_O_FLAG_NORM@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
323 |
CXX_O_FLAG_NONE:=@CXX_O_FLAG_NONE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
324 |
|
12801 | 325 |
C_FLAG_DEPS:=@C_FLAG_DEPS@ |
326 |
CXX_FLAG_DEPS:=@CXX_FLAG_DEPS@ |
|
327 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
328 |
# Tools that potentially need to be cross compilation aware. |
14111 | 329 |
CC:=@FIXPATH@ @CCACHE@ @CC@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
330 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
331 |
# CFLAGS used to compile the jdk native libraries (C-code) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
332 |
CFLAGS_JDKLIB:=@CFLAGS_JDKLIB@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
333 |
CXXFLAGS_JDKLIB:=@CXXFLAGS_JDKLIB@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
334 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
335 |
# CFLAGS used to compile the jdk native launchers (C-code) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
336 |
CFLAGS_JDKEXE:=@CFLAGS_JDKEXE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
337 |
CXXFLAGS_JDKEXE:=@CXXFLAGS_JDKEXE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
338 |
|
14111 | 339 |
CXX:=@FIXPATH@ @CCACHE@ @CXX@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
340 |
#CXXFLAGS:=@CXXFLAGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
341 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
342 |
OBJC:=@CCACHE@ @OBJC@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
343 |
#OBJCFLAGS:=@OBJCFLAGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
344 |
|
14111 | 345 |
CPP:=@FIXPATH@ @CPP@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
346 |
#CPPFLAGS:=@CPPFLAGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
347 |
|
13697 | 348 |
# The linker can be gcc or ld on posix systems, or link.exe on windows systems. |
14111 | 349 |
LD:=@FIXPATH@ @LD@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
350 |
|
22460
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
18018
diff
changeset
|
351 |
# The linker on older SuSE distros (e.g. on SLES 10) complains with: |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
18018
diff
changeset
|
352 |
# "Invalid version tag `SUNWprivate_1.1'. Only anonymous version tag is allowed in executable." |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
18018
diff
changeset
|
353 |
# if feeded with a version script which contains named tags. |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
18018
diff
changeset
|
354 |
USING_BROKEN_SUSE_LD:=@USING_BROKEN_SUSE_LD@ |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
18018
diff
changeset
|
355 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
356 |
# LDFLAGS used to link the jdk native libraries (C-code) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
357 |
LDFLAGS_JDKLIB:=@LDFLAGS_JDKLIB@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
358 |
LDFLAGS_JDKLIB_SUFFIX:=@LDFLAGS_JDKLIB_SUFFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
359 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
360 |
# On some platforms the linker cannot be used to create executables, thus |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
361 |
# the need for a separate LDEXE command. |
14111 | 362 |
LDEXE:=@FIXPATH@ @LDEXE@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
363 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
364 |
# LDFLAGS used to link the jdk native launchers (C-code) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
365 |
LDFLAGS_JDKEXE:=@LDFLAGS_JDKEXE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
366 |
LDFLAGS_JDKEXE_SUFFIX:=@LDFLAGS_JDKEXE_SUFFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
367 |
|
13697 | 368 |
# LDFLAGS specific to C++ linking. |
369 |
LDFLAGS_CXX_JDK:=@LDFLAGS_CXX_JDK@ |
|
370 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
371 |
# Sometimes a different linker is needed for c++ libs |
14111 | 372 |
LDCXX:=@FIXPATH@ @LDCXX@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
373 |
# The flags for linking libstdc++ linker. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
374 |
LIBCXX:=@LIBCXX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
375 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
376 |
# Sometimes a different linker is needed for c++ executables |
14111 | 377 |
LDEXECXX:=@FIXPATH@ @LDEXECXX@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
378 |
|
13697 | 379 |
# BUILD_CC/BUILD_LD is a compiler/linker that generates code that is runnable on the |
380 |
# build platform. |
|
14111 | 381 |
BUILD_CC:=@FIXPATH@ @BUILD_CC@ |
382 |
BUILD_LD:=@FIXPATH@ @BUILD_LD@ |
|
13132 | 383 |
|
14111 | 384 |
AS:=@FIXPATH@ @AS@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
385 |
|
13697 | 386 |
# AR is used to create a static library (is ar in posix, lib.exe in windows) |
14111 | 387 |
AR:=@FIXPATH@ @AR@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
388 |
ARFLAGS:=@ARFLAGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
389 |
|
13697 | 390 |
NM:=@NM@ |
16582
61f0b8f48036
8006288: build-infra: Use solaris nm and not gnm on solaris
erikj
parents:
16581
diff
changeset
|
391 |
GNM:=@GNM@ |
13697 | 392 |
STRIP:=@STRIP@ |
393 |
MCS:=@MCS@ |
|
394 |
||
395 |
LIPO:=@LIPO@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
396 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
397 |
# Command to create a shared library |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
398 |
SHARED_LIBRARY_FLAGS:=@SHARED_LIBRARY_FLAGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
399 |
|
20363 | 400 |
# Options to linker to specify a mapfile. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
401 |
# (Note absence of := assignment, because we do not want to evaluate the macro body here) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
402 |
SET_SHARED_LIBRARY_MAPFILE=@SET_SHARED_LIBRARY_MAPFILE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
403 |
|
12801 | 404 |
# Options for C/CXX compiler to be used if linking is performed |
405 |
# using reorder file |
|
406 |
C_FLAG_REORDER:=@C_FLAG_REORDER@ |
|
407 |
CXX_FLAG_REORDER:=@CXX_FLAG_REORDER@ |
|
408 |
||
13132 | 409 |
# |
410 |
# Options for generating debug symbols |
|
411 |
ENABLE_DEBUG_SYMBOLS:=@ENABLE_DEBUG_SYMBOLS@ |
|
412 |
CFLAGS_DEBUG_SYMBOLS:=@CFLAGS_DEBUG_SYMBOLS@ |
|
413 |
CXXFLAGS_DEBUG_SYMBOLS:=@CXXFLAGS_DEBUG_SYMBOLS@ |
|
414 |
ZIP_DEBUGINFO_FILES:=@ZIP_DEBUGINFO_FILES@ |
|
415 |
||
416 |
# |
|
417 |
# Compress (or not) jars |
|
418 |
COMPRESS_JARS=@COMPRESS_JARS@ |
|
419 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
420 |
# Options to linker to specify the library name. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
421 |
# (Note absence of := assignment, because we do not want to evaluate the macro body here) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
422 |
SET_SHARED_LIBRARY_NAME=@SET_SHARED_LIBRARY_NAME@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
423 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
424 |
# Set origin using the linker, ie use the relative path to the dependent library to find the dependees. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
425 |
# (Note absence of := assignment, because we do not want to evaluate the macro body here) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
426 |
SET_SHARED_LIBRARY_ORIGIN=@SET_SHARED_LIBRARY_ORIGIN@ |
13697 | 427 |
SET_EXECUTABLE_ORIGIN=@SET_EXECUTABLE_ORIGIN@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
428 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
429 |
# Different OS:es have different ways of naming shared libraries. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
430 |
# The SHARED_LIBRARY macro takes "verify" as and argument and returns: |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
431 |
# "libverify.so" or "libverify.dylib" or "verify.dll" depending on platform. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
432 |
# (Note absence of := assignment, because we do not want to evaluate the macro body here) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
433 |
SHARED_LIBRARY=@SHARED_LIBRARY@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
434 |
STATIC_LIBRARY=@STATIC_LIBRARY@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
435 |
LIBRARY_PREFIX:=@LIBRARY_PREFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
436 |
SHARED_LIBRARY_SUFFIX:=@SHARED_LIBRARY_SUFFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
437 |
STATIC_LIBRARY_SUFFIX:=@STATIC_LIBRARY_SUFFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
438 |
EXE_SUFFIX:=@EXE_SUFFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
439 |
OBJ_SUFFIX:=@OBJ_SUFFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
440 |
|
12801 | 441 |
POST_STRIP_CMD:=@POST_STRIP_CMD@ |
442 |
POST_MCS_CMD:=@POST_MCS_CMD@ |
|
443 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
444 |
JAVA_FLAGS:=@BOOT_JDK_JVMARGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
445 |
|
22477 | 446 |
JAVA=@FIXPATH@ @JAVA@ $(JAVA_FLAGS) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
447 |
|
22477 | 448 |
JAVAC:=@FIXPATH@ @JAVAC@ |
13697 | 449 |
# Hotspot sets this variable before reading the SPEC when compiling sa-jdi.jar. Avoid |
450 |
# overriding that value by using ?=. |
|
451 |
JAVAC_FLAGS?=@JAVAC_FLAGS@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
452 |
|
22477 | 453 |
JAVAH:=@FIXPATH@ @JAVAH@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
454 |
|
22477 | 455 |
JAR:=@FIXPATH@ @JAR@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
456 |
|
22477 | 457 |
NATIVE2ASCII:=@FIXPATH@ @NATIVE2ASCII@ |
12801 | 458 |
|
22477 | 459 |
JARSIGNER:=@FIXPATH@ @JARSIGNER@ |
15057
6cdc13b4157e
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15056
diff
changeset
|
460 |
|
15393
e3761cf4e010
8006872: Stop creating four jars with identical content in the new build system.
ohrstrom
parents:
15058
diff
changeset
|
461 |
# You run the new javac using the boot jdk with $(BOOT_JDK)/bin/java $(NEW_JAVAC) ... |
22480
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22479
diff
changeset
|
462 |
INTERIM_LANGTOOLS_JAR := $(LANGTOOLS_OUTPUTDIR)/dist/interim_langtools.jar |
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22479
diff
changeset
|
463 |
INTERIM_LANGTOOLS_ARGS := "-Xbootclasspath/p:$(INTERIM_LANGTOOLS_JAR)" -cp $(INTERIM_LANGTOOLS_JAR) |
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22479
diff
changeset
|
464 |
NEW_JAVAC = $(INTERIM_LANGTOOLS_ARGS) com.sun.tools.javac.Main |
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22479
diff
changeset
|
465 |
NEW_JAVADOC = $(INTERIM_LANGTOOLS_ARGS) com.sun.tools.javadoc.Main |
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22479
diff
changeset
|
466 |
|
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22479
diff
changeset
|
467 |
# The interim corba jar is needed for running rmic |
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22479
diff
changeset
|
468 |
INTERIM_CORBA_JAR := $(CORBA_OUTPUTDIR)/dist/interim_corba.jar |
15393
e3761cf4e010
8006872: Stop creating four jars with identical content in the new build system.
ohrstrom
parents:
15058
diff
changeset
|
469 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
470 |
# Base flags for RC |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
471 |
# Guarding this against resetting value. Legacy make files include spec multiple |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
472 |
# times. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
473 |
ifndef RC_FLAGS |
20363 | 474 |
RC_FLAGS:=@RC_FLAGS@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
475 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
476 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
477 |
# A specific java binary with specific options can be used to run |
13697 | 478 |
# the long running background sjavac servers and other long running tasks. |
14111 | 479 |
SJAVAC_SERVER_JAVA:=@FIXPATH@ @SJAVAC_SERVER_JAVA@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
480 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
481 |
# Tools adhering to a minimal and common standard of posix compliance. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
482 |
AWK:=@AWK@ |
13697 | 483 |
BASENAME:=@BASENAME@ |
14111 | 484 |
BASH:=@BASH@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
485 |
CAT:=@CAT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
486 |
CCACHE:=@CCACHE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
487 |
# CD is going away, but remains to cater for legacy makefiles. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
488 |
CD:=cd |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
489 |
CHMOD:=@CHMOD@ |
17661
55c5e0f7b9cc
8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents:
17593
diff
changeset
|
490 |
CODESIGN:=@CODESIGN@ |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
491 |
COMM:=@COMM@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
492 |
CP:=@CP@ |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
493 |
CPIO:=@CPIO@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
494 |
CUT:=@CUT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
495 |
DATE:=@DATE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
496 |
DIFF:=@DIFF@ |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
497 |
DIRNAME:=@DIRNAME@ |
20640
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
20275
diff
changeset
|
498 |
DSYMUTIL:=@DSYMUTIL@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
499 |
FIND:=@FIND@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
500 |
FIND_DELETE:=@FIND_DELETE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
501 |
ECHO:=@ECHO@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
502 |
EGREP:=@EGREP@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
503 |
FGREP:=@FGREP@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
504 |
GREP:=@GREP@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
505 |
HEAD:=@HEAD@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
506 |
LS:=@LS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
507 |
LN:=@LN@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
508 |
MKDIR:=@MKDIR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
509 |
MV:=@MV@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
510 |
NAWK:=@NAWK@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
511 |
PRINTF:=@PRINTF@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
512 |
PWD:=@THEPWDCMD@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
513 |
RM:=@RM@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
514 |
SED:=@SED@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
515 |
SH:=@SH@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
516 |
SORT:=@SORT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
517 |
TAR:=@TAR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
518 |
TAIL:=@TAIL@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
519 |
TEE:=@TEE@ |
14111 | 520 |
TIME:=@TIME@ |
18425 | 521 |
IS_GNU_TIME:=@IS_GNU_TIME@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
522 |
TR:=@TR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
523 |
TOUCH:=@TOUCH@ |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
524 |
UNIQ:=@UNIQ@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
525 |
WC:=@WC@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
526 |
XARGS:=@XARGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
527 |
ZIPEXE:=@ZIP@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
528 |
ZIP:=@ZIP@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
529 |
UNZIP:=@UNZIP@ |
14111 | 530 |
MT:=@FIXPATH@ @MT@ |
531 |
RC:=@FIXPATH@ @RC@ |
|
532 |
DUMPBIN:=@FIXPATH@ @DUMPBIN@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
533 |
CYGPATH:=@CYGPATH@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
534 |
LDD:=@LDD@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
535 |
OTOOL:=@OTOOL@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
536 |
READELF:=@READELF@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
537 |
EXPR:=@EXPR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
538 |
FILE:=@FILE@ |
12801 | 539 |
HG:=@HG@ |
13132 | 540 |
OBJCOPY:=@OBJCOPY@ |
14111 | 541 |
SETFILE:=@SETFILE@ |
16580
6acb502beafa
8008373: JFR JTReg tests fail with CompilationError on MacOSX; missing '._sunec.jar'
erikj
parents:
16578
diff
changeset
|
542 |
XATTR:=@XATTR@ |
17593
de6741d8a142
8007129: build-infra Add configure --with-jtreg option for location of JTREG
erikj
parents:
17352
diff
changeset
|
543 |
JT_HOME:=@JT_HOME@ |
de6741d8a142
8007129: build-infra Add configure --with-jtreg option for location of JTREG
erikj
parents:
17352
diff
changeset
|
544 |
JTREGEXE:=@JTREGEXE@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
545 |
|
14111 | 546 |
FIXPATH:=@FIXPATH@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
547 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
548 |
# Where the build output is stored for your convenience. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
549 |
BUILD_LOG:=@BUILD_LOG@ |
13132 | 550 |
BUILD_LOG_PREVIOUS:=@BUILD_LOG_PREVIOUS@ |
14379
b449aa34783e
8003274: build-infra: Makefile changes needed for sjavac
tbell
parents:
14378
diff
changeset
|
551 |
# Disable the build log wrapper on sjavac+winapi until |
b449aa34783e
8003274: build-infra: Makefile changes needed for sjavac
tbell
parents:
14378
diff
changeset
|
552 |
# we have solved how to prevent the log wrapper to wait |
b449aa34783e
8003274: build-infra: Makefile changes needed for sjavac
tbell
parents:
14378
diff
changeset
|
553 |
# for the background sjavac server process. |
b449aa34783e
8003274: build-infra: Makefile changes needed for sjavac
tbell
parents:
14378
diff
changeset
|
554 |
ifeq (@ENABLE_SJAVAC@X@OPENJDK_BUILD_OS_API@,yesXwinapi) |
20363 | 555 |
BUILD_LOG_WRAPPER:= |
14379
b449aa34783e
8003274: build-infra: Makefile changes needed for sjavac
tbell
parents:
14378
diff
changeset
|
556 |
else |
20363 | 557 |
BUILD_LOG_WRAPPER:=@BUILD_LOG_WRAPPER@ |
14379
b449aa34783e
8003274: build-infra: Makefile changes needed for sjavac
tbell
parents:
14378
diff
changeset
|
558 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
559 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
560 |
# Build setup |
13132 | 561 |
ENABLE_JFR=@ENABLE_JFR@ |
15914
1338d1e0e058
8010030: Allow configure to detect if EC implementation is present
omajid
parents:
15912
diff
changeset
|
562 |
ENABLE_INTREE_EC=@ENABLE_INTREE_EC@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
563 |
USE_EXTERNAL_LIBJPEG:=@USE_EXTERNAL_LIBJPEG@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
564 |
USE_EXTERNAL_LIBGIF:=@USE_EXTERNAL_LIBGIF@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
565 |
USE_EXTERNAL_LIBZ:=@USE_EXTERNAL_LIBZ@ |
13132 | 566 |
LIBZIP_CAN_USE_MMAP:=@LIBZIP_CAN_USE_MMAP@ |
14111 | 567 |
MSVCR_DLL:=@MSVCR_DLL@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
568 |
|
13132 | 569 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
570 |
# ADD_SRCS takes a single argument with source roots |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
571 |
# and appends any corresponding source roots found |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
572 |
# below --with-add-source-root and below |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
573 |
# --with-override-source-root. It is the responsibility |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
574 |
# of the next macro to get rid of superfluous files. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
575 |
ADD_SRCS=$1 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
576 |
ifneq (,$(ADD_SRC_ROOT)) |
20363 | 577 |
# Append wildcard rule to pickup any matching source roots found below ADD_SRC_ROOT |
578 |
ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(ADD_SRC_ROOT),$1)) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
579 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
580 |
ifneq (,$(OVERRIDE_SRC_ROOT)) |
20363 | 581 |
# Append wildcard rule to pickup any matching source roots found below OVERRIDE_SRC_ROOT |
582 |
ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(OVERRIDE_SRC_ROOT),$1)) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
583 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
584 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
585 |
# OVR_SRCS creates a filter expression to filter out sources in |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
586 |
# the original source directory that lie inside directories below |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
587 |
# --with-override-source-root. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
588 |
# Use := here since we want to scan for these files here. To avoid recomputation later. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
589 |
# We cannot do the scan in configure, since that would force us to rerun configure when |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
590 |
# we add overridden sources. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
591 |
ifneq (,$(OVERRIDE_SRC_ROOT)) |
20363 | 592 |
OVR_SRCS:=$(addsuffix %,$(subst $(OVERRIDE_SRC_ROOT),$(SRC_ROOT),$(sort $(dir $(shell $(FIND) $(OVERRIDE_SRC_ROOT) -type f))))) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
593 |
else |
20363 | 594 |
OVR_SRCS:= |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
595 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
596 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
597 |
#################################################### |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
598 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
599 |
# INSTALLATION |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
600 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
601 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
602 |
# Common prefix for all installed files. Defaults to /usr/local, |
20363 | 603 |
# but /opt/myjdk is another common version. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
604 |
INSTALL_PREFIX=@prefix@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
605 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
606 |
# Directories containing architecture-dependent files should be relative to exec_prefix |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
607 |
INSTALL_EXECPREFIX=@exec_prefix@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
608 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
609 |
# java,javac,javah,javap etc are installed here. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
610 |
INSTALL_BINDIR=@bindir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
611 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
612 |
# Read only architecture-independent data |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
613 |
INSTALL_DATADIR=@datadir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
614 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
615 |
# Root of above. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
616 |
INSTALL_DATAROOTDIR=@datarootdir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
617 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
618 |
# Doc files, other than info and man. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
619 |
INSTALL_DOCDIR=@docdir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
620 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
621 |
# Html documentation |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
622 |
INSTALL_HTMLDIR=@htmldir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
623 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
624 |
# Installing C header files, JNI headers for example. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
625 |
INSTALL_INCLUDEDIR=@includedir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
626 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
627 |
# Installing library files.... |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
628 |
INSTALL_INCLUDEDIR=@libdir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
629 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
630 |
# Executables that other programs run. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
631 |
INSTALL_LIBEXECDIR=@libexecdir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
632 |
|
20363 | 633 |
# Locale-dependent but architecture-independent data, such as message catalogs. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
634 |
INSTALL_LOCALEDIR=@localedir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
635 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
636 |
# Modifiable single-machine data |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
637 |
INSTALL_LOCALSTATEDIR=@localstatedir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
638 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
639 |
# Man pages |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
640 |
INSTALL_MANDIR=@mandir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
641 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
642 |
# Modifiable architecture-independent data. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
643 |
INSTALL_SHAREDSTATEDIR=@sharedstatedir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
644 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
645 |
# Read-only single-machine data |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
646 |
INSTALL_SYSCONFDIR=@sysconfdir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
647 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
648 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
649 |
#################################################### |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
650 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
651 |
# Misc |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
652 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
653 |
|
12801 | 654 |
# Name of Service Agent library |
655 |
SALIB_NAME=@SALIB_NAME@ |
|
656 |
||
16581
b2cddec593f4
8011388: Support building zero and zeroshark with the new build
omajid
parents:
16580
diff
changeset
|
657 |
INCLUDE_SA=@INCLUDE_SA@ |
b2cddec593f4
8011388: Support building zero and zeroshark with the new build
omajid
parents:
16580
diff
changeset
|
658 |
|
12801 | 659 |
OS_VERSION_MAJOR:=@OS_VERSION_MAJOR@ |
660 |
OS_VERSION_MINOR:=@OS_VERSION_MINOR@ |
|
661 |
OS_VERSION_MICRO:=@OS_VERSION_MICRO@ |
|
662 |
||
15058
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
663 |
# Images directory definitions |
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
664 |
JDK_IMAGE_SUBDIR:=j2sdk-image |
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
665 |
JRE_IMAGE_SUBDIR:=j2re-image |
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
666 |
JDK_OVERLAY_IMAGE_SUBDIR:=j2sdk-overlay-image |
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
667 |
JRE_OVERLAY_IMAGE_SUBDIR:=j2re-overlay-image |
16578
7a35b47cb9e5
8006828: "SKIP_BOOT_CYCLE=false" must work in new building infrastructure
erikj
parents:
15914
diff
changeset
|
668 |
# Colon left out to be able to override output dir for bootcycle-images |
7a35b47cb9e5
8006828: "SKIP_BOOT_CYCLE=false" must work in new building infrastructure
erikj
parents:
15914
diff
changeset
|
669 |
JDK_IMAGE_DIR=$(IMAGES_OUTPUTDIR)/$(JDK_IMAGE_SUBDIR) |
7a35b47cb9e5
8006828: "SKIP_BOOT_CYCLE=false" must work in new building infrastructure
erikj
parents:
15914
diff
changeset
|
670 |
JRE_IMAGE_DIR=$(IMAGES_OUTPUTDIR)/$(JRE_IMAGE_SUBDIR) |
7a35b47cb9e5
8006828: "SKIP_BOOT_CYCLE=false" must work in new building infrastructure
erikj
parents:
15914
diff
changeset
|
671 |
JDK_OVERLAY_IMAGE_DIR=$(IMAGES_OUTPUTDIR)/$(JDK_OVERLAY_IMAGE_SUBDIR) |
7a35b47cb9e5
8006828: "SKIP_BOOT_CYCLE=false" must work in new building infrastructure
erikj
parents:
15914
diff
changeset
|
672 |
JRE_OVERLAY_IMAGE_DIR=$(IMAGES_OUTPUTDIR)/$(JRE_OVERLAY_IMAGE_SUBDIR) |
15058
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
673 |
|
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
674 |
# Macosx bundles directory definitions |
16578
7a35b47cb9e5
8006828: "SKIP_BOOT_CYCLE=false" must work in new building infrastructure
erikj
parents:
15914
diff
changeset
|
675 |
JDK_BUNDLE_SUBDIR=j2sdk-bundle/jdk$(JDK_VERSION).jdk/Contents |
7a35b47cb9e5
8006828: "SKIP_BOOT_CYCLE=false" must work in new building infrastructure
erikj
parents:
15914
diff
changeset
|
676 |
JRE_BUNDLE_SUBDIR=j2re-bundle/jre$(JDK_VERSION).jre/Contents |
7a35b47cb9e5
8006828: "SKIP_BOOT_CYCLE=false" must work in new building infrastructure
erikj
parents:
15914
diff
changeset
|
677 |
JDK_BUNDLE_DIR=$(IMAGES_OUTPUTDIR)/$(JDK_BUNDLE_SUBDIR) |
7a35b47cb9e5
8006828: "SKIP_BOOT_CYCLE=false" must work in new building infrastructure
erikj
parents:
15914
diff
changeset
|
678 |
JRE_BUNDLE_DIR=$(IMAGES_OUTPUTDIR)/$(JRE_BUNDLE_SUBDIR) |
15058
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
679 |
|
22714
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22711
diff
changeset
|
680 |
# This macro is called to allow inclusion of closed source counterparts. |
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22711
diff
changeset
|
681 |
# Unless overridden in closed sources, it expands to nothing. |
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22711
diff
changeset
|
682 |
# Usage: This function is called in an open makefile, with the following |
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22711
diff
changeset
|
683 |
# arguments: |
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22711
diff
changeset
|
684 |
# $1 the name of the repo, or empty if the top-level repo. |
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22711
diff
changeset
|
685 |
# $2 the name of the makefile |
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22711
diff
changeset
|
686 |
define IncludeCustomExtension |
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22711
diff
changeset
|
687 |
endef |
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22711
diff
changeset
|
688 |
|
13697 | 689 |
# Include the custom-spec.gmk file if it exists |
690 |
-include $(dir @SPEC@)/custom-spec.gmk |