author | jfranck |
Tue, 07 May 2013 09:52:23 +0200 | |
changeset 17436 | 79483ba40c55 |
parent 16582 | 61f0b8f48036 |
child 16984 | ba1791eeb074 |
child 21161 | 79d976ac51c2 |
permissions | -rw-r--r-- |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
2 |
# Copyright (c) 2011, 2013, 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 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
33 |
# When calling macros, the spaces between arguments are |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
34 |
# often semantically important! Sometimes we need to subst |
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:=\# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
40 |
SQUOTE:=' |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
41 |
#' |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
42 |
DQUOTE:=" |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
43 |
#" |
14111 | 44 |
define NEWLINE |
45 |
||
46 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
47 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
48 |
|
13697 | 49 |
# A self-referential reference to this file. |
50 |
SPEC:=@SPEC@ |
|
51 |
||
52 |
# Specify where the spec file is. |
|
53 |
MAKE_ARGS="SPEC=$(SPEC)" |
|
54 |
||
14111 | 55 |
MAKE:=@MAKE@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
56 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
57 |
# Pass along the verbosity setting. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
58 |
ifeq (,$(findstring VERBOSE=,$(MAKE))) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
59 |
MAKE:=$(MAKE) $(VERBOSE) VERBOSE="$(VERBOSE)" |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
60 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
61 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
62 |
# No implicit variables or rules! |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
63 |
ifeq (,$(findstring -R,$(MAKE))) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
64 |
MAKE:=$(MAKE) -R |
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 |
# Specify where the common include directory for makefiles is. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
68 |
ifeq (,$(findstring -I @SRC_ROOT@/common/makefiles,$(MAKE))) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
69 |
MAKE:=$(MAKE) -I @SRC_ROOT@/common/makefiles |
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 |
|
12801 | 72 |
# The "human readable" name of this configuration |
73 |
CONF_NAME:=@CONF_NAME@ |
|
74 |
||
13132 | 75 |
# The built jdk will run in this target system. |
76 |
OPENJDK_TARGET_OS:=@OPENJDK_TARGET_OS@ |
|
77 |
OPENJDK_TARGET_OS_API:=@OPENJDK_TARGET_OS_API@ |
|
14111 | 78 |
OPENJDK_TARGET_OS_ENV:=@OPENJDK_TARGET_OS_ENV@ |
13132 | 79 |
|
80 |
OPENJDK_TARGET_CPU:=@OPENJDK_TARGET_CPU@ |
|
81 |
OPENJDK_TARGET_CPU_ARCH:=@OPENJDK_TARGET_CPU_ARCH@ |
|
82 |
OPENJDK_TARGET_CPU_BITS:=@OPENJDK_TARGET_CPU_BITS@ |
|
83 |
OPENJDK_TARGET_CPU_ENDIAN:=@OPENJDK_TARGET_CPU_ENDIAN@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
84 |
|
13697 | 85 |
COMPILE_TYPE:=@COMPILE_TYPE@ |
86 |
||
87 |
# Legacy support |
|
88 |
OPENJDK_TARGET_CPU_ISADIR:=@OPENJDK_TARGET_CPU_ISADIR@ |
|
89 |
OPENJDK_TARGET_CPU_LIBDIR:=@OPENJDK_TARGET_CPU_LIBDIR@ |
|
90 |
OPENJDK_TARGET_CPU_LEGACY:=@OPENJDK_TARGET_CPU_LEGACY@ |
|
91 |
OPENJDK_TARGET_CPU_LEGACY_LIB:=@OPENJDK_TARGET_CPU_LEGACY_LIB@ |
|
92 |
OPENJDK_TARGET_CPU_OSARCH:=@OPENJDK_TARGET_CPU_OSARCH@ |
|
93 |
OPENJDK_TARGET_CPU_JLI_CFLAGS:=@OPENJDK_TARGET_CPU_JLI_CFLAGS@ |
|
94 |
OPENJDK_TARGET_OS_API_DIR:=@OPENJDK_TARGET_OS_API_DIR@ |
|
95 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
96 |
# We are building on this build system. |
13132 | 97 |
# When not cross-compiling, it is the same as the target. |
98 |
OPENJDK_BUILD_OS:=@OPENJDK_BUILD_OS@ |
|
99 |
OPENJDK_BUILD_OS_API:=@OPENJDK_BUILD_OS_API@ |
|
100 |
||
101 |
OPENJDK_BUILD_CPU:=@OPENJDK_BUILD_CPU@ |
|
102 |
OPENJDK_BUILD_CPU_ARCH:=@OPENJDK_BUILD_CPU_ARCH@ |
|
103 |
OPENJDK_BUILD_CPU_BITS:=@OPENJDK_BUILD_CPU_BITS@ |
|
104 |
OPENJDK_BUILD_CPU_ENDIAN:=@OPENJDK_BUILD_CPU_ENDIAN@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
105 |
|
12801 | 106 |
# Legacy OS values for use in release file. |
107 |
REQUIRED_OS_NAME:=@REQUIRED_OS_NAME@ |
|
108 |
REQUIRED_OS_VERSION:=@REQUIRED_OS_VERSION@ |
|
109 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
110 |
@SET_OPENJDK@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
111 |
LIBM:=-lm |
12801 | 112 |
LIBDL:=@LIBDL@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
113 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
114 |
# colon or semicolon |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
115 |
PATH_SEP:=@PATH_SEP@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
116 |
|
14111 | 117 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
118 |
# On Windows, the Visual Studio toolchain needs the LIB and INCLUDE |
|
119 |
# environment variables (in Windows path style), and the PATH needs to |
|
120 |
# be adjusted to include Visual Studio tools (but this needs to be in |
|
121 |
# cygwin/msys style). |
|
122 |
export PATH:=@VS_PATH@ |
|
123 |
export INCLUDE:=@VS_INCLUDE@ |
|
124 |
export LIB:=@VS_LIB@ |
|
125 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
126 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
127 |
# The sys root where standard headers and libraries are found. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
128 |
# Usually not needed since the configure script should have |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
129 |
# taken it into account already when setting CFLAGS et al. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
130 |
SYS_ROOT:=@SYS_ROOT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
131 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
132 |
# Paths to the source code |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
133 |
SRC_ROOT:=@SRC_ROOT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
134 |
ADD_SRC_ROOT:=@ADD_SRC_ROOT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
135 |
OVERRIDE_SRC_ROOT:=@OVERRIDE_SRC_ROOT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
136 |
TOPDIR:=@SRC_ROOT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
137 |
OUTPUT_ROOT:=@OUTPUT_ROOT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
138 |
JDK_TOPDIR:=@JDK_TOPDIR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
139 |
LANGTOOLS_TOPDIR:=@LANGTOOLS_TOPDIR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
140 |
CORBA_TOPDIR:=@CORBA_TOPDIR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
141 |
JAXP_TOPDIR:=@JAXP_TOPDIR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
142 |
JAXWS_TOPDIR:=@JAXWS_TOPDIR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
143 |
HOTSPOT_TOPDIR:=@HOTSPOT_TOPDIR@ |
15903 | 144 |
NASHORN_TOPDIR:=@NASHORN_TOPDIR@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
145 |
COPYRIGHT_YEAR:=@COPYRIGHT_YEAR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
146 |
|
13697 | 147 |
# Location where build customization files may be found |
148 |
CUSTOM_MAKE_DIR:=@CUSTOM_MAKE_DIR@ |
|
149 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
150 |
# Information gathered from the version.numbers file. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
151 |
JDK_MAJOR_VERSION:=@JDK_MAJOR_VERSION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
152 |
JDK_MINOR_VERSION:=@JDK_MINOR_VERSION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
153 |
JDK_MICRO_VERSION:=@JDK_MICRO_VERSION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
154 |
JDK_UPDATE_VERSION:=@JDK_UPDATE_VERSION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
155 |
JDK_BUILD_NUMBER:=@JDK_BUILD_NUMBER@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
156 |
MILESTONE:=@MILESTONE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
157 |
LAUNCHER_NAME:=@LAUNCHER_NAME@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
158 |
PRODUCT_NAME:=@PRODUCT_NAME@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
159 |
PRODUCT_SUFFIX:=@PRODUCT_SUFFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
160 |
JDK_RC_PLATFORM_NAME:=@JDK_RC_PLATFORM_NAME@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
161 |
COMPANY_NAME:=@COMPANY_NAME@ |
14111 | 162 |
MACOSX_BUNDLE_NAME_BASE=@MACOSX_BUNDLE_NAME_BASE@ |
163 |
MACOSX_BUNDLE_ID_BASE=@MACOSX_BUNDLE_ID_BASE@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
164 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
165 |
# Different version strings generated from the above information. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
166 |
JDK_VERSION:=@JDK_VERSION@ |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
167 |
RUNTIME_NAME=$(PRODUCT_NAME) $(PRODUCT_SUFFIX) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
168 |
COOKED_BUILD_NUMBER:=@COOKED_BUILD_NUMBER@ |
15055
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
169 |
# 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
|
170 |
# JDK_BUILD_NUMBER can be overridden on the make command line. |
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
171 |
ifeq ($(MILESTONE),) |
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
172 |
RELEASE=$(JDK_VERSION)$(BUILD_VARIANT_RELEASE) |
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
173 |
else |
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
174 |
RELEASE=$(JDK_VERSION)-$(MILESTONE)$(BUILD_VARIANT_RELEASE) |
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
175 |
endif |
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
176 |
ifeq ($(JDK_BUILD_NUMBER),b00) |
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
177 |
USER_RELEASE_SUFFIX=@USER_RELEASE_SUFFIX@ |
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
178 |
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
|
179 |
else |
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
180 |
FULL_VERSION=$(RELEASE)-$(JDK_BUILD_NUMBER) |
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
14810
diff
changeset
|
181 |
endif |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
182 |
JRE_RELEASE_VERSION:=$(FULL_VERSION) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
183 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
184 |
# How to compile the code: release, fastdebug or slowdebug |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
185 |
DEBUG_LEVEL:=@DEBUG_LEVEL@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
186 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
187 |
# This is the JDK variant to build. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
188 |
# 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
|
189 |
JDK_VARIANT:=@JDK_VARIANT@ |
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 |
# Should we compile support for running with a graphical UI? (ie headful) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
192 |
# Should we compile support for running without? (ie headless) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
193 |
SUPPORT_HEADFUL:=@SUPPORT_HEADFUL@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
194 |
SUPPORT_HEADLESS:=@SUPPORT_HEADLESS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
195 |
# Legacy defines controlled by the SUPPORT_HEADLESS and SUPPORT_HEADFUL options. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
196 |
@BUILD_HEADLESS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
197 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
198 |
# These are the libjvms that we want to build. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
199 |
# The java launcher uses the default. |
14810 | 200 |
# 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
|
201 |
# on the java launcher command line. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
202 |
JVM_VARIANTS:=@JVM_VARIANTS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
203 |
JVM_VARIANT_SERVER:=@JVM_VARIANT_SERVER@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
204 |
JVM_VARIANT_CLIENT:=@JVM_VARIANT_CLIENT@ |
14810 | 205 |
JVM_VARIANT_MINIMAL1:=@JVM_VARIANT_MINIMAL1@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
206 |
JVM_VARIANT_KERNEL:=@JVM_VARIANT_KERNEL@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
207 |
JVM_VARIANT_ZERO:=@JVM_VARIANT_ZERO@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
208 |
JVM_VARIANT_ZEROSHARK:=@JVM_VARIANT_ZEROSHARK@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
209 |
|
13697 | 210 |
# Universal binaries on macosx |
211 |
MACOSX_UNIVERSAL=@MACOSX_UNIVERSAL@ |
|
212 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
213 |
# Legacy setting: -debug or -fastdebug |
13697 | 214 |
# Still used in version string... |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
215 |
BUILD_VARIANT_RELEASE:=@BUILD_VARIANT_RELEASE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
216 |
|
13697 | 217 |
# JDK_OUTPUTDIR specifies where a working jvm is built. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
218 |
# You can run $(JDK_OUTPUTDIR)/bin/java |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
219 |
# Though the layout of the contents of $(JDK_OUTPUTDIR) is not |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
220 |
# yet the same as a default installation. |
13697 | 221 |
# |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
222 |
# When you run "make install" it will create the standardized |
13697 | 223 |
# 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
|
224 |
# Then it will copy the contents of the jdk into the installation |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
225 |
# directory. |
13132 | 226 |
|
13697 | 227 |
BUILD_OUTPUT:=@BUILD_OUTPUT@ |
16578
7a35b47cb9e5
8006828: "SKIP_BOOT_CYCLE=false" must work in new building infrastructure
erikj
parents:
15914
diff
changeset
|
228 |
# Colon left out to be able to override IMAGES_OUTPUTDIR for bootcycle-images |
13697 | 229 |
LANGTOOLS_OUTPUTDIR=$(BUILD_OUTPUT)/langtools |
230 |
CORBA_OUTPUTDIR=$(BUILD_OUTPUT)/corba |
|
231 |
JAXP_OUTPUTDIR=$(BUILD_OUTPUT)/jaxp |
|
232 |
JAXWS_OUTPUTDIR=$(BUILD_OUTPUT)/jaxws |
|
233 |
HOTSPOT_OUTPUTDIR=$(BUILD_OUTPUT)/hotspot |
|
234 |
JDK_OUTPUTDIR=$(BUILD_OUTPUT)/jdk |
|
15903 | 235 |
NASHORN_OUTPUTDIR=$(BUILD_OUTPUT)/nashorn |
13697 | 236 |
IMAGES_OUTPUTDIR=$(BUILD_OUTPUT)/images |
15057
6cdc13b4157e
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15056
diff
changeset
|
237 |
JCE_OUTPUTDIR=$(BUILD_OUTPUT)/jce-release |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
238 |
|
13697 | 239 |
LANGTOOLS_DIST=$(LANGTOOLS_OUTPUTDIR)/dist |
240 |
CORBA_DIST=$(CORBA_OUTPUTDIR)/dist |
|
241 |
JAXP_DIST=$(JAXP_OUTPUTDIR)/dist |
|
242 |
JAXWS_DIST=$(JAXWS_OUTPUTDIR)/dist |
|
14378
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
14112
diff
changeset
|
243 |
HOTSPOT_DIST=@HOTSPOT_DIST@ |
15903 | 244 |
NASHORN_DIST=$(NASHORN_OUTPUTDIR)/dist |
14378
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
14112
diff
changeset
|
245 |
|
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
14112
diff
changeset
|
246 |
BUILD_HOTSPOT=@BUILD_HOTSPOT@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
247 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
248 |
# The boot jdk to use |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
249 |
BOOT_JDK:=@BOOT_JDK@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
250 |
BOOT_JDK_JVMARGS:=@BOOT_JDK_JVMARGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
251 |
BOOT_RTJAR:=@BOOT_RTJAR@ |
13697 | 252 |
BOOT_TOOLSJAR=$(BOOT_JDK)/lib/tools.jar |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
253 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
254 |
# When compiling Java source to be run by the boot jdk |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
255 |
# use these extra flags, eg -source 6 -target 6 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
256 |
BOOT_JDK_SOURCETARGET:=@BOOT_JDK_SOURCETARGET@ |
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 |
# Information about the build system |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
259 |
NUM_CORES:=@NUM_CORES@ |
13697 | 260 |
# Enable sjavac support = use a javac server, |
261 |
# multi core javac compilation and dependency tracking. |
|
262 |
ENABLE_SJAVAC:=@ENABLE_SJAVAC@ |
|
263 |
# Store sjavac server synchronization files here, and |
|
264 |
# the sjavac server log files. |
|
265 |
SJAVAC_SERVER_DIR:=@SJAVAC_SERVER_DIR@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
266 |
|
15790 | 267 |
# Number of parallel jobs to use for compilation |
268 |
JOBS?=@JOBS@ |
|
269 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
270 |
# The OpenJDK makefiles should be changed to using the standard |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
271 |
# configure output ..._CFLAGS and ..._LIBS. In the meantime we |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
272 |
# extract the information here. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
273 |
FREETYPE2_LIB_PATH:=@FREETYPE2_LIB_PATH@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
274 |
FREETYPE2_LIBS:=@FREETYPE2_LIBS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
275 |
FREETYPE2_CFLAGS:=@FREETYPE2_CFLAGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
276 |
USING_SYSTEM_FT_LIB=@USING_SYSTEM_FT_LIB@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
277 |
CUPS_CFLAGS:=@CUPS_CFLAGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
278 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
279 |
PACKAGE_PATH=@PACKAGE_PATH@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
280 |
|
12801 | 281 |
# Source file for cacerts |
282 |
CACERTS_FILE=@CACERTS_FILE@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
283 |
|
14112
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
284 |
# Enable unlimited crypto policy |
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
285 |
UNLIMITED_CRYPTO=@UNLIMITED_CRYPTO@ |
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
286 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
287 |
# Necessary additional compiler flags to compile X11 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
288 |
X_CFLAGS:=@X_CFLAGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
289 |
X_LIBS:=@X_LIBS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
290 |
OPENWIN_HOME:=@OPENWIN_HOME@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
291 |
|
15842
a33cf9e2d7d8
8008073: build-infra: Need --with-dxsdk option? And awt/sound -I option additions?
erikj
parents:
15790
diff
changeset
|
292 |
# DirectX SDK |
a33cf9e2d7d8
8008073: build-infra: Need --with-dxsdk option? And awt/sound -I option additions?
erikj
parents:
15790
diff
changeset
|
293 |
DXSDK_LIB_PATH=@DXSDK_LIB_PATH@ |
a33cf9e2d7d8
8008073: build-infra: Need --with-dxsdk option? And awt/sound -I option additions?
erikj
parents:
15790
diff
changeset
|
294 |
DXSDK_INCLUDE_PATH=@DXSDK_INCLUDE_PATH@ |
a33cf9e2d7d8
8008073: build-infra: Need --with-dxsdk option? And awt/sound -I option additions?
erikj
parents:
15790
diff
changeset
|
295 |
|
15581
1dd771c6a1ee
8005879: Add -DMAC_OS_X_VERSION_MAX_ALLOWED=1070 to builds on Mac
erikj
parents:
15393
diff
changeset
|
296 |
# The lowest required version of macosx to enforce compatiblity for |
15786 | 297 |
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
|
298 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
299 |
# There are two types: CC or CL |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
300 |
# CC is gcc and others behaving reasonably similar. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
301 |
# CL is cl.exe only. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
302 |
COMPILER_TYPE:=@COMPILER_TYPE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
303 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
304 |
CC_OUT_OPTION:=@CC_OUT_OPTION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
305 |
EXE_OUT_OPTION:=@EXE_OUT_OPTION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
306 |
LD_OUT_OPTION:=@LD_OUT_OPTION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
307 |
AR_OUT_OPTION:=@AR_OUT_OPTION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
308 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
309 |
# Flags used for overriding the default opt setting for a C/C++ source file. |
12801 | 310 |
C_O_FLAG_HIGHEST:=@C_O_FLAG_HIGHEST@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
311 |
C_O_FLAG_HI:=@C_O_FLAG_HI@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
312 |
C_O_FLAG_NORM:=@C_O_FLAG_NORM@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
313 |
C_O_FLAG_NONE:=@C_O_FLAG_NONE@ |
12801 | 314 |
CXX_O_FLAG_HIGHEST:=@CXX_O_FLAG_HIGHEST@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
315 |
CXX_O_FLAG_HI:=@CXX_O_FLAG_HI@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
316 |
CXX_O_FLAG_NORM:=@CXX_O_FLAG_NORM@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
317 |
CXX_O_FLAG_NONE:=@CXX_O_FLAG_NONE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
318 |
|
12801 | 319 |
C_FLAG_DEPS:=@C_FLAG_DEPS@ |
320 |
CXX_FLAG_DEPS:=@CXX_FLAG_DEPS@ |
|
321 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
322 |
# Tools that potentially need to be cross compilation aware. |
14111 | 323 |
CC:=@FIXPATH@ @CCACHE@ @CC@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
324 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
325 |
# CFLAGS used to compile the jdk native libraries (C-code) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
326 |
CFLAGS_JDKLIB:=@CFLAGS_JDKLIB@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
327 |
CXXFLAGS_JDKLIB:=@CXXFLAGS_JDKLIB@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
328 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
329 |
# CFLAGS used to compile the jdk native launchers (C-code) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
330 |
CFLAGS_JDKEXE:=@CFLAGS_JDKEXE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
331 |
CXXFLAGS_JDKEXE:=@CXXFLAGS_JDKEXE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
332 |
|
14111 | 333 |
CXX:=@FIXPATH@ @CCACHE@ @CXX@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
334 |
#CXXFLAGS:=@CXXFLAGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
335 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
336 |
OBJC:=@CCACHE@ @OBJC@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
337 |
#OBJCFLAGS:=@OBJCFLAGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
338 |
|
14111 | 339 |
CPP:=@FIXPATH@ @CPP@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
340 |
#CPPFLAGS:=@CPPFLAGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
341 |
|
13697 | 342 |
# The linker can be gcc or ld on posix systems, or link.exe on windows systems. |
14111 | 343 |
LD:=@FIXPATH@ @LD@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
344 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
345 |
# LDFLAGS used to link the jdk native libraries (C-code) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
346 |
LDFLAGS_JDKLIB:=@LDFLAGS_JDKLIB@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
347 |
LDFLAGS_JDKLIB_SUFFIX:=@LDFLAGS_JDKLIB_SUFFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
348 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
349 |
# On some platforms the linker cannot be used to create executables, thus |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
350 |
# the need for a separate LDEXE command. |
14111 | 351 |
LDEXE:=@FIXPATH@ @LDEXE@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
352 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
353 |
# LDFLAGS used to link the jdk native launchers (C-code) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
354 |
LDFLAGS_JDKEXE:=@LDFLAGS_JDKEXE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
355 |
LDFLAGS_JDKEXE_SUFFIX:=@LDFLAGS_JDKEXE_SUFFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
356 |
|
13697 | 357 |
# LDFLAGS specific to C++ linking. |
358 |
LDFLAGS_CXX_JDK:=@LDFLAGS_CXX_JDK@ |
|
359 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
360 |
# Sometimes a different linker is needed for c++ libs |
14111 | 361 |
LDCXX:=@FIXPATH@ @LDCXX@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
362 |
# The flags for linking libstdc++ linker. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
363 |
LIBCXX:=@LIBCXX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
364 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
365 |
# Sometimes a different linker is needed for c++ executables |
14111 | 366 |
LDEXECXX:=@FIXPATH@ @LDEXECXX@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
367 |
|
13697 | 368 |
# BUILD_CC/BUILD_LD is a compiler/linker that generates code that is runnable on the |
369 |
# build platform. |
|
14111 | 370 |
BUILD_CC:=@FIXPATH@ @BUILD_CC@ |
371 |
BUILD_LD:=@FIXPATH@ @BUILD_LD@ |
|
13132 | 372 |
|
14111 | 373 |
AS:=@FIXPATH@ @AS@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
374 |
|
13697 | 375 |
# AR is used to create a static library (is ar in posix, lib.exe in windows) |
14111 | 376 |
AR:=@FIXPATH@ @AR@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
377 |
ARFLAGS:=@ARFLAGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
378 |
|
13697 | 379 |
NM:=@NM@ |
16582
61f0b8f48036
8006288: build-infra: Use solaris nm and not gnm on solaris
erikj
parents:
16581
diff
changeset
|
380 |
GNM:=@GNM@ |
13697 | 381 |
STRIP:=@STRIP@ |
382 |
MCS:=@MCS@ |
|
383 |
||
384 |
LIPO:=@LIPO@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
385 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
386 |
# Command to create a shared library |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
387 |
SHARED_LIBRARY_FLAGS:=@SHARED_LIBRARY_FLAGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
388 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
389 |
# Options to linker to specify a mapfile. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
390 |
# (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
|
391 |
SET_SHARED_LIBRARY_MAPFILE=@SET_SHARED_LIBRARY_MAPFILE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
392 |
|
12801 | 393 |
# Options for C/CXX compiler to be used if linking is performed |
394 |
# using reorder file |
|
395 |
C_FLAG_REORDER:=@C_FLAG_REORDER@ |
|
396 |
CXX_FLAG_REORDER:=@CXX_FLAG_REORDER@ |
|
397 |
||
13132 | 398 |
# |
399 |
# Options for generating debug symbols |
|
400 |
ENABLE_DEBUG_SYMBOLS:=@ENABLE_DEBUG_SYMBOLS@ |
|
401 |
CFLAGS_DEBUG_SYMBOLS:=@CFLAGS_DEBUG_SYMBOLS@ |
|
402 |
CXXFLAGS_DEBUG_SYMBOLS:=@CXXFLAGS_DEBUG_SYMBOLS@ |
|
403 |
ZIP_DEBUGINFO_FILES:=@ZIP_DEBUGINFO_FILES@ |
|
404 |
||
405 |
# |
|
406 |
# Compress (or not) jars |
|
407 |
COMPRESS_JARS=@COMPRESS_JARS@ |
|
408 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
409 |
# Options to linker to specify the library name. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
410 |
# (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
|
411 |
SET_SHARED_LIBRARY_NAME=@SET_SHARED_LIBRARY_NAME@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
412 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
413 |
# 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
|
414 |
# (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
|
415 |
SET_SHARED_LIBRARY_ORIGIN=@SET_SHARED_LIBRARY_ORIGIN@ |
13697 | 416 |
SET_EXECUTABLE_ORIGIN=@SET_EXECUTABLE_ORIGIN@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
417 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
418 |
# Different OS:es have different ways of naming shared libraries. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
419 |
# The SHARED_LIBRARY macro takes "verify" as and argument and returns: |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
420 |
# "libverify.so" or "libverify.dylib" or "verify.dll" depending on platform. |
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 |
SHARED_LIBRARY=@SHARED_LIBRARY@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
423 |
STATIC_LIBRARY=@STATIC_LIBRARY@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
424 |
LIBRARY_PREFIX:=@LIBRARY_PREFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
425 |
SHARED_LIBRARY_SUFFIX:=@SHARED_LIBRARY_SUFFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
426 |
STATIC_LIBRARY_SUFFIX:=@STATIC_LIBRARY_SUFFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
427 |
EXE_SUFFIX:=@EXE_SUFFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
428 |
OBJ_SUFFIX:=@OBJ_SUFFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
429 |
|
12801 | 430 |
POST_STRIP_CMD:=@POST_STRIP_CMD@ |
431 |
POST_MCS_CMD:=@POST_MCS_CMD@ |
|
432 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
433 |
JAVA_FLAGS:=@BOOT_JDK_JVMARGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
434 |
|
14111 | 435 |
JAVA=@FIXPATH@ $(BOOT_JDK)/bin/java $(JAVA_FLAGS) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
436 |
|
14111 | 437 |
JAVAC=@FIXPATH@ $(BOOT_JDK)/bin/javac |
13697 | 438 |
# Hotspot sets this variable before reading the SPEC when compiling sa-jdi.jar. Avoid |
439 |
# overriding that value by using ?=. |
|
440 |
JAVAC_FLAGS?=@JAVAC_FLAGS@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
441 |
|
14111 | 442 |
JAVAH=@FIXPATH@ $(BOOT_JDK)/bin/javah |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
443 |
|
14111 | 444 |
JAR=@FIXPATH@ $(BOOT_JDK)/bin/jar |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
445 |
|
14111 | 446 |
RMIC=@FIXPATH@ $(BOOT_JDK)/bin/rmic |
12801 | 447 |
|
14111 | 448 |
NATIVE2ASCII=@FIXPATH@ $(BOOT_JDK)/bin/native2ascii |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
449 |
|
15057
6cdc13b4157e
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15056
diff
changeset
|
450 |
JARSIGNER=@FIXPATH@ $(BOOT_JDK)/bin/jarsigner |
6cdc13b4157e
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15056
diff
changeset
|
451 |
|
15393
e3761cf4e010
8006872: Stop creating four jars with identical content in the new build system.
ohrstrom
parents:
15058
diff
changeset
|
452 |
# You run the new javac using the boot jdk with $(BOOT_JDK)/bin/java $(NEW_JAVAC) ... |
e3761cf4e010
8006872: Stop creating four jars with identical content in the new build system.
ohrstrom
parents:
15058
diff
changeset
|
453 |
BOOTSTRAP_JAVAC_JAR:=$(LANGTOOLS_OUTPUTDIR)/dist/bootstrap/lib/javac.jar |
e3761cf4e010
8006872: Stop creating four jars with identical content in the new build system.
ohrstrom
parents:
15058
diff
changeset
|
454 |
BOOTSTRAP_JAVAC_ARGS:="-Xbootclasspath/p:$(BOOTSTRAP_JAVAC_JAR)" -cp $(BOOTSTRAP_JAVAC_JAR) |
e3761cf4e010
8006872: Stop creating four jars with identical content in the new build system.
ohrstrom
parents:
15058
diff
changeset
|
455 |
NEW_JAVAC = $(BOOTSTRAP_JAVAC_ARGS) com.sun.tools.javac.Main |
e3761cf4e010
8006872: Stop creating four jars with identical content in the new build system.
ohrstrom
parents:
15058
diff
changeset
|
456 |
NEW_JAVADOC = $(BOOTSTRAP_JAVAC_ARGS) com.sun.tools.javadoc.Main |
e3761cf4e010
8006872: Stop creating four jars with identical content in the new build system.
ohrstrom
parents:
15058
diff
changeset
|
457 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
458 |
# Base flags for RC |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
459 |
# Guarding this against resetting value. Legacy make files include spec multiple |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
460 |
# times. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
461 |
ifndef RC_FLAGS |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
462 |
RC_FLAGS:=@RC_FLAGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
463 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
464 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
465 |
# A specific java binary with specific options can be used to run |
13697 | 466 |
# the long running background sjavac servers and other long running tasks. |
14111 | 467 |
SJAVAC_SERVER_JAVA:=@FIXPATH@ @SJAVAC_SERVER_JAVA@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
468 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
469 |
# Tools adhering to a minimal and common standard of posix compliance. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
470 |
AWK:=@AWK@ |
13697 | 471 |
BASENAME:=@BASENAME@ |
14111 | 472 |
BASH:=@BASH@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
473 |
CAT:=@CAT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
474 |
CCACHE:=@CCACHE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
475 |
# CD is going away, but remains to cater for legacy makefiles. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
476 |
CD:=cd |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
477 |
CHMOD:=@CHMOD@ |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
478 |
COMM:=@COMM@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
479 |
CP:=@CP@ |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
480 |
CPIO:=@CPIO@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
481 |
CUT:=@CUT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
482 |
DATE:=@DATE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
483 |
DIFF:=@DIFF@ |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
484 |
DIRNAME:=@DIRNAME@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
485 |
FIND:=@FIND@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
486 |
FIND_DELETE:=@FIND_DELETE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
487 |
ECHO:=@ECHO@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
488 |
EGREP:=@EGREP@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
489 |
FGREP:=@FGREP@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
490 |
GREP:=@GREP@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
491 |
HEAD:=@HEAD@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
492 |
LS:=@LS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
493 |
LN:=@LN@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
494 |
MKDIR:=@MKDIR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
495 |
MV:=@MV@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
496 |
NAWK:=@NAWK@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
497 |
PRINTF:=@PRINTF@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
498 |
PWD:=@THEPWDCMD@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
499 |
RM:=@RM@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
500 |
SED:=@SED@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
501 |
SH:=@SH@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
502 |
SORT:=@SORT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
503 |
TAR:=@TAR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
504 |
TAIL:=@TAIL@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
505 |
TEE:=@TEE@ |
14111 | 506 |
TIME:=@TIME@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
507 |
TR:=@TR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
508 |
TOUCH:=@TOUCH@ |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
509 |
UNIQ:=@UNIQ@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
510 |
WC:=@WC@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
511 |
XARGS:=@XARGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
512 |
ZIPEXE:=@ZIP@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
513 |
ZIP:=@ZIP@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
514 |
UNZIP:=@UNZIP@ |
14111 | 515 |
MT:=@FIXPATH@ @MT@ |
516 |
RC:=@FIXPATH@ @RC@ |
|
517 |
DUMPBIN:=@FIXPATH@ @DUMPBIN@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
518 |
CYGPATH:=@CYGPATH@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
519 |
LDD:=@LDD@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
520 |
OTOOL:=@OTOOL@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
521 |
READELF:=@READELF@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
522 |
EXPR:=@EXPR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
523 |
FILE:=@FILE@ |
12801 | 524 |
HG:=@HG@ |
13132 | 525 |
OBJCOPY:=@OBJCOPY@ |
14111 | 526 |
SETFILE:=@SETFILE@ |
16580
6acb502beafa
8008373: JFR JTReg tests fail with CompilationError on MacOSX; missing '._sunec.jar'
erikj
parents:
16578
diff
changeset
|
527 |
XATTR:=@XATTR@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
528 |
|
14111 | 529 |
FIXPATH:=@FIXPATH@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
530 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
531 |
# Where the build output is stored for your convenience. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
532 |
BUILD_LOG:=@BUILD_LOG@ |
13132 | 533 |
BUILD_LOG_PREVIOUS:=@BUILD_LOG_PREVIOUS@ |
14379
b449aa34783e
8003274: build-infra: Makefile changes needed for sjavac
tbell
parents:
14378
diff
changeset
|
534 |
# Disable the build log wrapper on sjavac+winapi until |
b449aa34783e
8003274: build-infra: Makefile changes needed for sjavac
tbell
parents:
14378
diff
changeset
|
535 |
# 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
|
536 |
# for the background sjavac server process. |
b449aa34783e
8003274: build-infra: Makefile changes needed for sjavac
tbell
parents:
14378
diff
changeset
|
537 |
ifeq (@ENABLE_SJAVAC@X@OPENJDK_BUILD_OS_API@,yesXwinapi) |
b449aa34783e
8003274: build-infra: Makefile changes needed for sjavac
tbell
parents:
14378
diff
changeset
|
538 |
BUILD_LOG_WRAPPER:= |
b449aa34783e
8003274: build-infra: Makefile changes needed for sjavac
tbell
parents:
14378
diff
changeset
|
539 |
else |
b449aa34783e
8003274: build-infra: Makefile changes needed for sjavac
tbell
parents:
14378
diff
changeset
|
540 |
BUILD_LOG_WRAPPER:=@BUILD_LOG_WRAPPER@ |
b449aa34783e
8003274: build-infra: Makefile changes needed for sjavac
tbell
parents:
14378
diff
changeset
|
541 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
542 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
543 |
# Build setup |
13132 | 544 |
ENABLE_JFR=@ENABLE_JFR@ |
15914
1338d1e0e058
8010030: Allow configure to detect if EC implementation is present
omajid
parents:
15912
diff
changeset
|
545 |
ENABLE_INTREE_EC=@ENABLE_INTREE_EC@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
546 |
USE_EXTERNAL_LIBJPEG:=@USE_EXTERNAL_LIBJPEG@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
547 |
USE_EXTERNAL_LIBGIF:=@USE_EXTERNAL_LIBGIF@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
548 |
USE_EXTERNAL_LIBZ:=@USE_EXTERNAL_LIBZ@ |
13132 | 549 |
LIBZIP_CAN_USE_MMAP:=@LIBZIP_CAN_USE_MMAP@ |
14111 | 550 |
MSVCR_DLL:=@MSVCR_DLL@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
551 |
|
13132 | 552 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
553 |
# ADD_SRCS takes a single argument with source roots |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
554 |
# and appends any corresponding source roots found |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
555 |
# below --with-add-source-root and below |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
556 |
# --with-override-source-root. It is the responsibility |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
557 |
# of the next macro to get rid of superfluous files. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
558 |
ADD_SRCS=$1 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
559 |
ifneq (,$(ADD_SRC_ROOT)) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
560 |
# Append wildcard rule to pickup any matching source roots found below ADD_SRC_ROOT |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
561 |
ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(ADD_SRC_ROOT),$1)) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
562 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
563 |
ifneq (,$(OVERRIDE_SRC_ROOT)) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
564 |
# Append wildcard rule to pickup any matching source roots found below OVERRIDE_SRC_ROOT |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
565 |
ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(OVERRIDE_SRC_ROOT),$1)) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
566 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
567 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
568 |
# OVR_SRCS creates a filter expression to filter out sources in |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
569 |
# the original source directory that lie inside directories below |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
570 |
# --with-override-source-root. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
571 |
# 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
|
572 |
# 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
|
573 |
# we add overridden sources. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
574 |
ifneq (,$(OVERRIDE_SRC_ROOT)) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
575 |
OVR_SRCS:=$(addsuffix %,$(subst $(OVERRIDE_SRC_ROOT),$(SRC_ROOT),$(sort $(dir $(shell $(FIND) $(OVERRIDE_SRC_ROOT) -type f))))) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
576 |
else |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
577 |
OVR_SRCS:= |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
578 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
579 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
580 |
#################################################### |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
581 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
582 |
# INSTALLATION |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
583 |
# |
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 |
# Common prefix for all installed files. Defaults to /usr/local, |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
586 |
# but /opt/myjdk is another common version. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
587 |
INSTALL_PREFIX=@prefix@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
588 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
589 |
# Directories containing architecture-dependent files should be relative to exec_prefix |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
590 |
INSTALL_EXECPREFIX=@exec_prefix@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
591 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
592 |
# java,javac,javah,javap etc are installed here. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
593 |
INSTALL_BINDIR=@bindir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
594 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
595 |
# Read only architecture-independent data |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
596 |
INSTALL_DATADIR=@datadir@ |
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 |
# Root of above. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
599 |
INSTALL_DATAROOTDIR=@datarootdir@ |
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 |
# Doc files, other than info and man. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
602 |
INSTALL_DOCDIR=@docdir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
603 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
604 |
# Html documentation |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
605 |
INSTALL_HTMLDIR=@htmldir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
606 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
607 |
# Installing C header files, JNI headers for example. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
608 |
INSTALL_INCLUDEDIR=@includedir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
609 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
610 |
# Installing library files.... |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
611 |
INSTALL_INCLUDEDIR=@libdir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
612 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
613 |
# Executables that other programs run. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
614 |
INSTALL_LIBEXECDIR=@libexecdir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
615 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
616 |
# Locale-dependent but architecture-independent data, such as message catalogs. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
617 |
INSTALL_LOCALEDIR=@localedir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
618 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
619 |
# Modifiable single-machine data |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
620 |
INSTALL_LOCALSTATEDIR=@localstatedir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
621 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
622 |
# Man pages |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
623 |
INSTALL_MANDIR=@mandir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
624 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
625 |
# Modifiable architecture-independent data. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
626 |
INSTALL_SHAREDSTATEDIR=@sharedstatedir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
627 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
628 |
# Read-only single-machine data |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
629 |
INSTALL_SYSCONFDIR=@sysconfdir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
630 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
631 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
632 |
#################################################### |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
633 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
634 |
# Misc |
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 |
|
12801 | 637 |
# Name of Service Agent library |
638 |
SALIB_NAME=@SALIB_NAME@ |
|
639 |
||
16581
b2cddec593f4
8011388: Support building zero and zeroshark with the new build
omajid
parents:
16580
diff
changeset
|
640 |
INCLUDE_SA=@INCLUDE_SA@ |
b2cddec593f4
8011388: Support building zero and zeroshark with the new build
omajid
parents:
16580
diff
changeset
|
641 |
|
12801 | 642 |
OS_VERSION_MAJOR:=@OS_VERSION_MAJOR@ |
643 |
OS_VERSION_MINOR:=@OS_VERSION_MINOR@ |
|
644 |
OS_VERSION_MICRO:=@OS_VERSION_MICRO@ |
|
645 |
||
15058
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
646 |
# Images directory definitions |
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
647 |
JDK_IMAGE_SUBDIR:=j2sdk-image |
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
648 |
JRE_IMAGE_SUBDIR:=j2re-image |
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
649 |
JDK_OVERLAY_IMAGE_SUBDIR:=j2sdk-overlay-image |
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
650 |
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
|
651 |
# 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
|
652 |
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
|
653 |
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
|
654 |
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
|
655 |
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
|
656 |
|
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
657 |
# Macosx bundles directory definitions |
16578
7a35b47cb9e5
8006828: "SKIP_BOOT_CYCLE=false" must work in new building infrastructure
erikj
parents:
15914
diff
changeset
|
658 |
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
|
659 |
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
|
660 |
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
|
661 |
JRE_BUNDLE_DIR=$(IMAGES_OUTPUTDIR)/$(JRE_BUNDLE_SUBDIR) |
15058
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
662 |
|
13697 | 663 |
# Include the custom-spec.gmk file if it exists |
664 |
-include $(dir @SPEC@)/custom-spec.gmk |