2
# Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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.
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
26
include GendataCommon.gmk
28
include gendata/GendataBreakIterator.gmk
30
include gendata/GendataTZDB.gmk
32
include gendata/GendataBlockedCerts.gmk
34
include gendata/GendataCryptoPolicy.gmk
36
include gendata/GendataPublicSuffixList.gmk
38
################################################################################
40
GENDATA_UNINAME := $(JDK_OUTPUTDIR)/modules/java.base/java/lang/uniName.dat
42
$(GENDATA_UNINAME): $(MODULE_SRC)/share/data/unicodedata/UnicodeData.txt $(BUILD_TOOLS_JDK)
43
$(call MakeDir, $(@D))
44
$(TOOL_CHARACTERNAME) $< $@
46
TARGETS += $(GENDATA_UNINAME)
48
################################################################################
50
GENDATA_CURDATA := $(JDK_OUTPUTDIR)/modules/java.base/java/util/currency.data
52
$(GENDATA_CURDATA): $(MODULE_SRC)/share/data/currency/CurrencyData.properties $(BUILD_TOOLS_JDK)
53
$(call MakeDir, $(@D))
55
$(TOOL_GENERATECURRENCYDATA) -o $@.tmp -i $<
59
TARGETS += $(GENDATA_CURDATA)
61
################################################################################
63
ifneq ($(CACERTS_SRC), )
64
GENDATA_CACERTS_SRC := $(CACERTS_SRC)
66
GENDATA_CACERTS_SRC := $(MODULE_SRC)/share/data/cacerts/
68
GENDATA_CACERTS := $(SUPPORT_OUTPUTDIR)/modules_libs/java.base/security/cacerts
70
$(GENDATA_CACERTS): $(BUILD_TOOLS_JDK) $(wildcard $(GENDATA_CACERTS_SRC)/*)
71
$(call LogInfo, Generating cacerts)
73
$(TOOL_GENERATECACERTS) $(GENDATA_CACERTS_SRC) $@
75
ifeq ($(CACERTS_FILE), )
76
TARGETS += $(GENDATA_CACERTS)
79
################################################################################
81
GENDATA_JAVA_SECURITY_SRC := $(MODULE_SRC)/share/conf/security/java.security
82
GENDATA_JAVA_SECURITY := $(SUPPORT_OUTPUTDIR)/modules_conf/java.base/security/java.security
84
ifeq ($(UNLIMITED_CRYPTO), true)
85
CRYPTO.POLICY := unlimited
87
CRYPTO.POLICY := limited
90
# RESTRICTED_PKGS_SRC is optionally set in custom extension for this makefile
92
$(GENDATA_JAVA_SECURITY): $(BUILD_TOOLS_JDK) $(GENDATA_JAVA_SECURITY_SRC) $(RESTRICTED_PKGS_SRC)
93
$(call LogInfo, Generating java.security)
95
$(TOOL_MAKEJAVASECURITY) $(GENDATA_JAVA_SECURITY_SRC) $@ $(OPENJDK_TARGET_OS) \
96
$(OPENJDK_TARGET_CPU_ARCH) $(CRYPTO.POLICY) $(RESTRICTED_PKGS_SRC)
98
TARGETS += $(GENDATA_JAVA_SECURITY)
100
################################################################################