2012-04-10 15:22:03 +00:00
|
|
|
#
|
2014-08-17 14:54:13 +00:00
|
|
|
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
|
2012-04-10 15:22:03 +00:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
|
|
|
# This code is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License version 2 only, as
|
|
|
|
# published by the Free Software Foundation. Oracle designates this
|
|
|
|
# particular file as subject to the "Classpath" exception as provided
|
|
|
|
# by Oracle in the LICENSE file that accompanied this code.
|
|
|
|
#
|
|
|
|
# This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
# version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
# accompanied this code).
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License version
|
|
|
|
# 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
#
|
|
|
|
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
# or visit www.oracle.com if you need additional information or have any
|
|
|
|
# questions.
|
|
|
|
#
|
|
|
|
|
2014-08-17 14:54:13 +00:00
|
|
|
include GendataCommon.gmk
|
2012-04-10 15:22:03 +00:00
|
|
|
|
2014-08-17 14:54:13 +00:00
|
|
|
# Hook to include the corresponding custom file, if present.
|
|
|
|
$(eval $(call IncludeCustomExtension, jdk, gendata/Gendata-java.base.gmk))
|
2012-04-10 15:22:03 +00:00
|
|
|
|
2014-08-17 14:54:13 +00:00
|
|
|
include GendataBreakIterator.gmk
|
2012-04-10 15:22:03 +00:00
|
|
|
|
2014-08-17 14:54:13 +00:00
|
|
|
include GendataTZDB.gmk
|
2013-01-23 04:59:21 +00:00
|
|
|
|
2014-08-17 14:54:13 +00:00
|
|
|
include GendataBlacklistedCerts.gmk
|
2014-07-09 08:34:31 +00:00
|
|
|
|
2014-12-03 14:22:58 +00:00
|
|
|
include GendataPolicyJars.gmk
|
|
|
|
|
|
|
|
################################################################################
|
2012-06-08 03:40:50 +00:00
|
|
|
|
2014-08-17 14:54:13 +00:00
|
|
|
GENDATA_UNINAME := $(JDK_OUTPUTDIR)/modules/java.base/java/lang/uniName.dat
|
2012-06-08 03:40:50 +00:00
|
|
|
|
2014-08-17 14:54:13 +00:00
|
|
|
$(GENDATA_UNINAME): $(JDK_TOPDIR)/make/data/unicodedata/UnicodeData.txt $(BUILD_TOOLS_JDK)
|
2012-06-08 03:40:50 +00:00
|
|
|
$(MKDIR) -p $(@D)
|
|
|
|
$(TOOL_CHARACTERNAME) $< $@
|
|
|
|
|
2014-12-03 14:22:58 +00:00
|
|
|
TARGETS += $(GENDATA_UNINAME)
|
2012-06-08 03:40:50 +00:00
|
|
|
|
2014-12-03 14:22:58 +00:00
|
|
|
################################################################################
|
2012-06-08 03:40:50 +00:00
|
|
|
|
2014-08-17 14:54:13 +00:00
|
|
|
GENDATA_CURDATA := $(JDK_OUTPUTDIR)/modules/java.base/java/util/currency.data
|
2012-06-08 03:40:50 +00:00
|
|
|
|
2014-08-17 14:54:13 +00:00
|
|
|
$(GENDATA_CURDATA): $(JDK_TOPDIR)/make/data/currency/CurrencyData.properties $(BUILD_TOOLS_JDK)
|
2012-06-08 03:40:50 +00:00
|
|
|
$(MKDIR) -p $(@D)
|
|
|
|
$(RM) $@
|
2012-09-18 18:29:24 +00:00
|
|
|
$(TOOL_GENERATECURRENCYDATA) -o $@.tmp < $<
|
|
|
|
$(MV) $@.tmp $@
|
2012-07-03 23:10:44 +00:00
|
|
|
$(CHMOD) 444 $@
|
2012-06-08 03:40:50 +00:00
|
|
|
|
2014-12-03 14:22:58 +00:00
|
|
|
TARGETS += $(GENDATA_CURDATA)
|
2012-06-08 03:40:50 +00:00
|
|
|
|
2014-12-03 14:22:58 +00:00
|
|
|
################################################################################
|
2012-04-10 15:22:03 +00:00
|
|
|
|
2014-08-18 09:59:36 +00:00
|
|
|
GENDATA_JAVA_SECURITY_SRC := $(JDK_TOPDIR)/src/java.base/share/conf/security/java.security
|
2014-12-03 14:22:58 +00:00
|
|
|
GENDATA_JAVA_SECURITY := $(SUPPORT_OUTPUTDIR)/modules_conf/java.base/security/java.security
|
2014-08-21 09:05:35 +00:00
|
|
|
|
2014-08-18 09:59:36 +00:00
|
|
|
# RESTRICTED_PKGS_SRC is optionally set in custom extension for this makefile
|
2014-08-21 09:05:35 +00:00
|
|
|
|
2014-08-18 09:59:36 +00:00
|
|
|
$(GENDATA_JAVA_SECURITY): $(BUILD_TOOLS) $(GENDATA_JAVA_SECURITY_SRC) $(RESTRICTED_PKGS_SRC)
|
|
|
|
$(ECHO) "Generating java.security"
|
2014-08-17 14:54:13 +00:00
|
|
|
$(MKDIR) -p $(@D)
|
2014-08-18 09:59:36 +00:00
|
|
|
$(TOOL_MAKEJAVASECURITY) $(GENDATA_JAVA_SECURITY_SRC) $@ $(OPENJDK_TARGET_OS) \
|
2015-10-20 00:35:18 +00:00
|
|
|
$(OPENJDK_TARGET_CPU_ARCH) $(RESTRICTED_PKGS_SRC) || exit 1
|
2014-08-21 09:05:35 +00:00
|
|
|
|
2014-12-03 14:22:58 +00:00
|
|
|
TARGETS += $(GENDATA_JAVA_SECURITY)
|
2014-08-17 14:54:13 +00:00
|
|
|
|
2014-12-03 14:22:58 +00:00
|
|
|
################################################################################
|
2012-04-10 15:22:03 +00:00
|
|
|
|
2014-12-03 14:22:58 +00:00
|
|
|
$(SUPPORT_OUTPUTDIR)/modules_libs/java.base/classlist: \
|
|
|
|
$(JDK_TOPDIR)/make/data/classlist/classlist.$(OPENJDK_TARGET_OS)
|
|
|
|
$(MKDIR) -p $(@D)
|
|
|
|
$(RM) $@ $@.tmp
|
|
|
|
$(TOOL_ADDJSUM) $< $@.tmp
|
|
|
|
$(MV) $@.tmp $@
|
2012-09-18 18:29:24 +00:00
|
|
|
|
2014-12-03 14:22:58 +00:00
|
|
|
TARGETS += $(SUPPORT_OUTPUTDIR)/modules_libs/java.base/classlist
|
2012-04-10 15:22:03 +00:00
|
|
|
|
2014-12-03 14:22:58 +00:00
|
|
|
################################################################################
|