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