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