author | neliasso |
Mon, 20 Nov 2017 09:50:23 +0100 | |
changeset 47999 | d8486f1f5a84 |
parent 47217 | 72e3ae9a25eb |
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 |
||
26717
d65c07a65486
8055189: Cleanup gensrc after source code restructure
erikj
parents:
25859
diff
changeset
|
26 |
################################################################################ |
d65c07a65486
8055189: Cleanup gensrc after source code restructure
erikj
parents:
25859
diff
changeset
|
27 |
# |
28969
f980bee32887
8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents:
27565
diff
changeset
|
28 |
# Generate StandardCharsets.java and individul sun.nio.cs charset class using |
f980bee32887
8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents:
27565
diff
changeset
|
29 |
# the charsetmapping tool |
26717
d65c07a65486
8055189: Cleanup gensrc after source code restructure
erikj
parents:
25859
diff
changeset
|
30 |
# |
47217 | 31 |
CHARSET_DATA_DIR := $(TOPDIR)/make/data/charsetmapping |
32 |
CHARSET_EXTSRC_DIR := $(TOPDIR)/src/jdk.charsets/share/classes/sun/nio/cs/ext |
|
27565 | 33 |
CHARSET_GENSRC_JAVA_DIR_BASE := $(SUPPORT_OUTPUTDIR)/gensrc/java.base/sun/nio/cs |
25859 | 34 |
CHARSET_DONE_BASE := $(CHARSET_GENSRC_JAVA_DIR_BASE)/_the.charsetmapping |
47217 | 35 |
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
|
36 |
CHARSET_TEMPLATES := \ |
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
37 |
$(CHARSET_DATA_DIR)/SingleByte-X.java.template \ |
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
38 |
$(CHARSET_DATA_DIR)/DoubleByte-X.java.template |
28969
f980bee32887
8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents:
27565
diff
changeset
|
39 |
CHARSET_STANDARD_JAVA_TEMPLATES := \ |
47217 | 40 |
$(TOPDIR)/src/java.base/share/classes/sun/nio/cs/StandardCharsets.java.template |
28969
f980bee32887
8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents:
27565
diff
changeset
|
41 |
CHARSET_STANDARD_OS := stdcs-$(OPENJDK_TARGET_OS) |
22639
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
42 |
|
28969
f980bee32887
8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents:
27565
diff
changeset
|
43 |
$(CHARSET_DONE_BASE)-stdcs: $(CHARSET_DATA_DIR)/charsets \ |
29016 | 44 |
$(wildcard $(CHARSET_DATA_DIR)/$(CHARSET_STANDARD_OS)) \ |
45 |
$(CHARSET_TEMPLATES) $(CHARSET_STANDARD_JAVA_TEMPLATES) \ |
|
46 |
$(BUILD_TOOLS_JDK) |
|
35241 | 47 |
$(call LogInfo, Generating java.base charset mapping) |
48 |
$(call MakeDir, $(@D)) |
|
28969
f980bee32887
8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents:
27565
diff
changeset
|
49 |
$(TOOL_CHARSETMAPPING) $(CHARSET_DATA_DIR) $(CHARSET_GENSRC_JAVA_DIR_BASE) \ |
29016 | 50 |
stdcs charsets $(CHARSET_STANDARD_OS) \ |
29119
f680ba340556
8073893: Enable charsets build system to configure euc_tw into java.base module/sun.nio.cs
sherman
parents:
29016
diff
changeset
|
51 |
$(CHARSET_STANDARD_JAVA_TEMPLATES) $(CHARSET_EXTSRC_DIR) \ |
f680ba340556
8073893: Enable charsets build system to configure euc_tw into java.base module/sun.nio.cs
sherman
parents:
29016
diff
changeset
|
52 |
$(CHARSET_COPYRIGHT_HEADER) \ |
35241 | 53 |
$(LOG_DEBUG) |
22639
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
54 |
$(TOUCH) '$@' |
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
21805
diff
changeset
|
55 |
|
28969
f980bee32887
8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents:
27565
diff
changeset
|
56 |
GENSRC_JAVA_BASE += $(CHARSET_DONE_BASE)-stdcs |