e32ab98b32
New makefiles transition, old and new living side by side for now. Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com> Co-authored-by: Magnus Ihse Bursie <magnus.ihse.bursie@oracle.com> Co-authored-by: Torbjorn Granat <torbjorn.granat@oracle.com> Co-authored-by: Yekaterina Kantserova <yekaterina.kantserova@oracle.com> Reviewed-by: ohair, jjg, dholmes, ohrstrom, erikj, ihse, tgranat, ykantser
273 lines
13 KiB
Plaintext
273 lines
13 KiB
Plaintext
#
|
|
# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
|
|
# 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.
|
|
#
|
|
|
|
# All .properties files to be compiled are appended to this variable.
|
|
ALL_COMPILED_PROPSOURCES:=
|
|
# All generated .java files from compilation are appended to this variable.
|
|
ALL_COMPILED_PROPJAVAS:=
|
|
# The (very long) command line for compilation, stored in a file, prior to use.
|
|
COMPILE_PROPCMDLINE:=
|
|
|
|
# All .properties files to be cleaned are appended to this variable.
|
|
ALL_CLEANED_PROPSOURCES:=
|
|
# All generated cleaned .properties files from cleaning are appended to this variable.
|
|
ALL_CLEANED_PROPOUTPUT:=
|
|
# The (very long) command line for cleaning, stored in a file, prior to use.
|
|
CLEAN_PROPCMDLINE:=
|
|
|
|
define add_properties_to_compile
|
|
# $1 is the name of the properties group
|
|
# $2 is the files belonging to this group
|
|
# $3 is the super class for the generated java file.
|
|
# $4 is a from pattern for translating stripped name from source to target
|
|
# $5 is the to pattern replacing $3 in the target
|
|
|
|
# Strip away prefix and suffix,
|
|
# leaving for example: sun/util/resources/CurrencyNames_sv
|
|
$1_PROPPATHS:=$$(patsubst $(JDK_TOPDIR)/src/$(LEGACY_HOST_OS_API)/classes/%.properties,%,\
|
|
$$(patsubst $(JDK_TOPDIR)/src/share/classes/%.properties,%,$2))
|
|
|
|
# Apply optional name transformation, example: hz_TW -> hz_HK
|
|
$(if $4,$1_PROPPATHS:=$$(patsubst $4,$5,$$($1_PROPPATHS)))
|
|
|
|
# Accumulate all found properties files.
|
|
ALL_COMPILED_PROPSOURCES+=$2
|
|
|
|
# Generate the list of to be created java files.
|
|
ALL_COMPILED_PROPJAVAS+=$$(patsubst %,$(JDK_OUTPUTDIR)/gensrc_properties/%.java,$$($1_PROPPATHS))
|
|
|
|
# Now generate a sequence of "-compile ...CurrencyNames_sv.properties ...CurrencyNames_sv.java ListResourceBundle"
|
|
# suitable to be fed into the CompileProperties command.
|
|
COMPILE_PROPCMDLINE+=$$(subst _SPACE_,$(SPACE),$$(join $$(addprefix -compile_SPACE_,$2), \
|
|
$$(addsuffix _SPACE_$(strip $3),\
|
|
$$(addprefix _SPACE_$(JDK_OUTPUTDIR)/gensrc_properties/,\
|
|
$$(addsuffix .java,$$($1_PROPPATHS))))))
|
|
endef
|
|
|
|
define add_properties_to_clean
|
|
# $1 is the name of the properties group
|
|
# $2 is the files belonging to this group
|
|
# $3 is a from pattern for translating stripped name from source to target
|
|
# $4 is the to pattern replacing $3 in the target
|
|
# $5 optional name of extra directory to put properties files in (ex: resources)
|
|
|
|
# Strip away prefix and suffix,
|
|
# leaving for example: sun/util/resources/CurrencyNames_sv
|
|
$1_PROPPATHS:=$$(patsubst $(JDK_TOPDIR)/src/$(LEGACY_HOST_OS_API)/classes/%.properties,%,\
|
|
$$(patsubst $(JDK_TOPDIR)/src/share/classes/%.properties,%,$2))
|
|
|
|
# Apply optional name transformation, example: hz_TW -> hz_HK
|
|
$(if $3,$1_PROPPATHS:=$$(patsubst $3,$4,$$($1_PROPPATHS)))
|
|
|
|
# Accumulate all found properties files.
|
|
ALL_CLEANED_PROPSOURCES+=$2
|
|
|
|
# Generate the list of to be created java files.
|
|
$1_PROPOUTPUT:=$$(patsubst %,$(JDK_OUTPUTDIR)/newclasses/%.properties,$$($1_PROPPATHS))
|
|
# If the properties target file isn't in a "resources" dir, add one.
|
|
ifneq ($5,)
|
|
$1_PROPOUTPUT:=$$(foreach p,$$($1_PROPOUTPUT), $$(dir $$p)$5/$$(notdir $$p))
|
|
endif
|
|
|
|
ALL_CLEANED_PROPOUTPUT+=$$($1_PROPOUTPUT)
|
|
|
|
# Now generate a sequence of "-clean ...[src]...CurrencyNames_sv.properties ...[build]...CurrencyNames_sv.properties"
|
|
# suitable to be fed into the StripProperties command.
|
|
CLEAN_PROPCMDLINE+=$$(subst _SPACE_,$(SPACE),$$(join $$(addprefix -clean_SPACE_,$2), \
|
|
$$(addprefix _SPACE_,$$($1_PROPOUTPUT))))
|
|
endef
|
|
|
|
# Some packages contain pregenerated java files instead of properties files.
|
|
# But unfortunately not all properties should be converted, some should be
|
|
# copied....argggghhh.
|
|
|
|
# For example:
|
|
# sun/applet/resources
|
|
# sun/misc/resources
|
|
# sun/text/resources
|
|
# sun/tools/jconsole/resources
|
|
# sun/tools/native2ascii/resources
|
|
# sun/util/resources
|
|
|
|
# Some packages have properties that need to be converted to java source files.
|
|
|
|
#com/sun/accessibility/internal/resources
|
|
$(eval $(call add_properties_to_compile,COM_SUN_ACCESSIBILITY,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/com/sun/accessibility/internal/resources -name "*.properties"),\
|
|
ListResourceBundle))
|
|
$(eval $(call add_properties_to_compile,COM_SUN_ACCESSIBILITY_HK,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/com/sun/accessibility/internal/resources -name "*.properties"),\
|
|
ListResourceBundle,%zh_TW,%zh_HK))
|
|
#com/sun/imageio/plugins/common
|
|
#com/sun/java/swing/plaf/gtk/resources
|
|
#com/sun/java/swing/plaf/motif/resources
|
|
#com/sun/java/swing/plaf/windows/resources
|
|
#com/sun/java/util/jar/pack
|
|
$(eval $(call add_properties_to_clean,JNDI_COSNAMING,\
|
|
$(JDK_TOPDIR)/src/share/classes/com/sun/java/util/jar/pack/intrinsic.properties))
|
|
#com/sun/jndi/cosnaming
|
|
$(eval $(call add_properties_to_clean,JNDI_COSNAMING,\
|
|
$(JDK_TOPDIR)/src/share/classes/com/sun/jndi/cosnaming/jndiprovider.properties))
|
|
#com/sun/jndi/ldap
|
|
$(eval $(call add_properties_to_clean,JNDI_COSNAMING,\
|
|
$(JDK_TOPDIR)/src/share/classes/com/sun/jndi/ldap/jndiprovider.properties))
|
|
|
|
#com/sun/org/apache/xml/internal/security/resource
|
|
#FIXME: The "xmlsecurity*.properties" pattern is not ideal; we might want to find
|
|
#a better way to select the properties files that are needed.
|
|
$(eval $(call add_properties_to_clean,XML_SECURITY,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/com/sun/org/apache/xml/internal/security/resource -name "xmlsecurity*.properties")))
|
|
|
|
#com/sun/rowset
|
|
$(eval $(call add_properties_to_clean,COM_SUN_ROWSET,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/com/sun/rowset -name "*.properties")))
|
|
$(eval $(call add_properties_to_clean,COM_SUN_ROWSET_HK,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/com/sun/rowset -name "*zh_TW.properties"),\
|
|
%zh_TW,%zh_HK))
|
|
|
|
#com/sun/servicetag/resources
|
|
#com/sun/swing/internal/plaf/basic/resources
|
|
#com/sun/swing/internal/plaf/metal/resources
|
|
#com/sun/swing/internal/plaf/synth/resources
|
|
|
|
#com/sun/tools/jdi/resources
|
|
$(eval $(call add_properties_to_compile,COM_SUN_TOOLS_JDI,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/com/sun/tools/jdi/resources -name "*.properties"),\
|
|
ListResourceBundle))
|
|
|
|
#com/sun/tools/script/shell
|
|
#java/util
|
|
#javax/sql/rowset
|
|
#sun/awt/resources
|
|
$(eval $(call add_properties_to_compile,SUN_AWT,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/awt/resources -name "*.properties"),\
|
|
ListResourceBundle))
|
|
$(eval $(call add_properties_to_compile,SUN_AWT_HK,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/awt/resources -name "*.properties"),\
|
|
ListResourceBundle,%zh_TW,%zh_HK))
|
|
#sun/launcher/resources
|
|
$(eval $(call add_properties_to_compile,SUN_LAUNCHER,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/launcher/resources -name "*.properties"),\
|
|
ListResourceBundle))
|
|
$(eval $(call add_properties_to_compile,SUN_LAUNCHER_HK,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/launcher/resources -name "*.properties"),\
|
|
ListResourceBundle,%zh_TW,%zh_HK))
|
|
#sun/management/resources
|
|
#sun/print
|
|
#sun/print/resources
|
|
$(eval $(call add_properties_to_compile,SUN_PRINT,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/print/resources -name "*.properties"),\
|
|
ListResourceBundle))
|
|
$(eval $(call add_properties_to_compile,SUN_PRINT_HK,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/print/resources -name "*.properties"),\
|
|
ListResourceBundle,%zh_TW,%zh_HK))
|
|
#sun/rmi/registry/resources
|
|
$(eval $(call add_properties_to_clean,SUN_RMI_REGISTRY,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/rmi/registry/resources -name "*.properties")))
|
|
$(eval $(call add_properties_to_clean,SUN_RMI_REGISTRY_HK,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/rmi/registry/resources -name "*zh_TW.properties"),\
|
|
%zh_TW,%zh_HK))
|
|
|
|
#sun/rmi/rmic/resources
|
|
$(eval $(call add_properties_to_clean,SUN_RMI_RMIC,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/rmi/rmic/resources -name "*.properties")))
|
|
|
|
#sun/rmi/server/resources
|
|
$(eval $(call add_properties_to_clean,SUN_RMI_SERVER,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/rmi/server/resources -name "*.properties")))
|
|
$(eval $(call add_properties_to_clean,SUN_RMI_SERVER_HK,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/rmi/server/resources -name "*zh_TW.properties"),\
|
|
%zh_TW,%zh_HK))
|
|
|
|
# sun/tools/jar/resources
|
|
$(eval $(call add_properties_to_compile,SUN_TOOLS_JAR,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/tools/jar/resources -name "*.properties"),\
|
|
ListResourceBundle))
|
|
$(eval $(call add_properties_to_compile,SUN_TOOLS_JAR_HK,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/tools/jar/resources -name "*.properties"),\
|
|
ListResourceBundle,%zh_TW,%zh_HK))
|
|
|
|
#sun/tools/javac/resources
|
|
# It's unclear if the other localized property files here are supposed to be copied or not
|
|
# but the old build system didn't copy them.
|
|
$(eval $(call add_properties_to_clean,SUN_TOOLS_SERIALVER,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/tools/javac/resources -name "javac.properties")))
|
|
|
|
#sun/tools/serialver
|
|
$(eval $(call add_properties_to_clean,SUN_TOOLS_SERIALVER,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/tools/serialver -name "*.properties"),,,resources))
|
|
|
|
#sun/util/logging/resources
|
|
$(eval $(call add_properties_to_compile,SUN_UTIL_LOGGING,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/util/logging/resources -name "*.properties"),\
|
|
ListResourceBundle))
|
|
$(eval $(call add_properties_to_compile,SUN_UTIL_LOGGING_HK,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/util/logging/resources -name "*.properties"),\
|
|
ListResourceBundle,%zh_TW,%zh_HK))
|
|
# sun/util/resources
|
|
$(eval $(call add_properties_to_compile,SUN_UTIL,\
|
|
$(shell find $(JDK_TOPDIR)/src/share/classes/sun/util/resources -name "*.properties"),\
|
|
LocaleNamesBundle))
|
|
|
|
|
|
# Now setup the rule for the generation of the resource bundles.
|
|
$(JDK_OUTPUTDIR)/gensrc_properties/_the.compiled_properties : $(ALL_COMPILED_PROPSOURCES) $(BUILD_TOOLS)
|
|
$(RM) -rf $(JDK_OUTPUTDIR)/gensrc_properties/*
|
|
# Generate all output directories in advance since the build tool does not do that...
|
|
$(MKDIR) -p $(sort $(dir $(ALL_COMPILED_PROPJAVAS)))
|
|
echo Compiling $(words $(ALL_COMPILED_PROPSOURCES)) properties into resource bundles
|
|
$(call ListPathsSafely,COMPILE_PROPCMDLINE,\n, >> $(JDK_OUTPUTDIR)/gensrc_properties/_the.cmdline)
|
|
$(TOOL_COMPILEPROPERTIES) -quiet @$(JDK_OUTPUTDIR)/gensrc_properties/_the.cmdline
|
|
touch $@
|
|
|
|
# Now setup the rule for the generation of the cleaned properties.
|
|
# FIXME: We currently don't handle removed properties incrementally.
|
|
$(JDK_OUTPUTDIR)/newclasses/_the.cleaned_properties : $(ALL_CLEANED_PROPSOURCES) $(BUILD_TOOLS)
|
|
$(RM) -f $(JDK_OUTPUTDIR)/newclasses/_the.cleaned_properties.cmdline
|
|
# Generate all output directories in advance since the build tool does not do that...
|
|
$(MKDIR) -p $(sort $(dir $(ALL_CLEANED_PROPOUTPUT)))
|
|
echo Copying and cleaning $(words $(ALL_CLEANED_PROPSOURCES)) properties
|
|
$(call ListPathsSafely,CLEAN_PROPCMDLINE,\n, >> $(JDK_OUTPUTDIR)/newclasses/_the.cleaned_properties.cmdline)
|
|
$(TOOL_STRIPPROPERTIES) @$(JDK_OUTPUTDIR)/newclasses/_the.cleaned_properties.cmdline
|
|
touch $@
|
|
|
|
$(ALL_COMPILED_PROPJAVAS) : $(JDK_OUTPUTDIR)/gensrc_properties/_the.compiled_properties
|
|
|
|
$(ALL_CLEANED_PROPOUTPUT) : $(JDK_OUTPUTDIR)/newclasses/_the.cleaned_properties
|
|
|
|
|
|
# Some zh_HK resources are just copied of zh_TW
|
|
$(JDK_OUTPUTDIR)/gensrc_properties/%_zh_HK.java: $(JDK_TOPDIR)/src/share/classes/%_zh_TW.java
|
|
$(MKDIR) -p $(@D)
|
|
$(CAT) $< | $(SED) -e '/class/s/_zh_TW/_zh_HK/' > $@
|
|
|
|
ZH_HK_JAVA:= sun/applet/resources/MsgAppletViewer_zh_HK.java \
|
|
sun/misc/resources/Messages_zh_HK.java \
|
|
sun/security/util/AuthResources_zh_HK.java
|
|
ZH_HK_JAVA_FILES:=$(addprefix $(JDK_OUTPUTDIR)/gensrc_properties/,$(ZH_HK_JAVA))
|
|
|
|
|
|
GENSRC_PROPERTIES:=$(ALL_COMPILED_PROPJAVAS) $(ALL_CLEANED_PROPOUTPUT) $(ZH_HK_JAVA_FILES)
|