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