author | jwilhelm |
Fri, 02 Mar 2018 21:00:12 +0100 | |
changeset 49331 | 10b24a3af249 |
parent 47253 | 92fd0e04e0e1 |
child 57136 | c9bcd764f1f4 |
permissions | -rw-r--r-- |
12892 | 1 |
# |
22639
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
2 |
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. |
12892 | 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 |
||
47217 | 26 |
include GensrcCommonJdk.gmk |
12892 | 27 |
|
26717
d65c07a65486
8055189: Cleanup gensrc after source code restructure
erikj
parents:
25859
diff
changeset
|
28 |
################################################################################ |
d65c07a65486
8055189: Cleanup gensrc after source code restructure
erikj
parents:
25859
diff
changeset
|
29 |
# |
d65c07a65486
8055189: Cleanup gensrc after source code restructure
erikj
parents:
25859
diff
changeset
|
30 |
# Generate files using the charsetmapping tool |
d65c07a65486
8055189: Cleanup gensrc after source code restructure
erikj
parents:
25859
diff
changeset
|
31 |
# |
47217 | 32 |
CHARSET_DATA_DIR := $(TOPDIR)/make/data/charsetmapping |
28969
f980bee32887
8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents:
27565
diff
changeset
|
33 |
|
27565 | 34 |
CHARSET_GENSRC_JAVA_DIR_CS := $(SUPPORT_OUTPUTDIR)/gensrc/jdk.charsets/sun/nio/cs/ext |
25859 | 35 |
CHARSET_DONE_CS := $(CHARSET_GENSRC_JAVA_DIR_CS)/_the.charsetmapping |
47217 | 36 |
CHARSET_COPYRIGHT_HEADER := $(TOPDIR)/make/jdk/src/classes/build/tools/charsetmapping |
22639
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
37 |
CHARSET_TEMPLATES := \ |
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
38 |
$(CHARSET_DATA_DIR)/SingleByte-X.java.template \ |
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
39 |
$(CHARSET_DATA_DIR)/DoubleByte-X.java.template |
28969
f980bee32887
8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents:
27565
diff
changeset
|
40 |
CHARSET_EXTENDED_JAVA_TEMPLATES := \ |
47217 | 41 |
$(TOPDIR)/src/jdk.charsets/share/classes/sun/nio/cs/ext/ExtendedCharsets.java.template |
42 |
CHARSET_EXTENDED_JAVA_DIR := $(TOPDIR)/src/jdk.charsets/share/classes/sun/nio/cs/ext |
|
28969
f980bee32887
8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents:
27565
diff
changeset
|
43 |
CHARSET_STANDARD_OS := stdcs-$(OPENJDK_TARGET_OS) |
22639
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
44 |
|
28969
f980bee32887
8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents:
27565
diff
changeset
|
45 |
$(CHARSET_DONE_CS)-extcs: $(CHARSET_DATA_DIR)/charsets \ |
29016 | 46 |
$(wildcard $(CHARSET_DATA_DIR)/$(CHARSET_STANDARD_OS)) \ |
47 |
$(CHARSET_TEMPLATES) $(CHARSET_EXTENDED_JAVA_TEMPLATES) \ |
|
48 |
$(BUILD_TOOLS_JDK) |
|
35241 | 49 |
$(call LogInfo, Generating jdk.charsets extcs) |
50 |
$(call MakeDir, $(@D)) |
|
28969
f980bee32887
8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents:
27565
diff
changeset
|
51 |
$(TOOL_CHARSETMAPPING) $(CHARSET_DATA_DIR) $(CHARSET_GENSRC_JAVA_DIR_CS) \ |
29016 | 52 |
extcs charsets $(CHARSET_STANDARD_OS) \ |
53 |
$(CHARSET_EXTENDED_JAVA_TEMPLATES) \ |
|
29119
f680ba340556
8073893: Enable charsets build system to configure euc_tw into java.base module/sun.nio.cs
sherman
parents:
29016
diff
changeset
|
54 |
$(CHARSET_EXTENDED_JAVA_DIR) \ |
f680ba340556
8073893: Enable charsets build system to configure euc_tw into java.base module/sun.nio.cs
sherman
parents:
29016
diff
changeset
|
55 |
$(CHARSET_COPYRIGHT_HEADER) \ |
35241 | 56 |
$(LOG_DEBUG) |
22639
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
57 |
$(TOUCH) '$@' |
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
58 |
|
26717
d65c07a65486
8055189: Cleanup gensrc after source code restructure
erikj
parents:
25859
diff
changeset
|
59 |
$(CHARSET_DONE_CS)-hkscs: $(CHARSET_COPYRIGHT_HEADER)/HKSCS.java \ |
d65c07a65486
8055189: Cleanup gensrc after source code restructure
erikj
parents:
25859
diff
changeset
|
60 |
$(BUILD_TOOLS_JDK) |
35241 | 61 |
$(call LogInfo, Generating jdk.charsets hkscs) |
62 |
$(call MakeDir, $(@D)) |
|
25859 | 63 |
$(TOOL_CHARSETMAPPING) $(CHARSET_DATA_DIR) $(CHARSET_GENSRC_JAVA_DIR_CS) hkscs '$<' |
22639
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
64 |
$(TOUCH) '$@' |
12892 | 65 |
|
26717
d65c07a65486
8055189: Cleanup gensrc after source code restructure
erikj
parents:
25859
diff
changeset
|
66 |
$(CHARSET_DONE_CS)-euctw: $(CHARSET_COPYRIGHT_HEADER)/EUC_TW.java \ |
d65c07a65486
8055189: Cleanup gensrc after source code restructure
erikj
parents:
25859
diff
changeset
|
67 |
$(BUILD_TOOLS_JDK) |
35241 | 68 |
$(call LogInfo, Generating jdk.charsets euctw) |
69 |
$(call MakeDir, $(@D)) |
|
25859 | 70 |
$(TOOL_CHARSETMAPPING) $(CHARSET_DATA_DIR) $(CHARSET_GENSRC_JAVA_DIR_CS) euctw '$<' |
22639
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
71 |
$(TOUCH) '$@' |
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
72 |
|
25859 | 73 |
$(CHARSET_GENSRC_JAVA_DIR_CS)/sjis0213.dat: $(CHARSET_DATA_DIR)/sjis0213.map \ |
26717
d65c07a65486
8055189: Cleanup gensrc after source code restructure
erikj
parents:
25859
diff
changeset
|
74 |
$(BUILD_TOOLS_JDK) |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47217
diff
changeset
|
75 |
$(call LogInfo, Generating $(patsubst $(OUTPUTDIR)/%, %, $@)) |
35241 | 76 |
$(call MakeDir, $(@D)) |
22639
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
77 |
$(TOOL_CHARSETMAPPING) '$<' '$@' sjis0213 |
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
78 |
|
25859 | 79 |
GENSRC_JDK_CHARSETS += \ |
28969
f980bee32887
8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents:
27565
diff
changeset
|
80 |
$(CHARSET_DONE_CS)-extcs \ |
25859 | 81 |
$(CHARSET_DONE_CS)-hkscs \ |
82 |
$(CHARSET_DONE_CS)-euctw \ |
|
83 |
$(CHARSET_GENSRC_JAVA_DIR_CS)/sjis0213.dat \ |
|
22639
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
84 |
# |
12892 | 85 |
|
26717
d65c07a65486
8055189: Cleanup gensrc after source code restructure
erikj
parents:
25859
diff
changeset
|
86 |
################################################################################ |
12892 | 87 |
|
26717
d65c07a65486
8055189: Cleanup gensrc after source code restructure
erikj
parents:
25859
diff
changeset
|
88 |
jdk.charsets: $(GENSRC_JDK_CHARSETS) |
12892 | 89 |
|
26717
d65c07a65486
8055189: Cleanup gensrc after source code restructure
erikj
parents:
25859
diff
changeset
|
90 |
all: jdk.charsets |
12892 | 91 |
|
26717
d65c07a65486
8055189: Cleanup gensrc after source code restructure
erikj
parents:
25859
diff
changeset
|
92 |
.PHONY: all jdk.charsets |