CompileJavaModules.gmk revision 1131:70e378877c6a
1156283Srwatson#
2156283Srwatson# Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
3156283Srwatson# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4156283Srwatson#
5156283Srwatson# This code is free software; you can redistribute it and/or modify it
6156283Srwatson# under the terms of the GNU General Public License version 2 only, as
7156283Srwatson# published by the Free Software Foundation.  Oracle designates this
8156283Srwatson# particular file as subject to the "Classpath" exception as provided
9156283Srwatson# by Oracle in the LICENSE file that accompanied this code.
10156283Srwatson#
11156283Srwatson# This code is distributed in the hope that it will be useful, but WITHOUT
12156283Srwatson# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13156283Srwatson# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14156283Srwatson# version 2 for more details (a copy is included in the LICENSE file that
15156283Srwatson# accompanied this code).
16156283Srwatson#
17156283Srwatson# You should have received a copy of the GNU General Public License version
18156283Srwatson# 2 along with this work; if not, write to the Free Software Foundation,
19156283Srwatson# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20156283Srwatson#
21156283Srwatson# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22156283Srwatson# or visit www.oracle.com if you need additional information or have any
23156283Srwatson# questions.
24156283Srwatson#
25156283Srwatson
26156283Srwatson# This must be the first rule
27156283Srwatsondefault: all
28156283Srwatson
29156283Srwatsoninclude $(SPEC)
30156283Srwatsoninclude MakeBase.gmk
31156283Srwatsoninclude Modules.gmk
32156283Srwatsoninclude JavaCompilation.gmk
33156283Srwatsoninclude SetupJavaCompilers.gmk
34156283Srwatson
35156283Srwatson# Hook to include the corresponding custom file, if present.
36156283Srwatson$(eval $(call IncludeCustomExtension, , CompileJavaModules.gmk))
37156283Srwatson
38156283Srwatson################################################################################
39156283Srwatson# Module specific build settings
40156283Srwatson
41156283Srwatsonjava.activation_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
42156283Srwatson
43156283Srwatson################################################################################
44156283Srwatson
45156283Srwatsonjava.base_COPY := .icu .dat .spp content-types.properties
46156283Srwatsonjava.base_CLEAN := intrinsic.properties
47156283Srwatson
48156283Srwatsonjava.base_EXCLUDES += java/lang/doc-files
49156283Srwatson
50156283Srwatson# Exclude BreakIterator classes that are just used in compile process to generate
51156283Srwatson# data files and shouldn't go in the product
52156283Srwatsonjava.base_EXCLUDE_FILES += sun/text/resources/BreakIteratorRules.java
53156283Srwatson
54156283Srwatsonifeq ($(OPENJDK_TARGET_OS), macosx)
55156283Srwatson  JAVA_BASE_UNIX_DIR := $(JDK_TOPDIR)/src/java.base/unix/classes
56156283Srwatson  # TODO: make JavaCompilation handle overrides automatically instead of excluding here
57156283Srwatson  # These files are overridden in macosx
58156283Srwatson  java.base_EXCLUDE_FILES += \
59156283Srwatson      $(JAVA_BASE_UNIX_DIR)/sun/util/locale/provider/HostLocaleProviderAdapterImpl.java \
60156283Srwatson      $(JAVA_BASE_UNIX_DIR)/java/net/DefaultInterface.java \
61156283Srwatson      $(JAVA_BASE_UNIX_DIR)/java/lang/ClassLoaderHelper.java \
62156283Srwatson      $(JAVA_BASE_UNIX_DIR)/sun/nio/ch/DefaultSelectorProvider.java \
63156283Srwatson      #
64156283Srwatson  # This is just skipped on macosx
65156283Srwatson  java.base_EXCLUDE_FILES += $(JAVA_BASE_UNIX_DIR)/sun/nio/fs/GnomeFileTypeDetector.java
66156283Srwatsonendif
67156283Srwatson
68156283Srwatsonifneq ($(OPENJDK_TARGET_OS), solaris)
69156283Srwatson  java.base_EXCLUDE_FILES += \
70156283Srwatson      SolarisLoginModule.java \
71156283Srwatson      SolarisSystem.java \
72156283Srwatson      #
73156283Srwatsonendif
74156283Srwatson
75156283Srwatsonifeq ($(filter $(OPENJDK_TARGET_OS), solaris macosx aix), )
76156283Srwatson  #
77156283Srwatson  # only solaris, macosx and aix
78156283Srwatson  #
79156283Srwatson  java.base_EXCLUDE_FILES += sun/nio/fs/PollingWatchService.java
80156283Srwatsonendif
81156283Srwatson
82156283Srwatsonifeq ($(OPENJDK_TARGET_OS), windows)
83156283Srwatson  java.base_EXCLUDE_FILES += \
84156283Srwatson      sun/nio/ch/AbstractPollSelectorImpl.java \
85156283Srwatson      sun/nio/ch/PollSelectorProvider.java \
86156283Srwatson      sun/nio/ch/SimpleAsynchronousFileChannelImpl.java \
87156283Srwatson      #
88156283Srwatsonendif
89156283Srwatson
90156283Srwatson################################################################################
91156283Srwatson
92156283Srwatsonjava.desktop_COPY := .gif .png .wav .txt .xml .css flavormap.properties
93156283Srwatsonjava.desktop_CLEAN := iio-plugin.properties
94156283Srwatson
95156283Srwatsonjava.desktop_EXCLUDES += \
96156283Srwatson    java/awt/doc-files \
97156283Srwatson    javax/swing/doc-files \
98156283Srwatson    javax/swing/text/doc-files \
99156283Srwatson    javax/swing/plaf/synth/doc-files \
100156283Srwatson    javax/swing/undo/doc-files \
101156283Srwatson    sun/awt/X11/doc-files \
102156283Srwatson    #
103156283Srwatson
104156283Srwatson# The exception handling of swing beaninfo
105156283Srwatson# These resources violates the convention of having code and resources together under
106156283Srwatson# $(JDK_TOPDIR)/src/.../classes directories
107156283Srwatson$(eval $(call SetupCopyFiles,COPY_BEANINFO, \
108156283Srwatson    SRC := $(JDK_TOPDIR)/make/data/swingbeaninfo/images, \
109156283Srwatson    DEST := $(JDK_OUTPUTDIR)/modules/java.desktop/javax/swing/beaninfo/images, \
110156283Srwatson    FILES := $(wildcard $(JDK_TOPDIR)/make/data/swingbeaninfo/images/*.gif)))
111156283Srwatson
112156283Srwatsonjava.desktop_COPY_EXTRA += $(COPY_BEANINFO)
113156283Srwatson
114156283Srwatsonjava.desktop_EXCLUDE_FILES += \
115156283Srwatson    javax/swing/plaf/nimbus/InternalFrameTitlePanePainter.java \
116156283Srwatson    javax/swing/plaf/nimbus/OptionPaneMessageAreaPainter.java \
117156283Srwatson    javax/swing/plaf/nimbus/ScrollBarPainter.java \
118156283Srwatson    javax/swing/plaf/nimbus/SliderPainter.java \
119156283Srwatson    javax/swing/plaf/nimbus/SpinnerPainter.java \
120156283Srwatson    javax/swing/plaf/nimbus/SplitPanePainter.java \
121156283Srwatson    javax/swing/plaf/nimbus/TabbedPanePainter.java \
122156283Srwatson    sun/awt/resources/security-icon-bw16.png \
123156283Srwatson    sun/awt/resources/security-icon-bw24.png \
124156283Srwatson    sun/awt/resources/security-icon-bw32.png \
125156283Srwatson    sun/awt/resources/security-icon-bw48.png \
126156283Srwatson    sun/awt/resources/security-icon-interim16.png \
127156283Srwatson    sun/awt/resources/security-icon-interim24.png \
128156283Srwatson    sun/awt/resources/security-icon-interim32.png \
129156283Srwatson    sun/awt/resources/security-icon-interim48.png \
130156283Srwatson    sun/awt/resources/security-icon-yellow16.png \
131156283Srwatson    sun/awt/resources/security-icon-yellow24.png \
132156283Srwatson    sun/awt/resources/security-icon-yellow32.png \
133156283Srwatson    sun/awt/resources/security-icon-yellow48.png \
134156283Srwatson    sun/awt/X11/java-icon16.png \
135156283Srwatson    sun/awt/X11/java-icon24.png \
136156283Srwatson    sun/awt/X11/java-icon32.png \
137156283Srwatson    sun/awt/X11/java-icon48.png \
138156283Srwatson    .template \
139156283Srwatson    #
140156283Srwatson
141156283Srwatsonifeq ($(OPENJDK_TARGET_OS), macosx)
142156283Srwatson  # exclude all X11 on Mac.
143156283Srwatson  java.desktop_EXCLUDES += sun/awt/X11
144156283Srwatson  java.desktop_EXCLUDE_FILES += \
145156283Srwatson      $(JDK_TOPDIR)/src/java.desktop/unix/classes/sun/java2d/BackBufferCapsProvider.java \
146156283Srwatson      #
147156283Srwatsonelse
148156283Srwatson  # TBD: figure out how to eliminate this long list
149156283Srwatson  java.desktop_EXCLUDE_FILES += \
150156283Srwatson      sun/awt/X11/ScreenFormat.java \
151156283Srwatson      sun/awt/X11/XArc.java \
152156283Srwatson      sun/awt/X11/XChar2b.java \
153156283Srwatson      sun/awt/X11/XCharStruct.java \
154156283Srwatson      sun/awt/X11/XClassHint.java \
155156283Srwatson      sun/awt/X11/XComposeStatus.java \
156156283Srwatson      sun/awt/X11/XExtCodes.java \
157156283Srwatson      sun/awt/X11/XFontProp.java \
158156283Srwatson      sun/awt/X11/XFontSetExtents.java \
159156283Srwatson      sun/awt/X11/XFontStruct.java \
160156283Srwatson      sun/awt/X11/XGCValues.java \
161156283Srwatson      sun/awt/X11/XHostAddress.java \
162156283Srwatson      sun/awt/X11/XIMCallback.java \
163156283Srwatson      sun/awt/X11/XIMHotKeyTrigger.java \
164156283Srwatson      sun/awt/X11/XIMHotKeyTriggers.java \
165156283Srwatson      sun/awt/X11/XIMPreeditCaretCallbackStruct.java \
166156283Srwatson      sun/awt/X11/XIMPreeditDrawCallbackStruct.java \
167156283Srwatson      sun/awt/X11/XIMPreeditStateNotifyCallbackStruct.java \
168156283Srwatson      sun/awt/X11/XIMStatusDrawCallbackStruct.java \
169156283Srwatson      sun/awt/X11/XIMStringConversionCallbackStruct.java \
170156283Srwatson      sun/awt/X11/XIMStringConversionText.java \
171156283Srwatson      sun/awt/X11/XIMStyles.java \
172156283Srwatson      sun/awt/X11/XIMText.java \
173156283Srwatson      sun/awt/X11/XIMValuesList.java \
174156283Srwatson      sun/awt/X11/XImage.java \
175156283Srwatson      sun/awt/X11/XKeyboardControl.java \
176156283Srwatson      sun/awt/X11/XKeyboardState.java \
177156283Srwatson      sun/awt/X11/XOMCharSetList.java \
178156283Srwatson      sun/awt/X11/XOMFontInfo.java \
179156283Srwatson      sun/awt/X11/XOMOrientation.java \
180156283Srwatson      sun/awt/X11/XPoint.java \
181156283Srwatson      sun/awt/X11/XRectangle.java \
182156283Srwatson      sun/awt/X11/XSegment.java \
183156283Srwatson      sun/awt/X11/XStandardColormap.java \
184156283Srwatson      sun/awt/X11/XTextItem.java \
185156283Srwatson      sun/awt/X11/XTextItem16.java \
186156283Srwatson      sun/awt/X11/XTextProperty.java \
187156283Srwatson      sun/awt/X11/XTimeCoord.java \
188156283Srwatson      sun/awt/X11/XWindowChanges.java \
189156283Srwatson      sun/awt/X11/XdbeSwapInfo.java \
190156283Srwatson      sun/awt/X11/XmbTextItem.java \
191156283Srwatson      sun/awt/X11/XwcTextItem.java
192156283Srwatsonendif
193156283Srwatson
194156283Srwatsonifeq ($(OPENJDK_TARGET_OS), windows)
195156283Srwatson  java.desktop_EXCLUDES += com/sun/java/swing/plaf/gtk
196156283Srwatsonendif
197156283Srwatson
198156283Srwatsonifdef BUILD_HEADLESS_ONLY
199156283Srwatson  java.desktop_EXCLUDES += sun/applet
200156283Srwatsonendif
201156283Srwatson
202156283Srwatson# Why is this in the open source tree?
203156283Srwatsonifdef OPENJDK
204156283Srwatson  java.desktop_EXCLUDES += sun/dc
205156283Srwatsonendif
206156283Srwatson
207156283Srwatson# Used on windows and macosx
208156283Srwatsonifeq ($(filter $(OPENJDK_TARGET_OS), windows macosx), )
209156283Srwatson  java.desktop_EXCLUDE_FILES += sun/awt/AWTCharset.java
210156283Srwatsonendif
211156283Srwatson
212156283Srwatson# These files do not appear in the build result of the old build. This
213156283Srwatson# is because they are generated sources, but the AUTO_JAVA_FILES won't
214156283Srwatson# pick them up since they aren't generated when the source dirs are
215156283Srwatson# searched and they aren't referenced by any other classes so they won't
216156283Srwatson# be picked up by implicit compilation. On a rebuild, they are picked up
217156283Srwatson# and compiled. Exclude them here to produce the same rt.jar as the old
218156283Srwatson# build does when building just once.
219156283Srwatsonjava.desktop_EXCLUDE_FILES += \
220156283Srwatson    javax/swing/plaf/nimbus/InternalFrameTitlePanePainter.java \
221156283Srwatson    javax/swing/plaf/nimbus/OptionPaneMessageAreaPainter.java \
222156283Srwatson    javax/swing/plaf/nimbus/ScrollBarPainter.java \
223156283Srwatson    javax/swing/plaf/nimbus/SliderPainter.java \
224156283Srwatson    javax/swing/plaf/nimbus/SpinnerPainter.java \
225156283Srwatson    javax/swing/plaf/nimbus/SplitPanePainter.java \
226156283Srwatson    javax/swing/plaf/nimbus/TabbedPanePainter.java \
227156283Srwatson    #
228156283Srwatson
229156283Srwatsonifeq ($(OPENJDK_TARGET_OS), macosx)
230156283Srwatson  # These files are duplicated in MACOSX_SRC_DIRS
231156283Srwatson  java.desktop_EXCLUDE_FILES += \
232156283Srwatson      $(JDK_TOPDIR)/src/java.desktop/unix/classes/sun/java2d/BackBufferCapsProvider.java \
233156283Srwatson      #
234156283Srwatsonendif
235156283Srwatson
236156283Srwatson################################################################################
237156283Srwatson
238156283Srwatsonjava.sql_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
239156283Srwatson
240156283Srwatson################################################################################
241156283Srwatson
242156283Srwatsonjava.sql.rowset_CLEAN_FILES := $(wildcard \
243156283Srwatson    $(JDK_TOPDIR)/src/java.sql.rowset/share/classes/com/sun/rowset/*.properties \
244156283Srwatson    $(JDK_TOPDIR)/src/java.sql.rowset/share/classes/javax/sql/rowset/*.properties)
245156283Srwatson
246156283Srwatson################################################################################
247156283Srwatson# Exclude building of IIOP transport for RMI Connector
248156283Srwatsonjava.management_EXCLUDES := com/sun/jmx/remote/protocol/iiop
249156283Srwatson
250156283Srwatson# Why is this in the open source tree?
251156283Srwatsonifdef OPENJDK
252156283Srwatson  java.management_EXCLUDES := \
253156283Srwatson      com/sun/jmx/snmp \
254156283Srwatson      sun/management/snmp \
255156283Srwatson      #
256156283Srwatsonendif
257156283Srwatson
258156283Srwatsonifeq ($(RMICONNECTOR_IIOP), false)
259156283Srwatson  java.management_EXCLUDES += com/sun/jmx/remote/protocol/iiop
260156283Srwatsonendif
261156283Srwatson
262156283Srwatson################################################################################
263156283Srwatson
264156283Srwatsonjava.rmi_CLEAN_FILES := $(wildcard \
265156283Srwatson    $(JDK_TOPDIR)/src/java.rmi/share/classes/sun/rmi/registry/resources/*.properties \
266156283Srwatson    $(JDK_TOPDIR)/src/java.rmi/share/classes/sun/rmi/server/resources/*.properties)
267156283Srwatson
268156283Srwatson################################################################################
269156283Srwatson
270156283Srwatsonjava.corba_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
271156283Srwatson
272156283Srwatsonjava.corba_COPY := .prp
273156283Srwatsonjava.corba_CLEAN := .properties
274156283Srwatson
275156283Srwatsonjava.corba_EXCLUDES := \
276156283Srwatson    com/sun/corba/se/PortableActivationIDL \
277156283Srwatson    com/sun/tools/corba/se/logutil \
278156283Srwatson    #
279156283Srwatsonjava.corba_EXCLUDE_FILES := \
280156283Srwatson    com/sun/corba/se/impl/presentation/rmi/JNDIStateFactoryImpl.java \
281156283Srwatson    com/sun/corba/se/spi/presentation/rmi/StubWrapper.java \
282156283Srwatson    com/sun/org/omg/CORBA/IDLTypeOperations.java \
283156283Srwatson    com/sun/org/omg/CORBA/IRObjectOperations.java \
284156283Srwatson    org/omg/PortableInterceptor/UNKNOWN.java \
285156283Srwatson    com/sun/tools/corba/se/idl/ResourceBundleUtil.java \
286156283Srwatson    com/sun/corba/se/impl/presentation/rmi/jndi.properties \
287156283Srwatson    #
288156283Srwatson
289156283Srwatson################################################################################
290156283Srwatson
291156283Srwatsonjava.xml_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
292156283Srwatsonjava.xml_CLEAN := .properties
293156283Srwatson
294156283Srwatson################################################################################
295156283Srwatson
296156283Srwatsonjava.xml.bind_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
297156283Srwatsonjava.xml.bind_CLEAN := .properties
298156283Srwatson
299156283Srwatson################################################################################
300156283Srwatson
301156283Srwatsonjava.xml.soap_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
302156283Srwatsonjava.xml.soap_CLEAN := .properties
303156283Srwatson
304156283Srwatson################################################################################
305156283Srwatson
306156283Srwatsonjava.xml.ws_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
307156283Srwatsonjava.xml.ws_COPY := .xml
308156283Srwatsonjava.xml.ws_CLEAN := .properties
309156283Srwatson
310156283Srwatson################################################################################
311156283Srwatson
312156283Srwatsonjava.naming_CLEAN := jndiprovider.properties
313156283Srwatson
314156283Srwatson################################################################################
315156283Srwatson
316156283Srwatsonjava.security.saaj_CLEAN := .properties
317156283Srwatson
318156283Srwatson################################################################################
319156283Srwatson
320156283Srwatsonjava.xml.crypto_COPY := .dtd .xml
321156283Srwatsonjava.xml.crypto_CLEAN := .properties
322156283Srwatson
323156283Srwatson################################################################################
324156283Srwatson
325156283Srwatsonjdk.charsets_COPY := .dat
326156283Srwatson
327156283Srwatson################################################################################
328156283Srwatson
329156283Srwatsonjdk.compiler_COPY := javax.tools.JavaCompilerTool
330156283Srwatson
331156283Srwatson################################################################################
332156283Srwatson
333156283Srwatsonjdk.jcmd_COPY := _options 
334156283Srwatson
335156283Srwatson################################################################################
336156283Srwatson
337156283Srwatsonjdk.javadoc_COPY := .xml .css .js
338156283Srwatson
339156283Srwatson################################################################################
340156283Srwatson
341156283Srwatsonjdk.rmic_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
342156283Srwatsonjdk.rmic_CLEAN := .properties
343156283Srwatson
344156283Srwatson################################################################################
345156283Srwatson
346156283Srwatson# No SCTP implementation on Mac OS X or AIX. These classes should be excluded.
347156283SrwatsonSCTP_IMPL_CLASSES = \
348156283Srwatson    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/AssociationChange.java \
349156283Srwatson    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/AssociationImpl.java \
350156283Srwatson    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/PeerAddrChange.java \
351156283Srwatson    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/ResultContainer.java \
352156283Srwatson    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpChannelImpl.java \
353156283Srwatson    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpMultiChannelImpl.java \
354156283Srwatson    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpNet.java \
355156283Srwatson    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpNotification.java \
356156283Srwatson    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpServerChannelImpl.java \
357156283Srwatson    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SendFailed.java \
358156283Srwatson    $(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/Shutdown.java
359156283Srwatson
360156283Srwatsonifeq ($(OPENJDK_TARGET_OS), macosx)
361  jdk.sctp_EXCLUDE_FILES := $(SCTP_IMPL_CLASSES)
362endif
363
364ifeq ($(OPENJDK_TARGET_OS),aix)
365  # These files are duplicated in AIX_SRC_DIRS
366  jdk.sctp_EXCLUDE_FILES := $(SCTP_IMPL_CLASSES)
367endif
368
369################################################################################
370
371jdk.jconsole_COPY := .gif .png
372
373jdk.jconsole_CLEAN_FILES := $(wildcard \
374    $(JDK_TOPDIR)/src/jdk.jconsole/share/classes/sun/tools/jconsole/resources/*.properties)
375
376################################################################################
377
378jdk.compiler_CLEAN_FILES := $(wildcard \
379    $(patsubst %, $(JDK_TOPDIR)/src/jdk.compiler/share/classes/%/*.properties, \
380        sun/tools/serialver/resources))
381
382################################################################################
383
384jdk.jdi_EXCLUDES := \
385    com/sun/tools/example/debug/bdi \
386    com/sun/tools/example/debug/event \
387    com/sun/tools/example/debug/gui \
388    com/sun/jdi/doc-files \
389    #
390
391jdk.jdi_EXCLUDE_FILES += jdi-overview.html
392
393################################################################################
394
395jdk.dev_CLEAN_FILES := $(wildcard \
396    $(patsubst %, $(JDK_TOPDIR)/src/jdk.dev/share/classes/%/*.properties, \
397        com/sun/tools/script/shell))
398
399jdk.dev_COPY := .js oqlhelp.html .txt
400
401################################################################################
402
403ifneq ($(OPENJDK_TARGET_OS), solaris)
404  jdk.attach_EXCLUDE_FILES += \
405      sun/tools/attach/SolarisAttachProvider.java \
406      sun/tools/attach/SolarisVirtualMachine.java \
407      #
408endif
409
410ifneq ($(OPENJDK_TARGET_OS), linux)
411  jdk.attach_EXCLUDE_FILES += \
412      sun/tools/attach/LinuxAttachProvider.java \
413      sun/tools/attach/LinuxVirtualMachine.java \
414      #
415endif
416
417ifneq ($(OPENJDK_TARGET_OS), macosx)
418  jdk.attach_EXCLUDE_FILES += \
419      sun/tools/attach/BsdAttachProvider.java \
420      sun/tools/attach/BsdVirtualMachine.java \
421      #
422endif
423
424ifneq ($(OPENJDK_TARGET_OS),aix)
425  jdk.attach_EXCLUDE_FILES += \
426      sun/tools/attach/AixAttachProvider.java \
427      sun/tools/attach/AixVirtualMachine.java \
428      #
429endif
430
431################################################################################
432
433jdk.jvmstat_COPY := aliasmap
434
435################################################################################
436
437jdk.xml.bind_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
438jdk.xml.bind_CLEAN := .properties
439jdk.xml.bind_COPY := .xsd JAXBContextFactory.java ZeroOneBooleanAdapter.java
440
441################################################################################
442
443jdk.xml.ws_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
444jdk.xml.ws_CLEAN := .properties
445
446################################################################################
447
448sun.charsets_COPY := .dat
449
450################################################################################
451
452jdk.localedata_COPY := _dict _th
453# Exclude BreakIterator classes that are just used in compile process to generate
454# data files and shouldn't go in the product
455jdk.localedata_EXCLUDE_FILES := sun/text/resources/th/BreakIteratorRules_th.java
456
457################################################################################
458# Setup the compilation of each module
459#
460# Do not include nashorn src here since it needs to be compiled separately due
461# to nasgen.
462#
463# Order src dirs in order of override with the most important first. Generated
464# source before static source and platform specific source before shared.
465#
466# To use this variable, use $(call ALL_SRC_DIRS,module) with no space.
467GENERATED_SRC_DIRS += \
468    $(JDK_OUTPUTDIR)/gensrc/$1 \
469    $(LANGTOOLS_OUTPUTDIR)/gensrc/$1 \
470    $(CORBA_OUTPUTDIR)/gensrc/$1 \
471    $(JDK_OUTPUTDIR)/gensrc_no_srczip/$1 \
472    #
473
474OS_SRC_DIRS += $(JDK_TOPDIR)/src/$1/$(OPENJDK_TARGET_OS)/classes
475ifneq ($(OPENJDK_TARGET_OS), $(OPENJDK_TARGET_OS_API_DIR))
476OS_API_SRC_DIRS += $(JDK_TOPDIR)/src/$1/$(OPENJDK_TARGET_OS_API_DIR)/classes
477endif
478
479SHARE_SRC_DIRS += \
480    $(JDK_TOPDIR)/src/$1/share/classes \
481    $(LANGTOOLS_TOPDIR)/src/$1/share/classes \
482    $(CORBA_TOPDIR)/src/$1/share/classes \
483    $(JAXP_TOPDIR)/src/$1/share/classes \
484    $(JAXWS_TOPDIR)/src/$1/share/classes \
485    #
486
487ALL_SRC_DIRS = \
488    $(GENERATED_SRC_DIRS) \
489    $(OS_SRC_DIRS) \
490    $(OS_API_SRC_DIRS) \
491    $(SHARE_SRC_DIRS) \
492    #
493
494# Find all modules with java sources. Filter out nashorn since it needs to be
495# compiled separately.
496ALL_JAVA_MODULES := $(filter-out jdk.scripting.nashorn, $(call FindJavaModules))
497JAVA_MODULES := $(ALL_JAVA_MODULES)
498
499# The JDK_USER_DEFINED_FILTER is a poor man's incremental build: by specifying
500# JDK_FILTER at the make command line, only a subset of the JDK java files will
501# be recompiled. If multiple paths are separated by comma, convert that into a
502# space separated list.
503JDK_USER_DEFINED_FILTER := $(strip $(subst $(COMMA),$(SPACE), $(JDK_FILTER)))
504
505# This macro sets up compilation of a module and declares dependencies for it.
506# Param 1 - module name
507define SetupModuleCompilation
508  # Find the module dependencies by parsing modules.list file
509  $1_DEPS := $$(call FindDepsForModule, $1)
510
511  $1_CLASSPATH := $$(addprefix $(JDK_OUTPUTDIR)/modules/,$$($1_DEPS))
512  ifeq ($1, jdk.hotspot.agent)
513    ## The source of this module is compiled elsewhere, hotspot, and imported.
514    ## Service types are required in the classpath when compiing module-info
515    $1_CLASSPATH := $$($1_CLASSPATH) $$(addprefix $(JDK_OUTPUTDIR)/modules/,jdk.hotspot.agent)
516  endif
517  $1_CLASSPATH := $$(subst $$(SPACE),$$(PATH_SEP),$$($1_CLASSPATH))
518  $1_JAVAC_FLAGS := -bootclasspath "$$($1_CLASSPATH)"
519
520  $$(eval $$(call SetupJavaCompilation,$1, \
521      SETUP := $$(if $$($1_SETUP), $$($1_SETUP), GENERATE_JDKBYTECODE), \
522      SRC := $$(wildcard $$(call ALL_SRC_DIRS,$1)), \
523      INCLUDES:=$(JDK_USER_DEFINED_FILTER),\
524      BIN := $(JDK_OUTPUTDIR)/modules/$1, \
525      HEADERS := $(JDK_OUTPUTDIR)/gensrc_headers/$1, \
526      ADD_JAVAC_FLAGS := $$($1_JAVAC_FLAGS)))
527
528  $1: $$($1) $$($1_COPY_EXTRA)
529
530  # Declare dependencies between java compilation of different modules.
531  # Since not all modules have been declared yet, or might be declared
532  # in different invocations of this file, use the macro to find the 
533  # correct target file to depend on.
534  # Only the javac compilation actually depends on other modules so limit
535  # dependency declaration to that by using the *_COMPILE_TARGET variable.
536  $$($1_COMPILE_TARGETS): $$(foreach d,$$($1_DEPS), \
537      $$(call SetupJavaCompilationCompileTarget, $$d, $(JDK_OUTPUTDIR)/modules/$$d))
538endef
539
540# Setup compilation for each module
541$(foreach m,$(JAVA_MODULES),$(eval $(call SetupModuleCompilation,$m)))
542
543################################################################################
544# Copy zh_HK properties files from zh_TW
545
546$(JDK_OUTPUTDIR)/modules/%_zh_HK.properties: $(JDK_OUTPUTDIR)/modules/%_zh_TW.properties
547	$(install-file)
548
549define CreateHkTargets
550  $(patsubst $(JDK_TOPDIR)/src/%, $(JDK_OUTPUTDIR)/modules/%, \
551    $(subst /share/classes,, \
552      $(subst _zh_TW,_zh_HK, $(filter %_zh_TW.properties, $1))))
553endef
554
555java.sql.rowset: $(call CreateHkTargets, $(java.sql.rowset_CLEAN_FILES))
556java.rmi: $(call CreateHkTargets, $(java.rmi_CLEAN_FILES))
557
558all: $(JAVA_MODULES)
559
560.PHONY: all $(JAVA_MODULES)
561