author | duke |
Wed, 05 Jul 2017 22:19:49 +0200 | |
changeset 41456 | d9ffbd5b4c4e |
parent 41260 | 4f71f07b30d1 |
child 41458 | f285e333e8db |
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 |
$(if $(JDK_ARCH_ABI_PROP_NAME), \ |
|
79 |
$(call info-file-item, "SUN_ARCH_ABI", "$(JDK_ARCH_ABI_PROP_NAME)")) |
|
80 |
$(call info-file-item, "SOURCE", "$(strip $(ALL_SOURCE_TIPS))") |
|
81 |
endef |
|
82 |
||
83 |
# Param 1 - The file containing the MODULES list |
|
84 |
define prepare-info-file |
|
85 |
$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
|
86 |
$(MKDIR) -p $(@D) |
|
87 |
$(RM) $@ |
|
88 |
endef |
|
89 |
||
90 |
define info-file |
|
91 |
$(call prepare-info-file) |
|
92 |
$(call create-info-file) |
|
93 |
endef |
|
94 |
||
95 |
# Create a variable dependency file common for all release info files. |
|
96 |
INFO_FILE_VARDEPS := $(call DependOnVariable, create-info-file) |
|
97 |
||
98 |
ALL_SOURCE_TIPS = $(shell \ |
|
99 |
if [ -f $(SUPPORT_OUTPUTDIR)/source_tips ] ; then \ |
|
100 |
$(CAT) $(SUPPORT_OUTPUTDIR)/source_tips ; \ |
|
101 |
fi) |
|
102 |
||
103 |
$(BASE_RELEASE_FILE): $(INFO_FILE_VARDEPS) $(SUPPORT_OUTPUTDIR)/source_tips |
|
104 |
$(info-file) |
|
27560 | 105 |
|
106 |
################################################################################ |
|
107 |
||
36506 | 108 |
JMODS := $(wildcard $(IMAGES_OUTPUTDIR)/jmods/*.jmod) |
27560 | 109 |
|
110 |
# Use this file inside the image as target for make rule |
|
111 |
JIMAGE_TARGET_FILE := bin/java$(EXE_SUFFIX) |
|
112 |
||
38845
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
113 |
JLINK_ORDER_RESOURCES := **module-info.class |
40612
cec3daf6324a
8164858: Enable build-time use of java.lang.invoke resolve tracing
redestad
parents:
40241
diff
changeset
|
114 |
JLINK_JLI_CLASSES := |
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
115 |
ifeq ($(ENABLE_GENERATE_CLASSLIST), true) |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
116 |
JLINK_ORDER_RESOURCES += @$(SUPPORT_OUTPUTDIR)/classlist/classlist |
40612
cec3daf6324a
8164858: Enable build-time use of java.lang.invoke resolve tracing
redestad
parents:
40241
diff
changeset
|
117 |
JLINK_JLI_CLASSES := --generate-jli-classes=@$(SUPPORT_OUTPUTDIR)/classlist/jli_trace.out |
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
118 |
endif |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
119 |
JLINK_ORDER_RESOURCES += \ |
38845
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
120 |
/java.base/java/** \ |
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
121 |
/java.base/jdk/** \ |
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
122 |
/java.base/sun/** \ |
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
123 |
/java.base/com/** \ |
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
124 |
/jdk.localedata/** \ |
37865
94ea10488f02
8156756: Enable build-time use of resource ordering plugin
redestad
parents:
37770
diff
changeset
|
125 |
# |
94ea10488f02
8156756: Enable build-time use of resource ordering plugin
redestad
parents:
37770
diff
changeset
|
126 |
|
40241
59abac94e4f2
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39954
diff
changeset
|
127 |
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
|
128 |
--endian $(OPENJDK_BUILD_CPU_ENDIAN) \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
129 |
--release-info $(BASE_RELEASE_FILE) \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
130 |
--order-resources=$(call CommaList, $(JLINK_ORDER_RESOURCES)) \ |
40612
cec3daf6324a
8164858: Enable build-time use of java.lang.invoke resolve tracing
redestad
parents:
40241
diff
changeset
|
131 |
$(JLINK_JLI_CLASSES) \ |
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
132 |
# |
36506 | 133 |
|
134 |
ifeq ($(JLINK_KEEP_PACKAGED_MODULES), true) |
|
135 |
JLINK_EXTRA_OPTS := --keep-packaged-modules $(JDK_IMAGE_DIR)/jmods |
|
136 |
endif |
|
137 |
||
138 |
$(JDK_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \ |
|
139 |
$(call DependOnVariable, JDK_MODULES_LIST) $(BASE_RELEASE_FILE) |
|
27560 | 140 |
$(ECHO) Creating jdk jimage |
36506 | 141 |
$(RM) -r $(JDK_IMAGE_DIR) |
142 |
$(JLINK_TOOL) --output $(JDK_IMAGE_DIR) \ |
|
40241
59abac94e4f2
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39954
diff
changeset
|
143 |
--add-modules $(JDK_MODULES_LIST) $(JLINK_EXTRA_OPTS) |
27560 | 144 |
$(TOUCH) $@ |
145 |
||
36506 | 146 |
$(JRE_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \ |
147 |
$(call DependOnVariable, JRE_MODULES_LIST) $(BASE_RELEASE_FILE) |
|
27560 | 148 |
$(ECHO) Creating jre jimage |
36506 | 149 |
$(RM) -r $(JRE_IMAGE_DIR) |
150 |
$(JLINK_TOOL) --output $(JRE_IMAGE_DIR) \ |
|
40241
59abac94e4f2
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39954
diff
changeset
|
151 |
--add-modules $(JRE_MODULES_LIST) |
27560 | 152 |
$(TOUCH) $@ |
153 |
||
154 |
JRE_COMPACT1_IMAGE_DIR := $(JRE_IMAGE_DIR)-compact1 |
|
155 |
JRE_COMPACT2_IMAGE_DIR := $(JRE_IMAGE_DIR)-compact2 |
|
156 |
JRE_COMPACT3_IMAGE_DIR := $(JRE_IMAGE_DIR)-compact3 |
|
157 |
||
36506 | 158 |
$(JRE_COMPACT1_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \ |
159 |
$(call DependOnVariable, JRE_COMPACT1_MODULES_LIST) $(BASE_RELEASE_FILE) |
|
27560 | 160 |
$(ECHO) Creating jre compact1 jimage |
36506 | 161 |
$(RM) -r $(JRE_COMPACT1_IMAGE_DIR) |
40241
59abac94e4f2
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39954
diff
changeset
|
162 |
$(JLINK_TOOL) --add-modules $(JRE_COMPACT1_MODULES_LIST) \ |
36506 | 163 |
--output $(JRE_COMPACT1_IMAGE_DIR) |
27560 | 164 |
$(TOUCH) $@ |
165 |
||
36506 | 166 |
$(JRE_COMPACT2_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \ |
167 |
$(call DependOnVariable, JRE_COMPACT2_MODULES_LIST) $(BASE_RELEASE_FILE) |
|
27560 | 168 |
$(ECHO) Creating jre compact2 jimage |
36506 | 169 |
$(RM) -r $(JRE_COMPACT2_IMAGE_DIR) |
40241
59abac94e4f2
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39954
diff
changeset
|
170 |
$(JLINK_TOOL) --add-modules $(JRE_COMPACT2_MODULES_LIST) \ |
36506 | 171 |
--output $(JRE_COMPACT2_IMAGE_DIR) |
27560 | 172 |
$(TOUCH) $@ |
173 |
||
36506 | 174 |
$(JRE_COMPACT3_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \ |
175 |
$(call DependOnVariable, JRE_COMPACT3_MODULES_LIST) $(BASE_RELEASE_FILE) |
|
27560 | 176 |
$(ECHO) Creating jre compact3 jimage |
36506 | 177 |
$(RM) -r $(JRE_COMPACT3_IMAGE_DIR) |
40241
59abac94e4f2
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39954
diff
changeset
|
178 |
$(JLINK_TOOL) --add-modules $(JRE_COMPACT3_MODULES_LIST) \ |
36506 | 179 |
--output $(JRE_COMPACT3_IMAGE_DIR) |
27560 | 180 |
$(TOUCH) $@ |
181 |
||
182 |
TOOL_JRE_TARGETS := $(JRE_IMAGE_DIR)/$(JIMAGE_TARGET_FILE) |
|
183 |
TOOL_JDK_TARGETS := $(JDK_IMAGE_DIR)/$(JIMAGE_TARGET_FILE) |
|
184 |
TOOL_JRE_COMPACT1_TARGETS := $(JRE_COMPACT1_IMAGE_DIR)/$(JIMAGE_TARGET_FILE) |
|
185 |
TOOL_JRE_COMPACT2_TARGETS := $(JRE_COMPACT2_IMAGE_DIR)/$(JIMAGE_TARGET_FILE) |
|
186 |
TOOL_JRE_COMPACT3_TARGETS := $(JRE_COMPACT3_IMAGE_DIR)/$(JIMAGE_TARGET_FILE) |
|
187 |
||
188 |
################################################################################ |
|
189 |
# /man dir |
|
190 |
# |
|
191 |
# All variables in this section are assigned with simple =, without :, to enable |
|
192 |
# more selective overriding from the custom version of this file. |
|
193 |
# |
|
194 |
# Avoid evaluating this whole section on windows for speed and stability |
|
195 |
ifneq ($(OPENJDK_TARGET_OS), windows) |
|
196 |
JRE_MAN_PAGES += \ |
|
197 |
java.1 \ |
|
198 |
jjs.1 \ |
|
199 |
keytool.1 \ |
|
200 |
orbd.1 \ |
|
201 |
pack200.1 \ |
|
202 |
rmid.1 \ |
|
203 |
rmiregistry.1 \ |
|
204 |
servertool.1 \ |
|
205 |
tnameserv.1 \ |
|
206 |
unpack200.1 |
|
207 |
||
208 |
JDK_MAN_PAGES += \ |
|
209 |
$(JRE_MAN_PAGES) \ |
|
210 |
appletviewer.1 \ |
|
211 |
idlj.1 \ |
|
212 |
jar.1 \ |
|
213 |
jarsigner.1 \ |
|
214 |
javac.1 \ |
|
215 |
javadoc.1 \ |
|
216 |
javah.1 \ |
|
217 |
javap.1 \ |
|
218 |
jconsole.1 \ |
|
219 |
jcmd.1 \ |
|
220 |
jdb.1 \ |
|
221 |
jdeps.1 \ |
|
222 |
jinfo.1 \ |
|
223 |
jmap.1 \ |
|
224 |
jps.1 \ |
|
225 |
jrunscript.1 \ |
|
226 |
jstack.1 \ |
|
227 |
jstat.1 \ |
|
228 |
jstatd.1 \ |
|
28898 | 229 |
policytool.1 \ |
27560 | 230 |
rmic.1 \ |
231 |
schemagen.1 \ |
|
232 |
serialver.1 \ |
|
233 |
wsgen.1 \ |
|
234 |
wsimport.1 \ |
|
235 |
xjc.1 |
|
236 |
||
237 |
# This variable is potentially overridden in the closed makefile. |
|
238 |
MAN_SRC_BASEDIR ?= $(JDK_TOPDIR)/src |
|
239 |
||
240 |
ifeq ($(OPENJDK_TARGET_OS), linux) |
|
241 |
MAN_SRC_DIR = $(MAN_SRC_BASEDIR)/linux/doc |
|
242 |
MAN1_SUBDIR = man |
|
243 |
endif |
|
244 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
|
245 |
MAN_SRC_DIR = $(MAN_SRC_BASEDIR)/solaris/doc |
|
246 |
MAN1_SUBDIR = sun/man/man1 |
|
247 |
endif |
|
248 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
249 |
MAN_SRC_DIR = $(MAN_SRC_BASEDIR)/bsd/doc |
|
250 |
MAN1_SUBDIR = man |
|
251 |
endif |
|
252 |
||
253 |
$(JRE_IMAGE_DIR)/man/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/% |
|
35008 | 254 |
$(call LogInfo, Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 255 |
$(install-file) |
256 |
||
257 |
$(JDK_IMAGE_DIR)/man/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/% |
|
35008 | 258 |
$(call LogInfo, Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 259 |
$(install-file) |
260 |
||
261 |
$(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
|
35008 | 262 |
$(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
|
263 |
$(install-file) |
27560 | 264 |
|
265 |
$(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
|
35008 | 266 |
$(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
|
267 |
$(install-file) |
27560 | 268 |
|
269 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
|
270 |
$(JRE_IMAGE_DIR)/man/ja/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
|
35008 | 271 |
$(call LogInfo, Converting $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 272 |
$(install-file) |
273 |
||
274 |
$(JDK_IMAGE_DIR)/man/ja/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
|
35008 | 275 |
$(call LogInfo, Converting $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 276 |
$(install-file) |
277 |
endif |
|
278 |
||
279 |
ifneq ($(findstring $(OPENJDK_TARGET_OS), linux macosx), ) |
|
280 |
$(JRE_IMAGE_DIR)/man/ja: |
|
35008 | 281 |
$(call LogInfo, Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 282 |
$(CD) $(@D) && $(RM) ja && $(LN) -s ja_JP.UTF-8 ja |
283 |
||
284 |
$(JDK_IMAGE_DIR)/man/ja: |
|
35008 | 285 |
$(call LogInfo, Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 286 |
$(CD) $(@D) && $(RM) ja && $(LN) -s ja_JP.UTF-8 ja |
287 |
endif |
|
288 |
||
289 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
|
290 |
JRE_MAN_PAGE_LIST = $(addprefix $(JRE_IMAGE_DIR)/man/man1/, $(JRE_MAN_PAGES)) \ |
|
291 |
$(addprefix $(JRE_IMAGE_DIR)/man/ja/man1/, $(JRE_MAN_PAGES)) \ |
|
292 |
$(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JRE_MAN_PAGES)) \ |
|
293 |
$(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.PCK/man1/, $(JRE_MAN_PAGES)) |
|
294 |
||
295 |
JDK_MAN_PAGE_LIST = $(addprefix $(JDK_IMAGE_DIR)/man/man1/, $(JDK_MAN_PAGES)) \ |
|
296 |
$(addprefix $(JDK_IMAGE_DIR)/man/ja/man1/, $(JDK_MAN_PAGES)) \ |
|
297 |
$(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JDK_MAN_PAGES)) \ |
|
298 |
$(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.PCK/man1/, $(JDK_MAN_PAGES)) |
|
299 |
endif |
|
300 |
||
301 |
ifneq ($(findstring $(OPENJDK_TARGET_OS), linux macosx), ) |
|
302 |
JRE_MAN_PAGE_LIST = $(addprefix $(JRE_IMAGE_DIR)/man/man1/, $(JRE_MAN_PAGES)) \ |
|
303 |
$(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JRE_MAN_PAGES)) \ |
|
304 |
$(JRE_IMAGE_DIR)/man/ja |
|
305 |
||
306 |
JDK_MAN_PAGE_LIST = $(addprefix $(JDK_IMAGE_DIR)/man/man1/, $(JDK_MAN_PAGES)) \ |
|
307 |
$(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JDK_MAN_PAGES)) \ |
|
308 |
$(JDK_IMAGE_DIR)/man/ja |
|
309 |
endif |
|
310 |
||
311 |
JRE_TARGETS += $(JRE_MAN_PAGE_LIST) |
|
312 |
JDK_TARGETS += $(JDK_MAN_PAGE_LIST) |
|
313 |
endif # Windows |
|
314 |
||
315 |
################################################################################ |
|
316 |
# /include dir |
|
317 |
||
318 |
$(eval $(call SetupCopyFiles,COPY_INCLUDES, \ |
|
319 |
SRC := $(JDK_OUTPUTDIR)/include, \ |
|
320 |
DEST := $(JDK_IMAGE_DIR)/include, \ |
|
321 |
FILES := $(call CacheFind,$(JDK_OUTPUTDIR)/include))) |
|
322 |
||
323 |
JDK_TARGETS += $(COPY_INCLUDES) |
|
324 |
||
325 |
################################################################################ |
|
326 |
# doc files |
|
327 |
||
328 |
JRE_DOC_FILES ?= LICENSE ASSEMBLY_EXCEPTION THIRD_PARTY_README |
|
329 |
JDK_DOC_FILES ?= LICENSE ASSEMBLY_EXCEPTION THIRD_PARTY_README |
|
330 |
JRE_DOC_LOCATION ?= $(JDK_TOPDIR) |
|
331 |
JDK_DOC_LOCATION ?= $(JDK_TOPDIR) |
|
332 |
||
333 |
JRE_DOC_TARGETS := $(addprefix $(JRE_IMAGE_DIR)/, $(JRE_DOC_FILES)) |
|
334 |
JDK_DOC_TARGETS := $(addprefix $(JDK_IMAGE_DIR)/, $(JDK_DOC_FILES)) |
|
335 |
||
336 |
# Processing license files from source area to image area |
|
337 |
# These are modified to have the platform specific EOL chars. |
|
338 |
define process-doc-file |
|
35008 | 339 |
$(call LogInfo, Processing $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 340 |
$(MKDIR) -p $(@D) |
341 |
$(RM) $@ |
|
342 |
LC_ALL=C $(SED) 's/$$//g' $< > $@ |
|
343 |
$(CHMOD) 444 $@ |
|
344 |
endef |
|
345 |
||
346 |
$(JRE_IMAGE_DIR)/%: $(JRE_DOC_LOCATION)/% |
|
347 |
$(process-doc-file) |
|
348 |
||
349 |
$(JDK_IMAGE_DIR)/%: $(JDK_DOC_LOCATION)/% |
|
350 |
$(process-doc-file) |
|
351 |
||
352 |
JRE_TARGETS += $(JRE_DOC_TARGETS) |
|
353 |
JDK_TARGETS += $(JDK_DOC_TARGETS) |
|
354 |
||
355 |
################################################################################ |
|
356 |
# src.zip |
|
357 |
||
358 |
$(JDK_IMAGE_DIR)/src.zip: $(SUPPORT_OUTPUTDIR)/src.zip |
|
35008 | 359 |
$(call LogInfo, Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 360 |
$(install-file) |
361 |
||
362 |
JDK_TARGETS += $(JDK_IMAGE_DIR)/src.zip |
|
363 |
||
364 |
################################################################################ |
|
37770 | 365 |
# classlist |
366 |
||
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
367 |
ifeq ($(ENABLE_GENERATE_CLASSLIST), true) |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
368 |
$(eval $(call SetupCopyFiles, JDK_COPY_CLASSLIST, \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
369 |
FILES := $(SUPPORT_OUTPUTDIR)/classlist/classlist, \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
370 |
DEST := $(JDK_IMAGE_DIR)/lib, \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
371 |
)) |
37770 | 372 |
|
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
373 |
JDK_TARGETS += $(JDK_COPY_CLASSLIST) |
37770 | 374 |
|
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
375 |
$(eval $(call SetupCopyFiles, JRE_COPY_CLASSLIST, \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
376 |
FILES := $(SUPPORT_OUTPUTDIR)/classlist/classlist, \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
377 |
DEST := $(JRE_IMAGE_DIR)/lib, \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
378 |
)) |
37770 | 379 |
|
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
380 |
JRE_TARGETS += $(JRE_COPY_CLASSLIST) |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
381 |
endif |
37770 | 382 |
|
383 |
################################################################################ |
|
27560 | 384 |
# /demo dir |
41260 | 385 |
# Avoid doing the expensive find unless called with "jdk" as target. |
386 |
ifneq ($(filter jdk, $(MAKECMDGOALS)), ) |
|
387 |
||
388 |
DEMO_FILES := \ |
|
389 |
$(if $(wildcard $(SUPPORT_OUTPUTDIR)/demos/image), \ |
|
390 |
$(call DoubleDollar, $(call DoubleDollar, \ |
|
391 |
$(shell $(FIND) $(SUPPORT_OUTPUTDIR)/demos/image \ |
|
392 |
-type f -a ! \( -name "_the*" -o -name "javac_state" \) ))) \ |
|
393 |
) |
|
394 |
||
395 |
ifeq ($(ZIP_EXTERNAL_DEBUG_SYMBOLS), true) |
|
396 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
397 |
DEMO_FILES := $(call not-containing, .dSYM, $(DEMO_FILES)) |
|
398 |
else |
|
399 |
DEMO_FILES := $(filter-out %.debuginfo %.pdb %.map, $(DEMO_FILES)) |
|
400 |
endif |
|
401 |
endif |
|
402 |
||
35008 | 403 |
$(eval $(call SetupCopyFiles, JDK_COPY_DEMOS, \ |
404 |
SRC := $(SUPPORT_OUTPUTDIR)/demos/image, \ |
|
405 |
DEST := $(JDK_IMAGE_DIR)/demo, \ |
|
41260 | 406 |
FILES := $(DEMO_FILES), \ |
35008 | 407 |
)) |
27560 | 408 |
|
35008 | 409 |
JDK_TARGETS += $(JDK_COPY_DEMOS) |
27560 | 410 |
endif |
411 |
||
412 |
################################################################################ |
|
413 |
# /sample dir |
|
414 |
||
36506 | 415 |
$(eval $(call SetupCopyFiles,COPY_SAMPLES, \ |
31310 | 416 |
SRC := $(SUPPORT_OUTPUTDIR)/sample/image, \ |
27560 | 417 |
DEST := $(JDK_IMAGE_DIR)/sample, \ |
31310 | 418 |
FILES := $(if $(wildcard $(SUPPORT_OUTPUTDIR)/sample/image), \ |
419 |
$(call CacheFind,$(SUPPORT_OUTPUTDIR)/sample/image)))) |
|
27560 | 420 |
|
421 |
JDK_TARGETS += $(COPY_SAMPLES) |
|
422 |
||
423 |
################################################################################ |
|
424 |
# jrt-fs.jar |
|
425 |
||
426 |
$(eval $(call SetupCopyFiles,COPY_JRTFS_JAR, \ |
|
427 |
SRC := $(SUPPORT_OUTPUTDIR), \ |
|
428 |
DEST := $(JDK_IMAGE_DIR), \ |
|
429 |
FILES := $(SUPPORT_OUTPUTDIR)/jrt-fs.jar)) |
|
430 |
||
431 |
JDK_TARGETS += $(COPY_JRTFS_JAR) |
|
432 |
||
433 |
################################################################################ |
|
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
434 |
# Code coverage data files |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
435 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
436 |
ifeq ($(GCOV_ENABLED), true) |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
437 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
438 |
GCOV_FIND_EXPR := -type f -name "*.gcno" |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
439 |
|
29444
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
440 |
$(eval $(call SetupCopyFiles,COPY_HOTSPOT_GCOV_GCNO, \ |
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
441 |
SRC := $(OUTPUT_ROOT), \ |
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
442 |
DEST := $(SYMBOLS_IMAGE_DIR)/gcov, \ |
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
443 |
FILES := $(shell $(FIND) $(HOTSPOT_OUTPUTDIR) $(GCOV_FIND_EXPR)))) |
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
444 |
|
29444
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
445 |
SYMBOLS_TARGETS += $(COPY_HOTSPOT_GCOV_GCNO) |
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
446 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
447 |
$(eval $(call SetupCopyFiles,COPY_JDK_GCOV_GCNO, \ |
29444
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
448 |
SRC := $(OUTPUT_ROOT), \ |
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
449 |
DEST := $(SYMBOLS_IMAGE_DIR)/gcov, \ |
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
450 |
FILES := $(shell $(FIND) $(SUPPORT_OUTPUTDIR)/native $(GCOV_FIND_EXPR)))) |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
451 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
452 |
SYMBOLS_TARGETS += $(COPY_JDK_GCOV_GCNO) |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
453 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
454 |
endif |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
455 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
456 |
################################################################################ |
37653 | 457 |
# Debug symbols |
458 |
# Since debug symbols are not included in the jmod files, they need to be copied |
|
459 |
# in manually after generating the images. |
|
460 |
||
461 |
ALL_JDK_MODULES := $(JDK_MODULES) |
|
462 |
ALL_JRE_MODULES := $(sort $(JRE_MODULES), $(foreach m, $(JRE_MODULES), \ |
|
463 |
$(call FindTransitiveDepsForModule, $m))) |
|
464 |
||
465 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
466 |
LIBS_TARGET_SUBDIR := bin |
|
467 |
else |
|
468 |
LIBS_TARGET_SUBDIR := lib |
|
469 |
endif |
|
470 |
||
471 |
# Param 1 - dir to find debuginfo files in |
|
472 |
FindDebuginfoFiles = \ |
|
473 |
$(wildcard $(addprefix $1/*, $(DEBUGINFO_SUFFIXES)) \ |
|
474 |
$(addprefix $1/*/*, $(DEBUGINFO_SUFFIXES)) \ |
|
475 |
$(addprefix $1/*/*/*, $(DEBUGINFO_SUFFIXES))) |
|
476 |
||
41260 | 477 |
# Pick the correct debug info files to copy, either zipped or not. |
478 |
ifeq ($(ZIP_EXTERNAL_DEBUG_SYMBOLS), true) |
|
479 |
DEBUGINFO_SUFFIXES += .diz |
|
480 |
else |
|
481 |
DEBUGINFO_SUFFIXES := .debuginfo .pdb .map |
|
482 |
# On Macosx, if debug symbols have not been zipped, find all files inside *.dSYM |
|
483 |
# dirs. |
|
484 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
485 |
$(eval $(call FillCacheFind, \ |
|
486 |
$(SUPPORT_OUTPUTDIR)/modules_cmds $(SUPPORT_OUTPUTDIR)/modules_libs)) |
|
487 |
FindDebuginfoFiles = \ |
|
488 |
$(if $(wildcard $1), $(call containing, .dSYM/, $(call CacheFind, $1))) |
|
489 |
endif |
|
37653 | 490 |
endif |
491 |
||
492 |
# Param 1 - either JDK or JRE |
|
493 |
SetupCopyDebuginfo = \ |
|
494 |
$(foreach m, $(ALL_$1_MODULES), \ |
|
495 |
$(eval $(call SetupCopyFiles, COPY_$1_LIBS_DEBUGINFO_$m, \ |
|
496 |
SRC := $(SUPPORT_OUTPUTDIR)/modules_libs/$m, \ |
|
497 |
DEST := $($1_IMAGE_DIR)/$(LIBS_TARGET_SUBDIR), \ |
|
498 |
FILES := $(call FindDebuginfoFiles, \ |
|
499 |
$(SUPPORT_OUTPUTDIR)/modules_libs/$m), \ |
|
500 |
)) \ |
|
501 |
$(eval $1_TARGETS += $$(COPY_$1_LIBS_DEBUGINFO_$m)) \ |
|
502 |
) |
|
503 |
||
504 |
# No space before argument to avoid having to put $(strip ) everywhere in |
|
505 |
# implementation above. |
|
506 |
$(call SetupCopyDebuginfo,JDK) |
|
507 |
$(call SetupCopyDebuginfo,JRE) |
|
508 |
||
509 |
################################################################################ |
|
27560 | 510 |
|
511 |
# Include custom post hook here to make it possible to augment the target lists |
|
512 |
# before actual target prerequisites are declared. |
|
513 |
$(eval $(call IncludeCustomExtension, , Images-post.gmk)) |
|
514 |
||
515 |
################################################################################ |
|
516 |
||
517 |
$(JRE_TARGETS): $(TOOL_JRE_TARGETS) |
|
518 |
$(JDK_TARGETS): $(TOOL_JDK_TARGETS) |
|
519 |
||
41260 | 520 |
jdk: $(JDK_TARGETS) |
521 |
jre: $(JRE_TARGETS) |
|
522 |
symbols: $(SYMBOLS_TARGETS) |
|
523 |
||
524 |
all: jdk jre symbols |
|
27560 | 525 |
|
526 |
$(JRE_COMPACT1_TARGETS): $(TOOL_JRE_COMPACT1_TARGETS) |
|
527 |
$(JRE_COMPACT2_TARGETS): $(TOOL_JRE_COMPACT2_TARGETS) |
|
528 |
$(JRE_COMPACT3_TARGETS): $(TOOL_JRE_COMPACT3_TARGETS) |
|
529 |
||
530 |
profiles: $(TOOL_JRE_COMPACT1_TARGETS) \ |
|
531 |
$(TOOL_JRE_COMPACT2_TARGETS) \ |
|
532 |
$(TOOL_JRE_COMPACT3_TARGETS) \ |
|
533 |
$(JRE_COMPACT1_TARGETS) \ |
|
534 |
$(JRE_COMPACT2_TARGETS) \ |
|
535 |
$(JRE_COMPACT3_TARGETS) |
|
536 |
||
41260 | 537 |
.PHONY: default all jdk jre symbols profiles |