author | dpochepk |
Tue, 23 Aug 2016 18:57:21 +0200 | |
changeset 40874 | 3a401d85ca3d |
parent 40241 | 59abac94e4f2 |
child 40612 | cec3daf6324a |
permissions | -rw-r--r-- |
27560 | 1 |
# |
39954 | 2 |
# Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved. |
27560 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
7 |
# published by the Free Software Foundation. Oracle designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
|
10 |
# |
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
24 |
# |
|
25 |
||
26 |
default: all |
|
27 |
||
28 |
include $(SPEC) |
|
29 |
include MakeBase.gmk |
|
34116
b746e382da18
8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents:
33437
diff
changeset
|
30 |
include Modules.gmk |
27560 | 31 |
|
32 |
TOOL_TARGETS := |
|
28356 | 33 |
JDK_TARGETS := |
27560 | 34 |
JRE_TARGETS := |
35 |
||
36 |
# Hook to include the corresponding custom file, if present. |
|
37 |
$(eval $(call IncludeCustomExtension, , Images-pre.gmk)) |
|
38 |
||
39 |
############################################################################ |
|
40 |
||
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
41 |
# All modules for the current target platform. |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
42 |
ALL_MODULES := $(call FindAllModules) |
27560 | 43 |
|
36725 | 44 |
$(eval $(call ReadImportMetaData)) |
27560 | 45 |
|
37978
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37865
diff
changeset
|
46 |
JRE_MODULES += $(filter $(ALL_MODULES), $(BOOT_MODULES) \ |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37865
diff
changeset
|
47 |
$(PLATFORM_MODULES) $(JRE_TOOL_MODULES)) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37865
diff
changeset
|
48 |
JDK_MODULES += $(ALL_MODULES) |
36506 | 49 |
|
50 |
# Compact builds have additional modules |
|
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
51 |
COMPACT1_EXTRA_MODULES := jdk.localedata jdk.crypto.pkcs11 jdk.crypto.ec |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
52 |
COMPACT2_EXTRA_MODULES := jdk.xml.dom jdk.httpserver |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
53 |
COMPACT3_EXTRA_MODULES := java.smartcardio jdk.management \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
54 |
jdk.naming.dns jdk.naming.rmi jdk.sctp jdk.security.auth |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
55 |
|
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
56 |
JRE_COMPACT1_MODULES := java.compact1 $(COMPACT1_EXTRA_MODULES) |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
57 |
JRE_COMPACT2_MODULES := $(JRE_COMPACT1_MODULES) java.compact2 $(COMPACT2_EXTRA_MODULES) |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
58 |
JRE_COMPACT3_MODULES := $(JRE_COMPACT2_MODULES) java.compact3 $(COMPACT3_EXTRA_MODULES) |
27560 | 59 |
|
37770 | 60 |
JRE_MODULES_LIST := $(call CommaList, $(JRE_MODULES)) |
61 |
JDK_MODULES_LIST := $(call CommaList, $(JDK_MODULES)) |
|
62 |
JRE_COMPACT1_MODULES_LIST := $(call CommaList, $(JRE_COMPACT1_MODULES)) |
|
63 |
JRE_COMPACT2_MODULES_LIST := $(call CommaList, $(JRE_COMPACT2_MODULES)) |
|
64 |
JRE_COMPACT3_MODULES_LIST := $(call CommaList, $(JRE_COMPACT3_MODULES)) |
|
36506 | 65 |
|
66 |
################################################################################ |
|
67 |
# Release file |
|
68 |
||
69 |
BASE_RELEASE_FILE := $(JDK_OUTPUTDIR)/release |
|
70 |
||
71 |
# Common way to emit a line into the release or info file |
|
72 |
define info-file-item # name value |
|
73 |
$(PRINTF) '%s="%s"\n' $1 $2 >> $@ |
|
74 |
endef |
|
75 |
||
76 |
# Param 1 - The file containing the MODULES list |
|
77 |
define create-info-file |
|
78 |
$(call info-file-item, "JAVA_VERSION", "$(VERSION_NUMBER)") |
|
79 |
$(call info-file-item, "JAVA_FULL_VERSION", "$(VERSION_STRING)") |
|
80 |
$(call info-file-item, "OS_NAME", "$(REQUIRED_OS_NAME)") |
|
81 |
$(call info-file-item, "OS_VERSION", "$(REQUIRED_OS_VERSION)") |
|
82 |
$(call info-file-item, "OS_ARCH", "$(OPENJDK_TARGET_CPU_LEGACY)") |
|
83 |
$(if $(JDK_ARCH_ABI_PROP_NAME), \ |
|
84 |
$(call info-file-item, "SUN_ARCH_ABI", "$(JDK_ARCH_ABI_PROP_NAME)")) |
|
85 |
$(call info-file-item, "SOURCE", "$(strip $(ALL_SOURCE_TIPS))") |
|
86 |
endef |
|
87 |
||
88 |
# Param 1 - The file containing the MODULES list |
|
89 |
define prepare-info-file |
|
90 |
$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
|
91 |
$(MKDIR) -p $(@D) |
|
92 |
$(RM) $@ |
|
93 |
endef |
|
94 |
||
95 |
define info-file |
|
96 |
$(call prepare-info-file) |
|
97 |
$(call create-info-file) |
|
98 |
endef |
|
99 |
||
100 |
# Create a variable dependency file common for all release info files. |
|
101 |
INFO_FILE_VARDEPS := $(call DependOnVariable, create-info-file) |
|
102 |
||
103 |
ALL_SOURCE_TIPS = $(shell \ |
|
104 |
if [ -f $(SUPPORT_OUTPUTDIR)/source_tips ] ; then \ |
|
105 |
$(CAT) $(SUPPORT_OUTPUTDIR)/source_tips ; \ |
|
106 |
fi) |
|
107 |
||
108 |
$(BASE_RELEASE_FILE): $(INFO_FILE_VARDEPS) $(SUPPORT_OUTPUTDIR)/source_tips |
|
109 |
$(info-file) |
|
27560 | 110 |
|
111 |
################################################################################ |
|
112 |
||
36506 | 113 |
JMODS := $(wildcard $(IMAGES_OUTPUTDIR)/jmods/*.jmod) |
27560 | 114 |
|
115 |
# Use this file inside the image as target for make rule |
|
116 |
JIMAGE_TARGET_FILE := bin/java$(EXE_SUFFIX) |
|
117 |
||
38845
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
118 |
JLINK_ORDER_RESOURCES := **module-info.class |
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
119 |
ifeq ($(ENABLE_GENERATE_CLASSLIST), true) |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
120 |
JLINK_ORDER_RESOURCES += @$(SUPPORT_OUTPUTDIR)/classlist/classlist |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
121 |
endif |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
122 |
JLINK_ORDER_RESOURCES += \ |
38845
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
123 |
/java.base/java/** \ |
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
124 |
/java.base/jdk/** \ |
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
125 |
/java.base/sun/** \ |
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
126 |
/java.base/com/** \ |
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
127 |
/jdk.localedata/** \ |
37865
94ea10488f02
8156756: Enable build-time use of resource ordering plugin
redestad
parents:
37770
diff
changeset
|
128 |
# |
94ea10488f02
8156756: Enable build-time use of resource ordering plugin
redestad
parents:
37770
diff
changeset
|
129 |
|
40241
59abac94e4f2
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39954
diff
changeset
|
130 |
JLINK_TOOL := $(JLINK) --module-path $(IMAGES_OUTPUTDIR)/jmods \ |
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
131 |
--endian $(OPENJDK_BUILD_CPU_ENDIAN) \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
132 |
--release-info $(BASE_RELEASE_FILE) \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
133 |
--order-resources=$(call CommaList, $(JLINK_ORDER_RESOURCES)) \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
134 |
# |
36506 | 135 |
|
136 |
ifeq ($(JLINK_KEEP_PACKAGED_MODULES), true) |
|
137 |
JLINK_EXTRA_OPTS := --keep-packaged-modules $(JDK_IMAGE_DIR)/jmods |
|
138 |
endif |
|
139 |
||
140 |
$(JDK_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \ |
|
141 |
$(call DependOnVariable, JDK_MODULES_LIST) $(BASE_RELEASE_FILE) |
|
27560 | 142 |
$(ECHO) Creating jdk jimage |
36506 | 143 |
$(RM) -r $(JDK_IMAGE_DIR) |
144 |
$(JLINK_TOOL) --output $(JDK_IMAGE_DIR) \ |
|
40241
59abac94e4f2
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39954
diff
changeset
|
145 |
--add-modules $(JDK_MODULES_LIST) $(JLINK_EXTRA_OPTS) |
27560 | 146 |
$(TOUCH) $@ |
147 |
||
36506 | 148 |
$(JRE_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \ |
149 |
$(call DependOnVariable, JRE_MODULES_LIST) $(BASE_RELEASE_FILE) |
|
27560 | 150 |
$(ECHO) Creating jre jimage |
36506 | 151 |
$(RM) -r $(JRE_IMAGE_DIR) |
152 |
$(JLINK_TOOL) --output $(JRE_IMAGE_DIR) \ |
|
40241
59abac94e4f2
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39954
diff
changeset
|
153 |
--add-modules $(JRE_MODULES_LIST) |
27560 | 154 |
$(TOUCH) $@ |
155 |
||
156 |
JRE_COMPACT1_IMAGE_DIR := $(JRE_IMAGE_DIR)-compact1 |
|
157 |
JRE_COMPACT2_IMAGE_DIR := $(JRE_IMAGE_DIR)-compact2 |
|
158 |
JRE_COMPACT3_IMAGE_DIR := $(JRE_IMAGE_DIR)-compact3 |
|
159 |
||
36506 | 160 |
$(JRE_COMPACT1_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \ |
161 |
$(call DependOnVariable, JRE_COMPACT1_MODULES_LIST) $(BASE_RELEASE_FILE) |
|
27560 | 162 |
$(ECHO) Creating jre compact1 jimage |
36506 | 163 |
$(RM) -r $(JRE_COMPACT1_IMAGE_DIR) |
40241
59abac94e4f2
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39954
diff
changeset
|
164 |
$(JLINK_TOOL) --add-modules $(JRE_COMPACT1_MODULES_LIST) \ |
36506 | 165 |
--output $(JRE_COMPACT1_IMAGE_DIR) |
27560 | 166 |
$(TOUCH) $@ |
167 |
||
36506 | 168 |
$(JRE_COMPACT2_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \ |
169 |
$(call DependOnVariable, JRE_COMPACT2_MODULES_LIST) $(BASE_RELEASE_FILE) |
|
27560 | 170 |
$(ECHO) Creating jre compact2 jimage |
36506 | 171 |
$(RM) -r $(JRE_COMPACT2_IMAGE_DIR) |
40241
59abac94e4f2
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39954
diff
changeset
|
172 |
$(JLINK_TOOL) --add-modules $(JRE_COMPACT2_MODULES_LIST) \ |
36506 | 173 |
--output $(JRE_COMPACT2_IMAGE_DIR) |
27560 | 174 |
$(TOUCH) $@ |
175 |
||
36506 | 176 |
$(JRE_COMPACT3_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \ |
177 |
$(call DependOnVariable, JRE_COMPACT3_MODULES_LIST) $(BASE_RELEASE_FILE) |
|
27560 | 178 |
$(ECHO) Creating jre compact3 jimage |
36506 | 179 |
$(RM) -r $(JRE_COMPACT3_IMAGE_DIR) |
40241
59abac94e4f2
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39954
diff
changeset
|
180 |
$(JLINK_TOOL) --add-modules $(JRE_COMPACT3_MODULES_LIST) \ |
36506 | 181 |
--output $(JRE_COMPACT3_IMAGE_DIR) |
27560 | 182 |
$(TOUCH) $@ |
183 |
||
184 |
TOOL_JRE_TARGETS := $(JRE_IMAGE_DIR)/$(JIMAGE_TARGET_FILE) |
|
185 |
TOOL_JDK_TARGETS := $(JDK_IMAGE_DIR)/$(JIMAGE_TARGET_FILE) |
|
186 |
TOOL_JRE_COMPACT1_TARGETS := $(JRE_COMPACT1_IMAGE_DIR)/$(JIMAGE_TARGET_FILE) |
|
187 |
TOOL_JRE_COMPACT2_TARGETS := $(JRE_COMPACT2_IMAGE_DIR)/$(JIMAGE_TARGET_FILE) |
|
188 |
TOOL_JRE_COMPACT3_TARGETS := $(JRE_COMPACT3_IMAGE_DIR)/$(JIMAGE_TARGET_FILE) |
|
189 |
||
190 |
################################################################################ |
|
191 |
# /man dir |
|
192 |
# |
|
193 |
# All variables in this section are assigned with simple =, without :, to enable |
|
194 |
# more selective overriding from the custom version of this file. |
|
195 |
# |
|
196 |
# Avoid evaluating this whole section on windows for speed and stability |
|
197 |
ifneq ($(OPENJDK_TARGET_OS), windows) |
|
198 |
JRE_MAN_PAGES += \ |
|
199 |
java.1 \ |
|
200 |
jjs.1 \ |
|
201 |
keytool.1 \ |
|
202 |
orbd.1 \ |
|
203 |
pack200.1 \ |
|
204 |
rmid.1 \ |
|
205 |
rmiregistry.1 \ |
|
206 |
servertool.1 \ |
|
207 |
tnameserv.1 \ |
|
208 |
unpack200.1 |
|
209 |
||
210 |
JDK_MAN_PAGES += \ |
|
211 |
$(JRE_MAN_PAGES) \ |
|
212 |
appletviewer.1 \ |
|
213 |
idlj.1 \ |
|
214 |
jar.1 \ |
|
215 |
jarsigner.1 \ |
|
216 |
javac.1 \ |
|
217 |
javadoc.1 \ |
|
218 |
javah.1 \ |
|
219 |
javap.1 \ |
|
220 |
jconsole.1 \ |
|
221 |
jcmd.1 \ |
|
222 |
jdb.1 \ |
|
223 |
jdeps.1 \ |
|
224 |
jinfo.1 \ |
|
225 |
jmap.1 \ |
|
226 |
jps.1 \ |
|
227 |
jrunscript.1 \ |
|
228 |
jstack.1 \ |
|
229 |
jstat.1 \ |
|
230 |
jstatd.1 \ |
|
28898 | 231 |
policytool.1 \ |
27560 | 232 |
rmic.1 \ |
233 |
schemagen.1 \ |
|
234 |
serialver.1 \ |
|
235 |
wsgen.1 \ |
|
236 |
wsimport.1 \ |
|
237 |
xjc.1 |
|
238 |
||
239 |
# This variable is potentially overridden in the closed makefile. |
|
240 |
MAN_SRC_BASEDIR ?= $(JDK_TOPDIR)/src |
|
241 |
||
242 |
ifeq ($(OPENJDK_TARGET_OS), linux) |
|
243 |
MAN_SRC_DIR = $(MAN_SRC_BASEDIR)/linux/doc |
|
244 |
MAN1_SUBDIR = man |
|
245 |
endif |
|
246 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
|
247 |
MAN_SRC_DIR = $(MAN_SRC_BASEDIR)/solaris/doc |
|
248 |
MAN1_SUBDIR = sun/man/man1 |
|
249 |
endif |
|
250 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
251 |
MAN_SRC_DIR = $(MAN_SRC_BASEDIR)/bsd/doc |
|
252 |
MAN1_SUBDIR = man |
|
253 |
endif |
|
254 |
||
255 |
$(JRE_IMAGE_DIR)/man/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/% |
|
35008 | 256 |
$(call LogInfo, Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 257 |
$(install-file) |
258 |
||
259 |
$(JDK_IMAGE_DIR)/man/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/% |
|
35008 | 260 |
$(call LogInfo, Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 261 |
$(install-file) |
262 |
||
263 |
$(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
|
35008 | 264 |
$(call LogInfo, Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
30093
c8c926543552
8077992: Eliminate JDK build dependency of native2ascii and update Japanese nroff man pages to UTF-8 encoding
ihse
parents:
30091
diff
changeset
|
265 |
$(install-file) |
27560 | 266 |
|
267 |
$(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
|
35008 | 268 |
$(call LogInfo, Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
30093
c8c926543552
8077992: Eliminate JDK build dependency of native2ascii and update Japanese nroff man pages to UTF-8 encoding
ihse
parents:
30091
diff
changeset
|
269 |
$(install-file) |
27560 | 270 |
|
271 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
|
272 |
$(JRE_IMAGE_DIR)/man/ja/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
|
35008 | 273 |
$(call LogInfo, Converting $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 274 |
$(install-file) |
275 |
||
276 |
$(JDK_IMAGE_DIR)/man/ja/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
|
35008 | 277 |
$(call LogInfo, Converting $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 278 |
$(install-file) |
279 |
endif |
|
280 |
||
281 |
ifneq ($(findstring $(OPENJDK_TARGET_OS), linux macosx), ) |
|
282 |
$(JRE_IMAGE_DIR)/man/ja: |
|
35008 | 283 |
$(call LogInfo, Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 284 |
$(CD) $(@D) && $(RM) ja && $(LN) -s ja_JP.UTF-8 ja |
285 |
||
286 |
$(JDK_IMAGE_DIR)/man/ja: |
|
35008 | 287 |
$(call LogInfo, Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 288 |
$(CD) $(@D) && $(RM) ja && $(LN) -s ja_JP.UTF-8 ja |
289 |
endif |
|
290 |
||
291 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
|
292 |
JRE_MAN_PAGE_LIST = $(addprefix $(JRE_IMAGE_DIR)/man/man1/, $(JRE_MAN_PAGES)) \ |
|
293 |
$(addprefix $(JRE_IMAGE_DIR)/man/ja/man1/, $(JRE_MAN_PAGES)) \ |
|
294 |
$(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JRE_MAN_PAGES)) \ |
|
295 |
$(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.PCK/man1/, $(JRE_MAN_PAGES)) |
|
296 |
||
297 |
JDK_MAN_PAGE_LIST = $(addprefix $(JDK_IMAGE_DIR)/man/man1/, $(JDK_MAN_PAGES)) \ |
|
298 |
$(addprefix $(JDK_IMAGE_DIR)/man/ja/man1/, $(JDK_MAN_PAGES)) \ |
|
299 |
$(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JDK_MAN_PAGES)) \ |
|
300 |
$(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.PCK/man1/, $(JDK_MAN_PAGES)) |
|
301 |
endif |
|
302 |
||
303 |
ifneq ($(findstring $(OPENJDK_TARGET_OS), linux macosx), ) |
|
304 |
JRE_MAN_PAGE_LIST = $(addprefix $(JRE_IMAGE_DIR)/man/man1/, $(JRE_MAN_PAGES)) \ |
|
305 |
$(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JRE_MAN_PAGES)) \ |
|
306 |
$(JRE_IMAGE_DIR)/man/ja |
|
307 |
||
308 |
JDK_MAN_PAGE_LIST = $(addprefix $(JDK_IMAGE_DIR)/man/man1/, $(JDK_MAN_PAGES)) \ |
|
309 |
$(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JDK_MAN_PAGES)) \ |
|
310 |
$(JDK_IMAGE_DIR)/man/ja |
|
311 |
endif |
|
312 |
||
313 |
JRE_TARGETS += $(JRE_MAN_PAGE_LIST) |
|
314 |
JDK_TARGETS += $(JDK_MAN_PAGE_LIST) |
|
315 |
endif # Windows |
|
316 |
||
317 |
################################################################################ |
|
318 |
# /include dir |
|
319 |
||
320 |
$(eval $(call SetupCopyFiles,COPY_INCLUDES, \ |
|
321 |
SRC := $(JDK_OUTPUTDIR)/include, \ |
|
322 |
DEST := $(JDK_IMAGE_DIR)/include, \ |
|
323 |
FILES := $(call CacheFind,$(JDK_OUTPUTDIR)/include))) |
|
324 |
||
325 |
JDK_TARGETS += $(COPY_INCLUDES) |
|
326 |
||
327 |
################################################################################ |
|
328 |
# doc files |
|
329 |
||
330 |
JRE_DOC_FILES ?= LICENSE ASSEMBLY_EXCEPTION THIRD_PARTY_README |
|
331 |
JDK_DOC_FILES ?= LICENSE ASSEMBLY_EXCEPTION THIRD_PARTY_README |
|
332 |
JRE_DOC_LOCATION ?= $(JDK_TOPDIR) |
|
333 |
JDK_DOC_LOCATION ?= $(JDK_TOPDIR) |
|
334 |
||
335 |
JRE_DOC_TARGETS := $(addprefix $(JRE_IMAGE_DIR)/, $(JRE_DOC_FILES)) |
|
336 |
JDK_DOC_TARGETS := $(addprefix $(JDK_IMAGE_DIR)/, $(JDK_DOC_FILES)) |
|
337 |
||
338 |
# Processing license files from source area to image area |
|
339 |
# These are modified to have the platform specific EOL chars. |
|
340 |
define process-doc-file |
|
35008 | 341 |
$(call LogInfo, Processing $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 342 |
$(MKDIR) -p $(@D) |
343 |
$(RM) $@ |
|
344 |
LC_ALL=C $(SED) 's/$$//g' $< > $@ |
|
345 |
$(CHMOD) 444 $@ |
|
346 |
endef |
|
347 |
||
348 |
$(JRE_IMAGE_DIR)/%: $(JRE_DOC_LOCATION)/% |
|
349 |
$(process-doc-file) |
|
350 |
||
351 |
$(JDK_IMAGE_DIR)/%: $(JDK_DOC_LOCATION)/% |
|
352 |
$(process-doc-file) |
|
353 |
||
354 |
JRE_TARGETS += $(JRE_DOC_TARGETS) |
|
355 |
JDK_TARGETS += $(JDK_DOC_TARGETS) |
|
356 |
||
357 |
################################################################################ |
|
358 |
# src.zip |
|
359 |
||
360 |
$(JDK_IMAGE_DIR)/src.zip: $(SUPPORT_OUTPUTDIR)/src.zip |
|
35008 | 361 |
$(call LogInfo, Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 362 |
$(install-file) |
363 |
||
364 |
JDK_TARGETS += $(JDK_IMAGE_DIR)/src.zip |
|
365 |
||
366 |
################################################################################ |
|
37770 | 367 |
# classlist |
368 |
||
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
369 |
ifeq ($(ENABLE_GENERATE_CLASSLIST), true) |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
370 |
$(eval $(call SetupCopyFiles, JDK_COPY_CLASSLIST, \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
371 |
FILES := $(SUPPORT_OUTPUTDIR)/classlist/classlist, \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
372 |
DEST := $(JDK_IMAGE_DIR)/lib, \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
373 |
)) |
37770 | 374 |
|
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
375 |
JDK_TARGETS += $(JDK_COPY_CLASSLIST) |
37770 | 376 |
|
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
377 |
$(eval $(call SetupCopyFiles, JRE_COPY_CLASSLIST, \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
378 |
FILES := $(SUPPORT_OUTPUTDIR)/classlist/classlist, \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
379 |
DEST := $(JRE_IMAGE_DIR)/lib, \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
380 |
)) |
37770 | 381 |
|
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
382 |
JRE_TARGETS += $(JRE_COPY_CLASSLIST) |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
383 |
endif |
37770 | 384 |
|
385 |
################################################################################ |
|
27560 | 386 |
# /demo dir |
35008 | 387 |
ifneq ($(findstring images, $(MAKECMDGOALS)), ) |
388 |
$(eval $(call SetupCopyFiles, JDK_COPY_DEMOS, \ |
|
389 |
SRC := $(SUPPORT_OUTPUTDIR)/demos/image, \ |
|
390 |
DEST := $(JDK_IMAGE_DIR)/demo, \ |
|
391 |
FILES := $(if $(wildcard $(SUPPORT_OUTPUTDIR)/demos/image), \ |
|
392 |
$(call DoubleDollar, $(call DoubleDollar, \ |
|
36506 | 393 |
$(shell $(FIND) $(SUPPORT_OUTPUTDIR)/demos/image \ |
35008 | 394 |
-type f -a ! \( -name "_the*" -o -name "javac_state" \) )))), \ |
395 |
)) |
|
27560 | 396 |
|
35008 | 397 |
JDK_TARGETS += $(JDK_COPY_DEMOS) |
27560 | 398 |
endif |
399 |
||
400 |
################################################################################ |
|
401 |
# /sample dir |
|
402 |
||
36506 | 403 |
$(eval $(call SetupCopyFiles,COPY_SAMPLES, \ |
31310 | 404 |
SRC := $(SUPPORT_OUTPUTDIR)/sample/image, \ |
27560 | 405 |
DEST := $(JDK_IMAGE_DIR)/sample, \ |
31310 | 406 |
FILES := $(if $(wildcard $(SUPPORT_OUTPUTDIR)/sample/image), \ |
407 |
$(call CacheFind,$(SUPPORT_OUTPUTDIR)/sample/image)))) |
|
27560 | 408 |
|
409 |
JDK_TARGETS += $(COPY_SAMPLES) |
|
410 |
||
411 |
################################################################################ |
|
412 |
# jrt-fs.jar |
|
413 |
||
414 |
$(eval $(call SetupCopyFiles,COPY_JRTFS_JAR, \ |
|
415 |
SRC := $(SUPPORT_OUTPUTDIR), \ |
|
416 |
DEST := $(JDK_IMAGE_DIR), \ |
|
417 |
FILES := $(SUPPORT_OUTPUTDIR)/jrt-fs.jar)) |
|
418 |
||
419 |
JDK_TARGETS += $(COPY_JRTFS_JAR) |
|
420 |
||
421 |
################################################################################ |
|
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
422 |
# Code coverage data files |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
423 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
424 |
ifeq ($(GCOV_ENABLED), true) |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
425 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
426 |
GCOV_FIND_EXPR := -type f -name "*.gcno" |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
427 |
|
29444
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
428 |
$(eval $(call SetupCopyFiles,COPY_HOTSPOT_GCOV_GCNO, \ |
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
429 |
SRC := $(OUTPUT_ROOT), \ |
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
430 |
DEST := $(SYMBOLS_IMAGE_DIR)/gcov, \ |
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
431 |
FILES := $(shell $(FIND) $(HOTSPOT_OUTPUTDIR) $(GCOV_FIND_EXPR)))) |
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
432 |
|
29444
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
433 |
SYMBOLS_TARGETS += $(COPY_HOTSPOT_GCOV_GCNO) |
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
434 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
435 |
$(eval $(call SetupCopyFiles,COPY_JDK_GCOV_GCNO, \ |
29444
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
436 |
SRC := $(OUTPUT_ROOT), \ |
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
437 |
DEST := $(SYMBOLS_IMAGE_DIR)/gcov, \ |
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
438 |
FILES := $(shell $(FIND) $(SUPPORT_OUTPUTDIR)/native $(GCOV_FIND_EXPR)))) |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
439 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
440 |
SYMBOLS_TARGETS += $(COPY_JDK_GCOV_GCNO) |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
441 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
442 |
endif |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
443 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
444 |
################################################################################ |
37653 | 445 |
# Debug symbols |
446 |
# Since debug symbols are not included in the jmod files, they need to be copied |
|
447 |
# in manually after generating the images. |
|
448 |
||
449 |
ALL_JDK_MODULES := $(JDK_MODULES) |
|
450 |
ALL_JRE_MODULES := $(sort $(JRE_MODULES), $(foreach m, $(JRE_MODULES), \ |
|
451 |
$(call FindTransitiveDepsForModule, $m))) |
|
452 |
||
453 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
454 |
LIBS_TARGET_SUBDIR := bin |
|
455 |
else |
|
456 |
LIBS_TARGET_SUBDIR := lib |
|
457 |
endif |
|
458 |
||
459 |
DEBUGINFO_SUFFIXES := .diz .debuginfo .pdb .map |
|
460 |
||
461 |
# Param 1 - dir to find debuginfo files in |
|
462 |
FindDebuginfoFiles = \ |
|
463 |
$(wildcard $(addprefix $1/*, $(DEBUGINFO_SUFFIXES)) \ |
|
464 |
$(addprefix $1/*/*, $(DEBUGINFO_SUFFIXES)) \ |
|
465 |
$(addprefix $1/*/*/*, $(DEBUGINFO_SUFFIXES))) |
|
466 |
||
467 |
# On Macosx, if debug symbols have not been zipped, find all files inside *.dSYM |
|
468 |
# dirs. |
|
469 |
ifeq ($(OPENJDK_TARGET_OS)-$(ZIP_EXTERNAL_DEBUG_SYMBOLS), macosx-false) |
|
470 |
$(eval $(call FillCacheFind, \ |
|
471 |
$(SUPPORT_OUTPUTDIR)/modules_cmds $(SUPPORT_OUTPUTDIR)/modules_libs/)) |
|
472 |
FindDebuginfoFiles = \ |
|
473 |
$(if $(wildcard $1), $(call containing, .dSYM/, $(call CacheFind, $1))) |
|
474 |
endif |
|
475 |
||
476 |
# Param 1 - either JDK or JRE |
|
477 |
SetupCopyDebuginfo = \ |
|
478 |
$(foreach m, $(ALL_$1_MODULES), \ |
|
479 |
$(eval $(call SetupCopyFiles, COPY_$1_LIBS_DEBUGINFO_$m, \ |
|
480 |
SRC := $(SUPPORT_OUTPUTDIR)/modules_libs/$m, \ |
|
481 |
DEST := $($1_IMAGE_DIR)/$(LIBS_TARGET_SUBDIR), \ |
|
482 |
FILES := $(call FindDebuginfoFiles, \ |
|
483 |
$(SUPPORT_OUTPUTDIR)/modules_libs/$m), \ |
|
484 |
)) \ |
|
485 |
$(eval $1_TARGETS += $$(COPY_$1_LIBS_DEBUGINFO_$m)) \ |
|
486 |
) |
|
487 |
||
488 |
# No space before argument to avoid having to put $(strip ) everywhere in |
|
489 |
# implementation above. |
|
490 |
$(call SetupCopyDebuginfo,JDK) |
|
491 |
$(call SetupCopyDebuginfo,JRE) |
|
492 |
||
493 |
################################################################################ |
|
27560 | 494 |
|
495 |
# Include custom post hook here to make it possible to augment the target lists |
|
496 |
# before actual target prerequisites are declared. |
|
497 |
$(eval $(call IncludeCustomExtension, , Images-post.gmk)) |
|
498 |
||
499 |
################################################################################ |
|
500 |
||
501 |
$(JRE_TARGETS): $(TOOL_JRE_TARGETS) |
|
502 |
$(JDK_TARGETS): $(TOOL_JDK_TARGETS) |
|
503 |
||
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
504 |
jimages: $(TOOL_JRE_TARGETS) $(TOOL_JDK_TARGETS) $(JRE_TARGETS) $(JDK_TARGETS) \ |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
505 |
$(SYMBOLS_TARGETS) |
27560 | 506 |
|
507 |
$(JRE_COMPACT1_TARGETS): $(TOOL_JRE_COMPACT1_TARGETS) |
|
508 |
$(JRE_COMPACT2_TARGETS): $(TOOL_JRE_COMPACT2_TARGETS) |
|
509 |
$(JRE_COMPACT3_TARGETS): $(TOOL_JRE_COMPACT3_TARGETS) |
|
510 |
||
511 |
profiles: $(TOOL_JRE_COMPACT1_TARGETS) \ |
|
512 |
$(TOOL_JRE_COMPACT2_TARGETS) \ |
|
513 |
$(TOOL_JRE_COMPACT3_TARGETS) \ |
|
514 |
$(JRE_COMPACT1_TARGETS) \ |
|
515 |
$(JRE_COMPACT2_TARGETS) \ |
|
516 |
$(JRE_COMPACT3_TARGETS) |
|
517 |
||
518 |
.PHONY: default all jimages profiles |