author | jcm |
Thu, 19 Jan 2017 21:52:51 -0800 | |
changeset 43470 | 39d4bc6c9989 |
parent 42527 | d12a8a0ad568 |
child 43043 | bf14e07c9075 |
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 |
|
42514 | 50 |
# Modules list for compact builds |
51 |
JRE_COMPACT1_MODULES := \ |
|
52 |
java.logging \ |
|
53 |
java.scripting \ |
|
54 |
jdk.localedata \ |
|
55 |
jdk.crypto.token \ |
|
56 |
jdk.crypto.ec \ |
|
57 |
jdk.unsupported \ |
|
58 |
# |
|
59 |
||
60 |
JRE_COMPACT2_MODULES := \ |
|
61 |
$(JRE_COMPACT1_MODULES) \ |
|
62 |
java.rmi \ |
|
63 |
java.sql \ |
|
64 |
java.xml \ |
|
65 |
jdk.xml.dom \ |
|
66 |
jdk.httpserver \ |
|
67 |
# |
|
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
68 |
|
42514 | 69 |
JRE_COMPACT3_MODULES := \ |
70 |
$(JRE_COMPACT2_MODULES) \ |
|
71 |
java.smartcardio \ |
|
72 |
java.compiler \ |
|
73 |
java.instrument \ |
|
74 |
java.management \ |
|
75 |
java.naming \ |
|
76 |
java.prefs \ |
|
77 |
java.security.jgss \ |
|
78 |
java.security.sasl \ |
|
79 |
java.sql.rowset \ |
|
80 |
java.xml.crypto \ |
|
81 |
jdk.management \ |
|
82 |
jdk.naming.dns \ |
|
83 |
jdk.naming.rmi \ |
|
84 |
jdk.sctp \ |
|
85 |
jdk.security.auth \ |
|
86 |
# |
|
27560 | 87 |
|
37770 | 88 |
JRE_MODULES_LIST := $(call CommaList, $(JRE_MODULES)) |
89 |
JDK_MODULES_LIST := $(call CommaList, $(JDK_MODULES)) |
|
90 |
JRE_COMPACT1_MODULES_LIST := $(call CommaList, $(JRE_COMPACT1_MODULES)) |
|
91 |
JRE_COMPACT2_MODULES_LIST := $(call CommaList, $(JRE_COMPACT2_MODULES)) |
|
92 |
JRE_COMPACT3_MODULES_LIST := $(call CommaList, $(JRE_COMPACT3_MODULES)) |
|
36506 | 93 |
|
94 |
################################################################################ |
|
95 |
||
96 |
BASE_RELEASE_FILE := $(JDK_OUTPUTDIR)/release |
|
97 |
||
98 |
JMODS := $(wildcard $(IMAGES_OUTPUTDIR)/jmods/*.jmod) |
|
27560 | 99 |
|
100 |
# Use this file inside the image as target for make rule |
|
101 |
JIMAGE_TARGET_FILE := bin/java$(EXE_SUFFIX) |
|
102 |
||
38845
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
103 |
JLINK_ORDER_RESOURCES := **module-info.class |
40612
cec3daf6324a
8164858: Enable build-time use of java.lang.invoke resolve tracing
redestad
parents:
40241
diff
changeset
|
104 |
JLINK_JLI_CLASSES := |
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
105 |
ifeq ($(ENABLE_GENERATE_CLASSLIST), true) |
41874
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41532
diff
changeset
|
106 |
JLINK_ORDER_RESOURCES += @$(SUPPORT_OUTPUTDIR)/link_opt/classlist |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41532
diff
changeset
|
107 |
JLINK_JLI_CLASSES := --generate-jli-classes=@$(SUPPORT_OUTPUTDIR)/link_opt/jli_trace.out |
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
108 |
endif |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
109 |
JLINK_ORDER_RESOURCES += \ |
38845
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
110 |
/java.base/java/** \ |
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
111 |
/java.base/jdk/** \ |
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
112 |
/java.base/sun/** \ |
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
113 |
/java.base/com/** \ |
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
114 |
/jdk.localedata/** \ |
37865
94ea10488f02
8156756: Enable build-time use of resource ordering plugin
redestad
parents:
37770
diff
changeset
|
115 |
# |
94ea10488f02
8156756: Enable build-time use of resource ordering plugin
redestad
parents:
37770
diff
changeset
|
116 |
|
42287
925cf8cf736c
8160359: Improve jlink logging for cases when a plugin throws exception
sundar
parents:
42286
diff
changeset
|
117 |
JLINK_TOOL := $(JLINK) -J-Djlink.debug=true \ |
925cf8cf736c
8160359: Improve jlink logging for cases when a plugin throws exception
sundar
parents:
42286
diff
changeset
|
118 |
--module-path $(IMAGES_OUTPUTDIR)/jmods \ |
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
119 |
--endian $(OPENJDK_BUILD_CPU_ENDIAN) \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
120 |
--release-info $(BASE_RELEASE_FILE) \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
121 |
--order-resources=$(call CommaList, $(JLINK_ORDER_RESOURCES)) \ |
42505
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42293
diff
changeset
|
122 |
--dedup-legal-notices=error-if-not-same-content \ |
40612
cec3daf6324a
8164858: Enable build-time use of java.lang.invoke resolve tracing
redestad
parents:
40241
diff
changeset
|
123 |
$(JLINK_JLI_CLASSES) \ |
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
124 |
# |
36506 | 125 |
|
42140
a2ea75dd99dc
8170280: Enable -g for all java compilation in the build
erikj
parents:
41875
diff
changeset
|
126 |
JLINK_JRE_EXTRA_OPTS := --no-man-pages --no-header-files --strip-debug |
41532
76dffc133464
8167558: Add new JMOD section for header files and man pages
mchung
parents:
41458
diff
changeset
|
127 |
|
36506 | 128 |
ifeq ($(JLINK_KEEP_PACKAGED_MODULES), true) |
41532
76dffc133464
8167558: Add new JMOD section for header files and man pages
mchung
parents:
41458
diff
changeset
|
129 |
JLINK_JDK_EXTRA_OPTS := --keep-packaged-modules $(JDK_IMAGE_DIR)/jmods |
36506 | 130 |
endif |
131 |
||
132 |
$(JDK_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \ |
|
133 |
$(call DependOnVariable, JDK_MODULES_LIST) $(BASE_RELEASE_FILE) |
|
27560 | 134 |
$(ECHO) Creating jdk jimage |
36506 | 135 |
$(RM) -r $(JDK_IMAGE_DIR) |
41532
76dffc133464
8167558: Add new JMOD section for header files and man pages
mchung
parents:
41458
diff
changeset
|
136 |
$(JLINK_TOOL) --add-modules $(JDK_MODULES_LIST) \ |
41874
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41532
diff
changeset
|
137 |
$(JLINK_JDK_EXTRA_OPTS) \ |
41532
76dffc133464
8167558: Add new JMOD section for header files and man pages
mchung
parents:
41458
diff
changeset
|
138 |
--output $(JDK_IMAGE_DIR) |
27560 | 139 |
$(TOUCH) $@ |
140 |
||
36506 | 141 |
$(JRE_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \ |
142 |
$(call DependOnVariable, JRE_MODULES_LIST) $(BASE_RELEASE_FILE) |
|
27560 | 143 |
$(ECHO) Creating jre jimage |
36506 | 144 |
$(RM) -r $(JRE_IMAGE_DIR) |
41532
76dffc133464
8167558: Add new JMOD section for header files and man pages
mchung
parents:
41458
diff
changeset
|
145 |
$(JLINK_TOOL) --add-modules $(JRE_MODULES_LIST) \ |
76dffc133464
8167558: Add new JMOD section for header files and man pages
mchung
parents:
41458
diff
changeset
|
146 |
$(JLINK_JRE_EXTRA_OPTS) \ |
41874
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41532
diff
changeset
|
147 |
--output $(JRE_IMAGE_DIR) |
27560 | 148 |
$(TOUCH) $@ |
149 |
||
150 |
JRE_COMPACT1_IMAGE_DIR := $(JRE_IMAGE_DIR)-compact1 |
|
151 |
JRE_COMPACT2_IMAGE_DIR := $(JRE_IMAGE_DIR)-compact2 |
|
152 |
JRE_COMPACT3_IMAGE_DIR := $(JRE_IMAGE_DIR)-compact3 |
|
153 |
||
41532
76dffc133464
8167558: Add new JMOD section for header files and man pages
mchung
parents:
41458
diff
changeset
|
154 |
|
36506 | 155 |
$(JRE_COMPACT1_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \ |
156 |
$(call DependOnVariable, JRE_COMPACT1_MODULES_LIST) $(BASE_RELEASE_FILE) |
|
27560 | 157 |
$(ECHO) Creating jre compact1 jimage |
36506 | 158 |
$(RM) -r $(JRE_COMPACT1_IMAGE_DIR) |
40241
59abac94e4f2
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39954
diff
changeset
|
159 |
$(JLINK_TOOL) --add-modules $(JRE_COMPACT1_MODULES_LIST) \ |
41532
76dffc133464
8167558: Add new JMOD section for header files and man pages
mchung
parents:
41458
diff
changeset
|
160 |
$(JLINK_JRE_EXTRA_OPTS) \ |
36506 | 161 |
--output $(JRE_COMPACT1_IMAGE_DIR) |
27560 | 162 |
$(TOUCH) $@ |
163 |
||
36506 | 164 |
$(JRE_COMPACT2_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \ |
165 |
$(call DependOnVariable, JRE_COMPACT2_MODULES_LIST) $(BASE_RELEASE_FILE) |
|
27560 | 166 |
$(ECHO) Creating jre compact2 jimage |
36506 | 167 |
$(RM) -r $(JRE_COMPACT2_IMAGE_DIR) |
40241
59abac94e4f2
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39954
diff
changeset
|
168 |
$(JLINK_TOOL) --add-modules $(JRE_COMPACT2_MODULES_LIST) \ |
41532
76dffc133464
8167558: Add new JMOD section for header files and man pages
mchung
parents:
41458
diff
changeset
|
169 |
$(JLINK_JRE_EXTRA_OPTS) \ |
36506 | 170 |
--output $(JRE_COMPACT2_IMAGE_DIR) |
27560 | 171 |
$(TOUCH) $@ |
172 |
||
36506 | 173 |
$(JRE_COMPACT3_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \ |
174 |
$(call DependOnVariable, JRE_COMPACT3_MODULES_LIST) $(BASE_RELEASE_FILE) |
|
27560 | 175 |
$(ECHO) Creating jre compact3 jimage |
36506 | 176 |
$(RM) -r $(JRE_COMPACT3_IMAGE_DIR) |
40241
59abac94e4f2
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39954
diff
changeset
|
177 |
$(JLINK_TOOL) --add-modules $(JRE_COMPACT3_MODULES_LIST) \ |
41532
76dffc133464
8167558: Add new JMOD section for header files and man pages
mchung
parents:
41458
diff
changeset
|
178 |
$(JLINK_JRE_EXTRA_OPTS) \ |
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 |
# doc files |
|
317 |
||
318 |
JRE_DOC_LOCATION ?= $(JDK_TOPDIR) |
|
319 |
JDK_DOC_LOCATION ?= $(JDK_TOPDIR) |
|
320 |
||
321 |
JRE_DOC_TARGETS := $(addprefix $(JRE_IMAGE_DIR)/, $(JRE_DOC_FILES)) |
|
322 |
JDK_DOC_TARGETS := $(addprefix $(JDK_IMAGE_DIR)/, $(JDK_DOC_FILES)) |
|
323 |
||
324 |
# Processing license files from source area to image area |
|
325 |
# These are modified to have the platform specific EOL chars. |
|
326 |
define process-doc-file |
|
35008 | 327 |
$(call LogInfo, Processing $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 328 |
$(MKDIR) -p $(@D) |
329 |
$(RM) $@ |
|
330 |
LC_ALL=C $(SED) 's/$$//g' $< > $@ |
|
331 |
$(CHMOD) 444 $@ |
|
332 |
endef |
|
333 |
||
334 |
$(JRE_IMAGE_DIR)/%: $(JRE_DOC_LOCATION)/% |
|
335 |
$(process-doc-file) |
|
336 |
||
337 |
$(JDK_IMAGE_DIR)/%: $(JDK_DOC_LOCATION)/% |
|
338 |
$(process-doc-file) |
|
339 |
||
340 |
JRE_TARGETS += $(JRE_DOC_TARGETS) |
|
341 |
JDK_TARGETS += $(JDK_DOC_TARGETS) |
|
342 |
||
343 |
################################################################################ |
|
344 |
# src.zip |
|
345 |
||
42523 | 346 |
$(JDK_IMAGE_DIR)/lib/src.zip: $(SUPPORT_OUTPUTDIR)/src.zip |
35008 | 347 |
$(call LogInfo, Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@)) |
27560 | 348 |
$(install-file) |
349 |
||
42523 | 350 |
JDK_TARGETS += $(JDK_IMAGE_DIR)/lib/src.zip |
27560 | 351 |
|
352 |
################################################################################ |
|
353 |
# /demo dir |
|
41260 | 354 |
# Avoid doing the expensive find unless called with "jdk" as target. |
355 |
ifneq ($(filter jdk, $(MAKECMDGOALS)), ) |
|
356 |
||
357 |
DEMO_FILES := \ |
|
358 |
$(if $(wildcard $(SUPPORT_OUTPUTDIR)/demos/image), \ |
|
41875 | 359 |
$(call DoubleDollar, \ |
41260 | 360 |
$(shell $(FIND) $(SUPPORT_OUTPUTDIR)/demos/image \ |
41875 | 361 |
-type f -a ! \( -name "_the*" -o -name "javac_state" \) )) \ |
41260 | 362 |
) |
363 |
||
364 |
ifeq ($(ZIP_EXTERNAL_DEBUG_SYMBOLS), true) |
|
365 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
366 |
DEMO_FILES := $(call not-containing, .dSYM, $(DEMO_FILES)) |
|
367 |
else |
|
368 |
DEMO_FILES := $(filter-out %.debuginfo %.pdb %.map, $(DEMO_FILES)) |
|
369 |
endif |
|
370 |
endif |
|
371 |
||
35008 | 372 |
$(eval $(call SetupCopyFiles, JDK_COPY_DEMOS, \ |
373 |
SRC := $(SUPPORT_OUTPUTDIR)/demos/image, \ |
|
374 |
DEST := $(JDK_IMAGE_DIR)/demo, \ |
|
41260 | 375 |
FILES := $(DEMO_FILES), \ |
35008 | 376 |
)) |
27560 | 377 |
|
35008 | 378 |
JDK_TARGETS += $(JDK_COPY_DEMOS) |
27560 | 379 |
endif |
380 |
||
381 |
################################################################################ |
|
382 |
# /sample dir |
|
383 |
||
41458 | 384 |
$(eval $(call SetupCopyFiles, COPY_SAMPLES, \ |
31310 | 385 |
SRC := $(SUPPORT_OUTPUTDIR)/sample/image, \ |
27560 | 386 |
DEST := $(JDK_IMAGE_DIR)/sample, \ |
31310 | 387 |
FILES := $(if $(wildcard $(SUPPORT_OUTPUTDIR)/sample/image), \ |
388 |
$(call CacheFind,$(SUPPORT_OUTPUTDIR)/sample/image)))) |
|
27560 | 389 |
|
390 |
JDK_TARGETS += $(COPY_SAMPLES) |
|
391 |
||
392 |
################################################################################ |
|
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
393 |
# Code coverage data files |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
394 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
395 |
ifeq ($(GCOV_ENABLED), true) |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
396 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
397 |
GCOV_FIND_EXPR := -type f -name "*.gcno" |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
398 |
|
29444
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
399 |
$(eval $(call SetupCopyFiles,COPY_HOTSPOT_GCOV_GCNO, \ |
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
400 |
SRC := $(OUTPUT_ROOT), \ |
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
401 |
DEST := $(SYMBOLS_IMAGE_DIR)/gcov, \ |
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
402 |
FILES := $(shell $(FIND) $(HOTSPOT_OUTPUTDIR) $(GCOV_FIND_EXPR)))) |
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
403 |
|
29444
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
404 |
SYMBOLS_TARGETS += $(COPY_HOTSPOT_GCOV_GCNO) |
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
405 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
406 |
$(eval $(call SetupCopyFiles,COPY_JDK_GCOV_GCNO, \ |
29444
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
407 |
SRC := $(OUTPUT_ROOT), \ |
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
408 |
DEST := $(SYMBOLS_IMAGE_DIR)/gcov, \ |
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
409 |
FILES := $(shell $(FIND) $(SUPPORT_OUTPUTDIR)/native $(GCOV_FIND_EXPR)))) |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
410 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
411 |
SYMBOLS_TARGETS += $(COPY_JDK_GCOV_GCNO) |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
412 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
413 |
endif |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
414 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
415 |
################################################################################ |
37653 | 416 |
# Debug symbols |
417 |
# Since debug symbols are not included in the jmod files, they need to be copied |
|
418 |
# in manually after generating the images. |
|
419 |
||
420 |
ALL_JDK_MODULES := $(JDK_MODULES) |
|
421 |
ALL_JRE_MODULES := $(sort $(JRE_MODULES), $(foreach m, $(JRE_MODULES), \ |
|
422 |
$(call FindTransitiveDepsForModule, $m))) |
|
423 |
||
424 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
425 |
LIBS_TARGET_SUBDIR := bin |
|
426 |
else |
|
427 |
LIBS_TARGET_SUBDIR := lib |
|
428 |
endif |
|
429 |
||
430 |
# Param 1 - dir to find debuginfo files in |
|
431 |
FindDebuginfoFiles = \ |
|
432 |
$(wildcard $(addprefix $1/*, $(DEBUGINFO_SUFFIXES)) \ |
|
433 |
$(addprefix $1/*/*, $(DEBUGINFO_SUFFIXES)) \ |
|
434 |
$(addprefix $1/*/*/*, $(DEBUGINFO_SUFFIXES))) |
|
435 |
||
41260 | 436 |
# Pick the correct debug info files to copy, either zipped or not. |
437 |
ifeq ($(ZIP_EXTERNAL_DEBUG_SYMBOLS), true) |
|
438 |
DEBUGINFO_SUFFIXES += .diz |
|
439 |
else |
|
440 |
DEBUGINFO_SUFFIXES := .debuginfo .pdb .map |
|
441 |
# On Macosx, if debug symbols have not been zipped, find all files inside *.dSYM |
|
442 |
# dirs. |
|
443 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
444 |
$(eval $(call FillCacheFind, \ |
|
445 |
$(SUPPORT_OUTPUTDIR)/modules_cmds $(SUPPORT_OUTPUTDIR)/modules_libs)) |
|
446 |
FindDebuginfoFiles = \ |
|
447 |
$(if $(wildcard $1), $(call containing, .dSYM/, $(call CacheFind, $1))) |
|
448 |
endif |
|
37653 | 449 |
endif |
450 |
||
451 |
# Param 1 - either JDK or JRE |
|
452 |
SetupCopyDebuginfo = \ |
|
453 |
$(foreach m, $(ALL_$1_MODULES), \ |
|
454 |
$(eval $(call SetupCopyFiles, COPY_$1_LIBS_DEBUGINFO_$m, \ |
|
455 |
SRC := $(SUPPORT_OUTPUTDIR)/modules_libs/$m, \ |
|
456 |
DEST := $($1_IMAGE_DIR)/$(LIBS_TARGET_SUBDIR), \ |
|
457 |
FILES := $(call FindDebuginfoFiles, \ |
|
458 |
$(SUPPORT_OUTPUTDIR)/modules_libs/$m), \ |
|
459 |
)) \ |
|
460 |
$(eval $1_TARGETS += $$(COPY_$1_LIBS_DEBUGINFO_$m)) \ |
|
461 |
) |
|
462 |
||
463 |
# No space before argument to avoid having to put $(strip ) everywhere in |
|
464 |
# implementation above. |
|
465 |
$(call SetupCopyDebuginfo,JDK) |
|
466 |
$(call SetupCopyDebuginfo,JRE) |
|
467 |
||
468 |
################################################################################ |
|
27560 | 469 |
|
470 |
# Include custom post hook here to make it possible to augment the target lists |
|
471 |
# before actual target prerequisites are declared. |
|
472 |
$(eval $(call IncludeCustomExtension, , Images-post.gmk)) |
|
473 |
||
474 |
################################################################################ |
|
475 |
||
476 |
$(JRE_TARGETS): $(TOOL_JRE_TARGETS) |
|
477 |
$(JDK_TARGETS): $(TOOL_JDK_TARGETS) |
|
478 |
||
41260 | 479 |
jdk: $(JDK_TARGETS) |
480 |
jre: $(JRE_TARGETS) |
|
481 |
symbols: $(SYMBOLS_TARGETS) |
|
482 |
||
483 |
all: jdk jre symbols |
|
27560 | 484 |
|
485 |
$(JRE_COMPACT1_TARGETS): $(TOOL_JRE_COMPACT1_TARGETS) |
|
486 |
$(JRE_COMPACT2_TARGETS): $(TOOL_JRE_COMPACT2_TARGETS) |
|
487 |
$(JRE_COMPACT3_TARGETS): $(TOOL_JRE_COMPACT3_TARGETS) |
|
488 |
||
489 |
profiles: $(TOOL_JRE_COMPACT1_TARGETS) \ |
|
490 |
$(TOOL_JRE_COMPACT2_TARGETS) \ |
|
491 |
$(TOOL_JRE_COMPACT3_TARGETS) \ |
|
492 |
$(JRE_COMPACT1_TARGETS) \ |
|
493 |
$(JRE_COMPACT2_TARGETS) \ |
|
494 |
$(JRE_COMPACT3_TARGETS) |
|
495 |
||
41260 | 496 |
.PHONY: default all jdk jre symbols profiles |