CompileJavaModules.gmk revision 1120:ba5645f2735b
1#
2# Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
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
26# This must be the first rule
27default: all
28
29include $(SPEC)
30include MakeBase.gmk
31include JavaCompilation.gmk
32include SetupJava.gmk
33
34# Hook to include the corresponding custom file, if present.
35$(eval $(call IncludeCustomExtension, , CompileJavaModules.gmk))
36
37################################################################################
38# Module specific build settings
39
40java.activation_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
41
42################################################################################
43
44java.base_COPY := .icu .dat .spp content-types.properties
45java.base_CLEAN := intrinsic.properties
46
47java.base_EXCLUDES += java/lang/doc-files
48
49# Exclude BreakIterator classes that are just used in compile process to generate
50# data files and shouldn't go in the product
51java.base_EXCLUDE_FILES += sun/text/resources/BreakIteratorRules.java
52
53ifeq ($(OPENJDK_TARGET_OS), macosx)
54  JAVA_BASE_UNIX_DIR := $(JDK_TOPDIR)/src/java.base/unix/classes
55  # TODO: make JavaCompilation handle overrides automatically instead of excluding here
56  # These files are overridden in macosx
57  java.base_EXCLUDE_FILES += \
58      $(JAVA_BASE_UNIX_DIR)/sun/util/locale/provider/HostLocaleProviderAdapterImpl.java \
59      $(JAVA_BASE_UNIX_DIR)/java/net/DefaultInterface.java \
60      $(JAVA_BASE_UNIX_DIR)/java/lang/ClassLoaderHelper.java \
61      $(JAVA_BASE_UNIX_DIR)/sun/nio/ch/DefaultSelectorProvider.java \
62      #
63  # This is just skipped on macosx
64  java.base_EXCLUDE_FILES += $(JAVA_BASE_UNIX_DIR)/sun/nio/fs/GnomeFileTypeDetector.java
65endif
66
67ifneq ($(OPENJDK_TARGET_OS), solaris)
68  java.base_EXCLUDE_FILES += \
69      SolarisLoginModule.java \
70      SolarisSystem.java \
71      #
72endif
73
74ifeq ($(filter $(OPENJDK_TARGET_OS), solaris macosx aix), )
75  #
76  # only solaris, macosx and aix
77  #
78  java.base_EXCLUDE_FILES += sun/nio/fs/PollingWatchService.java
79endif
80
81ifeq ($(OPENJDK_TARGET_OS), windows)
82  java.base_EXCLUDE_FILES += \
83      sun/nio/ch/AbstractPollSelectorImpl.java \
84      sun/nio/ch/PollSelectorProvider.java \
85      sun/nio/ch/SimpleAsynchronousFileChannelImpl.java \
86      #
87endif
88
89################################################################################
90
91java.desktop_COPY := .gif .png .wav .txt .xml .css flavormap.properties
92java.desktop_CLEAN := iio-plugin.properties
93
94java.desktop_EXCLUDES += \
95    java/awt/doc-files \
96    javax/swing/doc-files \
97    javax/swing/text/doc-files \
98    javax/swing/plaf/synth/doc-files \
99    javax/swing/undo/doc-files \
100    sun/awt/X11/doc-files \
101    #
102
103# The exception handling of swing beaninfo
104# These resources violates the convention of having code and resources together under
105# $(JDK_TOPDIR)/src/.../classes directories
106$(eval $(call SetupCopyFiles,COPY_BEANINFO, \
107    SRC := $(JDK_TOPDIR)/make/data/swingbeaninfo/images, \
108    DEST := $(JDK_OUTPUTDIR)/modules/java.desktop/javax/swing/beaninfo/images, \
109    FILES := $(wildcard $(JDK_TOPDIR)/make/data/swingbeaninfo/images/*.gif)))
110
111java.desktop_COPY_EXTRA += $(COPY_BEANINFO)
112
113java.desktop_EXCLUDE_FILES += \
114    javax/swing/plaf/nimbus/InternalFrameTitlePanePainter.java \
115    javax/swing/plaf/nimbus/OptionPaneMessageAreaPainter.java \
116    javax/swing/plaf/nimbus/ScrollBarPainter.java \
117    javax/swing/plaf/nimbus/SliderPainter.java \
118    javax/swing/plaf/nimbus/SpinnerPainter.java \
119    javax/swing/plaf/nimbus/SplitPanePainter.java \
120    javax/swing/plaf/nimbus/TabbedPanePainter.java \
121    sun/awt/resources/security-icon-bw16.png \
122    sun/awt/resources/security-icon-bw24.png \
123    sun/awt/resources/security-icon-bw32.png \
124    sun/awt/resources/security-icon-bw48.png \
125    sun/awt/resources/security-icon-interim16.png \
126    sun/awt/resources/security-icon-interim24.png \
127    sun/awt/resources/security-icon-interim32.png \
128    sun/awt/resources/security-icon-interim48.png \
129    sun/awt/resources/security-icon-yellow16.png \
130    sun/awt/resources/security-icon-yellow24.png \
131    sun/awt/resources/security-icon-yellow32.png \
132    sun/awt/resources/security-icon-yellow48.png \
133    sun/awt/X11/java-icon16.png \
134    sun/awt/X11/java-icon24.png \
135    sun/awt/X11/java-icon32.png \
136    sun/awt/X11/java-icon48.png \
137    .template \
138    #
139
140ifeq ($(OPENJDK_TARGET_OS), macosx)
141  # exclude all X11 on Mac.
142  java.desktop_EXCLUDES += sun/awt/X11
143  java.desktop_EXCLUDE_FILES += \
144      $(JDK_TOPDIR)/src/java.desktop/unix/classes/sun/java2d/BackBufferCapsProvider.java \
145      #
146else
147  # TBD: figure out how to eliminate this long list
148  java.desktop_EXCLUDE_FILES += \
149      sun/awt/X11/ScreenFormat.java \
150      sun/awt/X11/XArc.java \
151      sun/awt/X11/XChar2b.java \
152      sun/awt/X11/XCharStruct.java \
153      sun/awt/X11/XClassHint.java \
154      sun/awt/X11/XComposeStatus.java \
155      sun/awt/X11/XExtCodes.java \
156      sun/awt/X11/XFontProp.java \
157      sun/awt/X11/XFontSetExtents.java \
158      sun/awt/X11/XFontStruct.java \
159      sun/awt/X11/XGCValues.java \
160      sun/awt/X11/XHostAddress.java \
161      sun/awt/X11/XIMCallback.java \
162      sun/awt/X11/XIMHotKeyTrigger.java \
163      sun/awt/X11/XIMHotKeyTriggers.java \
164      sun/awt/X11/XIMPreeditCaretCallbackStruct.java \
165      sun/awt/X11/XIMPreeditDrawCallbackStruct.java \
166      sun/awt/X11/XIMPreeditStateNotifyCallbackStruct.java \
167      sun/awt/X11/XIMStatusDrawCallbackStruct.java \
168      sun/awt/X11/XIMStringConversionCallbackStruct.java \
169      sun/awt/X11/XIMStringConversionText.java \
170      sun/awt/X11/XIMStyles.java \
171      sun/awt/X11/XIMText.java \
172      sun/awt/X11/XIMValuesList.java \
173      sun/awt/X11/XImage.java \
174      sun/awt/X11/XKeyboardControl.java \
175      sun/awt/X11/XKeyboardState.java \
176      sun/awt/X11/XOMCharSetList.java \
177      sun/awt/X11/XOMFontInfo.java \
178      sun/awt/X11/XOMOrientation.java \
179      sun/awt/X11/XPoint.java \
180      sun/awt/X11/XRectangle.java \
181      sun/awt/X11/XSegment.java \
182      sun/awt/X11/XStandardColormap.java \
183      sun/awt/X11/XTextItem.java \
184      sun/awt/X11/XTextItem16.java \
185      sun/awt/X11/XTextProperty.java \
186      sun/awt/X11/XTimeCoord.java \
187      sun/awt/X11/XWindowChanges.java \
188      sun/awt/X11/XdbeSwapInfo.java \
189      sun/awt/X11/XmbTextItem.java \
190      sun/awt/X11/XwcTextItem.java
191endif
192
193ifeq ($(OPENJDK_TARGET_OS), windows)
194  java.desktop_EXCLUDES += com/sun/java/swing/plaf/gtk
195endif
196
197ifdef BUILD_HEADLESS_ONLY
198  java.desktop_EXCLUDES += sun/applet
199endif
200
201# Why is this in the open source tree?
202ifdef OPENJDK
203  java.desktop_EXCLUDES += sun/dc
204endif
205
206# Used on windows and macosx
207ifeq ($(filter $(OPENJDK_TARGET_OS), windows macosx), )
208  java.desktop_EXCLUDE_FILES += sun/awt/AWTCharset.java
209endif
210
211# These files do not appear in the build result of the old build. This
212# is because they are generated sources, but the AUTO_JAVA_FILES won't
213# pick them up since they aren't generated when the source dirs are
214# searched and they aren't referenced by any other classes so they won't
215# be picked up by implicit compilation. On a rebuild, they are picked up
216# and compiled. Exclude them here to produce the same rt.jar as the old
217# build does when building just once.
218java.desktop_EXCLUDE_FILES += \
219    javax/swing/plaf/nimbus/InternalFrameTitlePanePainter.java \
220    javax/swing/plaf/nimbus/OptionPaneMessageAreaPainter.java \
221    javax/swing/plaf/nimbus/ScrollBarPainter.java \
222    javax/swing/plaf/nimbus/SliderPainter.java \
223    javax/swing/plaf/nimbus/SpinnerPainter.java \
224    javax/swing/plaf/nimbus/SplitPanePainter.java \
225    javax/swing/plaf/nimbus/TabbedPanePainter.java \
226    #
227
228ifeq ($(OPENJDK_TARGET_OS), macosx)
229  # These files are duplicated in MACOSX_SRC_DIRS
230  java.desktop_EXCLUDE_FILES += \
231      $(JDK_TOPDIR)/src/java.desktop/unix/classes/sun/java2d/BackBufferCapsProvider.java \
232      #
233endif
234
235################################################################################
236
237java.sql_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
238
239################################################################################
240
241java.sql.rowset_CLEAN_FILES := $(wildcard \
242    $(JDK_TOPDIR)/src/java.sql.rowset/share/classes/com/sun/rowset/*.properties \
243    $(JDK_TOPDIR)/src/java.sql.rowset/share/classes/javax/sql/rowset/*.properties)
244
245################################################################################
246# Exclude building of IIOP transport for RMI Connector
247java.management_EXCLUDES := com/sun/jmx/remote/protocol/iiop
248
249# Why is this in the open source tree?
250ifdef OPENJDK
251  java.management_EXCLUDES := \
252      com/sun/jmx/snmp \
253      sun/management/snmp \
254      #
255endif
256
257ifeq ($(RMICONNECTOR_IIOP), false)
258  java.management_EXCLUDES += com/sun/jmx/remote/protocol/iiop
259endif
260
261################################################################################
262
263java.rmi_CLEAN_FILES := $(wildcard \
264    $(JDK_TOPDIR)/src/java.rmi/share/classes/sun/rmi/registry/resources/*.properties \
265    $(JDK_TOPDIR)/src/java.rmi/share/classes/sun/rmi/server/resources/*.properties)
266
267################################################################################
268
269java.corba_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
270
271java.corba_COPY := .prp
272java.corba_CLEAN := .properties
273
274java.corba_EXCLUDES := \
275    com/sun/corba/se/PortableActivationIDL \
276    com/sun/tools/corba/se/logutil \
277    #
278java.corba_EXCLUDE_FILES := \
279    com/sun/corba/se/impl/presentation/rmi/JNDIStateFactoryImpl.java \
280    com/sun/corba/se/spi/presentation/rmi/StubWrapper.java \
281    com/sun/org/omg/CORBA/IDLTypeOperations.java \
282    com/sun/org/omg/CORBA/IRObjectOperations.java \
283    org/omg/PortableInterceptor/UNKNOWN.java \
284    com/sun/tools/corba/se/idl/ResourceBundleUtil.java \
285    com/sun/corba/se/impl/presentation/rmi/jndi.properties \
286    #
287
288################################################################################
289
290java.xml_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
291java.xml_CLEAN := .properties
292
293################################################################################
294
295java.xml.bind_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
296java.xml.bind_CLEAN := .properties
297
298################################################################################
299
300java.xml.soap_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
301java.xml.soap_CLEAN := .properties
302
303################################################################################
304
305java.xml.ws_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
306java.xml.ws_COPY := .xml
307java.xml.ws_CLEAN := .properties
308
309################################################################################
310
311java.naming_CLEAN := jndiprovider.properties
312
313################################################################################
314
315java.security.saaj_CLEAN := .properties
316
317################################################################################
318
319java.xml.crypto_COPY := .dtd .xml
320java.xml.crypto_CLEAN := .properties
321
322################################################################################
323
324jdk.charsets_COPY := .dat
325
326################################################################################
327
328jdk.compiler_COPY := javax.tools.JavaCompilerTool
329
330################################################################################
331
332jdk.jcmd_COPY := _options 
333
334################################################################################
335
336jdk.javadoc_COPY := .xml .css .js
337
338################################################################################
339
340jdk.rmic_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
341jdk.rmic_CLEAN := .properties
342
343################################################################################
344
345# No SCTP implementation on Mac OS X or AIX. These classes should be excluded.
346SCTP_IMPL_CLASSES = \
347    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/AssociationChange.java \
348    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/AssociationImpl.java \
349    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/PeerAddrChange.java \
350    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/ResultContainer.java \
351    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpChannelImpl.java \
352    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpMultiChannelImpl.java \
353    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpNet.java \
354    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpNotification.java \
355    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpServerChannelImpl.java \
356    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SendFailed.java \
357    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/Shutdown.java
358
359ifeq ($(OPENJDK_TARGET_OS), macosx)
360  jdk.sctp_EXCLUDE_FILES := $(SCTP_IMPL_CLASSES)
361endif
362
363ifeq ($(OPENJDK_TARGET_OS),aix)
364  # These files are duplicated in AIX_SRC_DIRS
365  jdk.sctp_EXCLUDE_FILES := $(SCTP_IMPL_CLASSES)
366endif
367
368################################################################################
369
370jdk.jconsole_COPY := .gif .png
371
372jdk.jconsole_CLEAN_FILES := $(wildcard \
373    $(JDK_TOPDIR)/src/jdk.jconsole/share/classes/sun/tools/jconsole/resources/*.properties)
374
375################################################################################
376
377jdk.compiler_CLEAN_FILES := $(wildcard \
378    $(patsubst %, $(JDK_TOPDIR)/src/jdk.compiler/share/classes/%/*.properties, \
379        sun/tools/serialver/resources))
380
381################################################################################
382
383jdk.jdi_EXCLUDES := \
384    com/sun/tools/example/debug/bdi \
385    com/sun/tools/example/debug/event \
386    com/sun/tools/example/debug/gui \
387    com/sun/jdi/doc-files \
388    #
389
390jdk.jdi_EXCLUDE_FILES += jdi-overview.html
391
392################################################################################
393
394jdk.dev_CLEAN_FILES := $(wildcard \
395    $(patsubst %, $(JDK_TOPDIR)/src/jdk.dev/share/classes/%/*.properties, \
396        com/sun/tools/script/shell))
397
398jdk.dev_COPY := .js oqlhelp.html .txt
399
400################################################################################
401
402ifneq ($(OPENJDK_TARGET_OS), solaris)
403  jdk.attach_EXCLUDE_FILES += \
404      sun/tools/attach/SolarisAttachProvider.java \
405      sun/tools/attach/SolarisVirtualMachine.java \
406      #
407endif
408
409ifneq ($(OPENJDK_TARGET_OS), linux)
410  jdk.attach_EXCLUDE_FILES += \
411      sun/tools/attach/LinuxAttachProvider.java \
412      sun/tools/attach/LinuxVirtualMachine.java \
413      #
414endif
415
416ifneq ($(OPENJDK_TARGET_OS), macosx)
417  jdk.attach_EXCLUDE_FILES += \
418      sun/tools/attach/BsdAttachProvider.java \
419      sun/tools/attach/BsdVirtualMachine.java \
420      #
421endif
422
423ifneq ($(OPENJDK_TARGET_OS),aix)
424  jdk.attach_EXCLUDE_FILES += \
425      sun/tools/attach/AixAttachProvider.java \
426      sun/tools/attach/AixVirtualMachine.java \
427      #
428endif
429
430################################################################################
431
432jdk.jvmstat_COPY := aliasmap
433
434################################################################################
435
436jdk.xml.bind_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
437jdk.xml.bind_CLEAN := .properties
438jdk.xml.bind_COPY := .xsd JAXBContextFactory.java ZeroOneBooleanAdapter.java
439
440################################################################################
441
442jdk.xml.ws_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
443jdk.xml.ws_CLEAN := .properties
444
445################################################################################
446
447sun.charsets_COPY := .dat
448
449################################################################################
450
451jdk.localedata_COPY := _dict _th
452# Exclude BreakIterator classes that are just used in compile process to generate
453# data files and shouldn't go in the product
454jdk.localedata_EXCLUDE_FILES := sun/text/resources/th/BreakIteratorRules_th.java
455
456################################################################################
457# Setup the compilation of each module
458#
459# Do not include nashorn src here since it needs to be compiled separately due
460# to nasgen.
461#
462# Order src dirs in order of override with the most important first. Generated
463# source before static source and platform specific source before shared.
464#
465# To use this variable, use $(call ALL_SRC_DIRS,module) with no space.
466GENERATED_SRC_DIRS += \
467    $(JDK_OUTPUTDIR)/gensrc/$1 \
468    $(LANGTOOLS_OUTPUTDIR)/gensrc/$1 \
469    $(CORBA_OUTPUTDIR)/gensrc/$1 \
470    $(JDK_OUTPUTDIR)/gensrc_no_srczip/$1 \
471    #
472
473OS_SRC_DIRS += $(JDK_TOPDIR)/src/$1/$(OPENJDK_TARGET_OS)/classes
474ifneq ($(OPENJDK_TARGET_OS), $(OPENJDK_TARGET_OS_API_DIR))
475OS_API_SRC_DIRS += $(JDK_TOPDIR)/src/$1/$(OPENJDK_TARGET_OS_API_DIR)/classes
476endif
477
478SHARE_SRC_DIRS += \
479    $(JDK_TOPDIR)/src/$1/share/classes \
480    $(LANGTOOLS_TOPDIR)/src/$1/share/classes \
481    $(CORBA_TOPDIR)/src/$1/share/classes \
482    $(JAXP_TOPDIR)/src/$1/share/classes \
483    $(JAXWS_TOPDIR)/src/$1/share/classes \
484    #
485
486ALL_SRC_DIRS = \
487    $(GENERATED_SRC_DIRS) \
488    $(OS_SRC_DIRS) \
489    $(OS_API_SRC_DIRS) \
490    $(SHARE_SRC_DIRS) \
491    #
492
493# Find all modules with java sources. Filter out nashorn since it needs to be
494# compiled separately.
495ALL_JAVA_MODULES := $(filter-out jdk.scripting.nashorn, $(call FindJavaModules))
496JAVA_MODULES := $(ALL_JAVA_MODULES)
497
498# The JDK_USER_DEFINED_FILTER is a poor man's incremental build: by specifying
499# JDK_FILTER at the make command line, only a subset of the JDK java files will
500# be recompiled. If multiple paths are separated by comma, convert that into a
501# space separated list.
502JDK_USER_DEFINED_FILTER := $(strip $(subst $(COMMA),$(SPACE), $(JDK_FILTER)))
503
504# This macro sets up compilation of a module and declares dependencies for it.
505# Param 1 - module name
506define SetupModuleCompilation
507  # Find the module dependencies by parsing modules.list file
508  $1_DEPS := $$(call FindDepsForModule, $1)
509
510  $1_CLASSPATH := $$(addprefix $(JDK_OUTPUTDIR)/modules/,$$($1_DEPS))
511  ifeq ($1, jdk.hotspot.agent)
512    ## The source of this module is compiled elsewhere, hotspot, and imported.
513    ## Service types are required in the classpath when compiing module-info
514    $1_CLASSPATH := $$($1_CLASSPATH) $$(addprefix $(JDK_OUTPUTDIR)/modules/,jdk.hotspot.agent)
515  endif
516  $1_CLASSPATH := $$(subst $$(SPACE),$$(PATH_SEP),$$($1_CLASSPATH))
517  $1_JAVAC_FLAGS := -bootclasspath "$$($1_CLASSPATH)"
518
519  $$(eval $$(call SetupJavaCompilation,$1, \
520      SETUP := $$(if $$($1_SETUP), $$($1_SETUP), GENERATE_JDKBYTECODE), \
521      SRC := $$(wildcard $$(call ALL_SRC_DIRS,$1)), \
522      INCLUDES:=$(JDK_USER_DEFINED_FILTER),\
523      BIN := $(JDK_OUTPUTDIR)/modules/$1, \
524      HEADERS := $(JDK_OUTPUTDIR)/gensrc_headers/$1, \
525      ADD_JAVAC_FLAGS := $$($1_JAVAC_FLAGS)))
526
527  $1: $$($1) $$($1_COPY_EXTRA)
528
529  # Declare dependencies between java compilation of different modules.
530  # Since not all modules have been declared yet, or might be declared
531  # in different invocations of this file, use the macro to find the 
532  # correct target file to depend on.
533  # Only the javac compilation actually depends on other modules so limit
534  # dependency declaration to that by using the *_COMPILE_TARGET variable.
535  $$($1_COMPILE_TARGETS): $$(foreach d,$$($1_DEPS), \
536      $$(call SetupJavaCompilationCompileTarget, $$d, $(JDK_OUTPUTDIR)/modules/$$d))
537endef
538
539# Setup compilation for each module
540$(foreach m,$(JAVA_MODULES),$(eval $(call SetupModuleCompilation,$m)))
541
542################################################################################
543# Copy zh_HK properties files from zh_TW
544
545$(JDK_OUTPUTDIR)/modules/%_zh_HK.properties: $(JDK_OUTPUTDIR)/modules/%_zh_TW.properties
546	$(install-file)
547
548define CreateHkTargets
549  $(patsubst $(JDK_TOPDIR)/src/%, $(JDK_OUTPUTDIR)/modules/%, \
550    $(subst /share/classes,, \
551      $(subst _zh_TW,_zh_HK, $(filter %_zh_TW.properties, $1))))
552endef
553
554java.sql.rowset: $(call CreateHkTargets, $(java.sql.rowset_CLEAN_FILES))
555java.rmi: $(call CreateHkTargets, $(java.rmi_CLEAN_FILES))
556
557all: $(JAVA_MODULES)
558
559.PHONY: all $(JAVA_MODULES)
560