2012-04-10 15:22:03 +00:00
|
|
|
#
|
2013-12-26 20:04:16 +00:00
|
|
|
# Copyright (c) 2011, 2013, 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.
|
|
|
|
#
|
|
|
|
|
|
|
|
default: all
|
|
|
|
|
|
|
|
include $(SPEC)
|
|
|
|
include MakeBase.gmk
|
|
|
|
include JavaCompilation.gmk
|
|
|
|
|
|
|
|
# Setup the java compilers for the JDK build.
|
|
|
|
include Setup.gmk
|
|
|
|
# We need the tools.
|
|
|
|
include Tools.gmk
|
|
|
|
|
|
|
|
# Now include all the rules that generate data resources.
|
2012-06-08 03:40:50 +00:00
|
|
|
# These are written directly into classes dir.
|
|
|
|
GENDATA :=
|
2012-04-10 15:22:03 +00:00
|
|
|
|
2013-10-15 11:06:45 +00:00
|
|
|
include gendata/GendataBreakIterator.gmk
|
2012-04-10 15:22:03 +00:00
|
|
|
GENDATA += $(BREAK_ITERATOR)
|
|
|
|
|
2013-10-15 11:06:45 +00:00
|
|
|
include gendata/GendataFontConfig.gmk
|
2012-06-08 03:40:50 +00:00
|
|
|
GENDATA += $(GENDATA_FONT_CONFIG)
|
|
|
|
|
2013-10-15 11:06:45 +00:00
|
|
|
include gendata/GendataTZDB.gmk
|
2013-01-23 04:59:21 +00:00
|
|
|
GENDATA += $(GENDATA_TZDB)
|
|
|
|
|
2013-10-15 11:06:45 +00:00
|
|
|
include gendata/GendataHtml32dtd.gmk
|
2012-06-08 03:40:50 +00:00
|
|
|
GENDATA += $(GENDATA_HTML32DTD)
|
|
|
|
|
2014-07-09 08:34:31 +00:00
|
|
|
include gendata/GendataBlacklistedCerts.gmk
|
|
|
|
GENDATA += $(GENDATA_BLACKLISTED_CERTS)
|
|
|
|
|
2012-06-08 03:40:50 +00:00
|
|
|
##########################################################################################
|
|
|
|
|
|
|
|
GENDATA_UNINAME := $(JDK_OUTPUTDIR)/classes/java/lang/uniName.dat
|
|
|
|
|
2013-11-14 10:19:32 +00:00
|
|
|
$(GENDATA_UNINAME): $(JDK_TOPDIR)/make/data/unicodedata/UnicodeData.txt $(BUILD_TOOLS)
|
2012-06-08 03:40:50 +00:00
|
|
|
$(MKDIR) -p $(@D)
|
|
|
|
$(TOOL_CHARACTERNAME) $< $@
|
|
|
|
|
|
|
|
GENDATA += $(GENDATA_UNINAME)
|
|
|
|
|
|
|
|
##########################################################################################
|
|
|
|
|
2014-06-26 17:48:43 +00:00
|
|
|
GENDATA_CURDATA := $(JDK_OUTPUTDIR)/classes/java/util/currency.data
|
2012-06-08 03:40:50 +00:00
|
|
|
|
2014-02-18 07:46:37 +00:00
|
|
|
$(GENDATA_CURDATA): $(JDK_TOPDIR)/make/data/currency/CurrencyData.properties $(BUILD_TOOLS)
|
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
|
|
|
|
|
|
|
GENDATA += $(GENDATA_CURDATA)
|
|
|
|
|
2012-04-10 15:22:03 +00:00
|
|
|
##########################################################################################
|
|
|
|
|
2013-10-10 13:06:21 +00:00
|
|
|
$(GENDATA): $(BUILD_TOOLS)
|
2012-04-10 15:22:03 +00:00
|
|
|
|
2013-10-10 13:06:21 +00:00
|
|
|
$(JDK_OUTPUTDIR)/classes/_the.gendata: $(GENDATA)
|
2012-09-18 18:29:24 +00:00
|
|
|
$(TOUCH) $@
|
|
|
|
|
|
|
|
all: $(JDK_OUTPUTDIR)/classes/_the.gendata
|
2012-04-10 15:22:03 +00:00
|
|
|
|
|
|
|
.PHONY: all
|