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