25854
|
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 JavaCompilation.gmk
|
|
32 |
include 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 |
|
|
40 |
java.activation_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
|
|
41 |
|
|
42 |
################################################################################
|
|
43 |
|
|
44 |
java.base_COPY := .icu .dat .spp content-types.properties
|
|
45 |
java.base_CLEAN := intrinsic.properties
|
|
46 |
|
|
47 |
java.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
|
|
51 |
java.base_EXCLUDE_FILES += sun/text/resources/BreakIteratorRules.java
|
|
52 |
|
|
53 |
ifeq ($(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
|
|
65 |
endif
|
|
66 |
|
|
67 |
ifneq ($(OPENJDK_TARGET_OS), solaris)
|
|
68 |
java.base_EXCLUDE_FILES += \
|
|
69 |
SolarisLoginModule.java \
|
|
70 |
SolarisSystem.java \
|
|
71 |
#
|
|
72 |
endif
|
|
73 |
|
|
74 |
ifeq ($(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
|
|
79 |
endif
|
|
80 |
|
|
81 |
ifeq ($(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 |
#
|
|
87 |
endif
|
|
88 |
|
|
89 |
################################################################################
|
|
90 |
|
|
91 |
java.desktop_COPY := .gif .png .wav .txt .xml .css flavormap.properties
|
|
92 |
java.desktop_CLEAN := iio-plugin.properties
|
|
93 |
|
|
94 |
java.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 |
|
|
111 |
java.desktop_COPY_EXTRA += $(COPY_BEANINFO)
|
|
112 |
|
|
113 |
java.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 |
|
|
140 |
ifeq ($(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 |
#
|
|
146 |
else
|
|
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
|
|
191 |
endif
|
|
192 |
|
|
193 |
ifeq ($(OPENJDK_TARGET_OS), windows)
|
|
194 |
java.desktop_EXCLUDES += com/sun/java/swing/plaf/gtk
|
|
195 |
endif
|
|
196 |
|
|
197 |
ifdef BUILD_HEADLESS_ONLY
|
|
198 |
java.desktop_EXCLUDES += sun/applet
|
|
199 |
endif
|
|
200 |
|
|
201 |
# Why is this in the open source tree?
|
|
202 |
ifdef OPENJDK
|
|
203 |
java.desktop_EXCLUDES += sun/dc
|
|
204 |
endif
|
|
205 |
|
|
206 |
# Used on windows and macosx
|
|
207 |
ifeq ($(filter $(OPENJDK_TARGET_OS), windows macosx), )
|
|
208 |
java.desktop_EXCLUDE_FILES += sun/awt/AWTCharset.java
|
|
209 |
endif
|
|
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.
|
|
218 |
java.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 |
|
|
228 |
ifeq ($(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 |
#
|
|
233 |
endif
|
|
234 |
|
|
235 |
################################################################################
|
|
236 |
|
|
237 |
java.sql_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
|
|
238 |
|
|
239 |
################################################################################
|
|
240 |
|
|
241 |
java.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
|
|
247 |
java.management_EXCLUDES := com/sun/jmx/remote/protocol/iiop
|
|
248 |
|
|
249 |
# Why is this in the open source tree?
|
|
250 |
ifdef OPENJDK
|
|
251 |
java.management_EXCLUDES := \
|
|
252 |
com/sun/jmx/snmp \
|
|
253 |
sun/management/snmp \
|
|
254 |
#
|
|
255 |
endif
|
|
256 |
|
|
257 |
ifeq ($(RMICONNECTOR_IIOP), false)
|
|
258 |
java.management_EXCLUDES += com/sun/jmx/remote/protocol/iiop
|
|
259 |
endif
|
|
260 |
|
|
261 |
################################################################################
|
|
262 |
|
|
263 |
java.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 |
|
|
269 |
java.corba_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
|
|
270 |
|
|
271 |
java.corba_COPY := .prp
|
|
272 |
java.corba_CLEAN := .properties
|
|
273 |
|
|
274 |
java.corba_EXCLUDES := \
|
|
275 |
com/sun/corba/se/PortableActivationIDL \
|
|
276 |
com/sun/tools/corba/se/logutil \
|
|
277 |
#
|
|
278 |
java.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 |
|
|
290 |
java.xml_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
|
|
291 |
java.xml_CLEAN := .properties
|
|
292 |
|
|
293 |
################################################################################
|
|
294 |
|
|
295 |
java.xml.bind_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
|
|
296 |
java.xml.bind_CLEAN := .properties
|
|
297 |
|
|
298 |
################################################################################
|
|
299 |
|
|
300 |
java.xml.soap_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
|
|
301 |
java.xml.soap_CLEAN := .properties
|
|
302 |
|
|
303 |
################################################################################
|
|
304 |
|
|
305 |
java.xml.ws_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
|
|
306 |
java.xml.ws_COPY := .xml
|
|
307 |
java.xml.ws_CLEAN := .properties
|
|
308 |
|
|
309 |
################################################################################
|
|
310 |
|
|
311 |
java.naming_CLEAN := jndiprovider.properties
|
|
312 |
|
|
313 |
################################################################################
|
|
314 |
|
|
315 |
java.security.saaj_CLEAN := .properties
|
|
316 |
|
|
317 |
################################################################################
|
|
318 |
|
|
319 |
java.xml.crypto_COPY := .dtd .xml
|
|
320 |
java.xml.crypto_CLEAN := .properties
|
|
321 |
|
|
322 |
################################################################################
|
|
323 |
|
|
324 |
jdk.charsets_COPY := .dat
|
|
325 |
|
|
326 |
################################################################################
|
|
327 |
|
|
328 |
jdk.compiler_COPY := javax.tools.JavaCompilerTool
|
|
329 |
|
|
330 |
################################################################################
|
|
331 |
|
|
332 |
jdk.jcmd_COPY := _options
|
|
333 |
|
|
334 |
################################################################################
|
|
335 |
|
|
336 |
jdk.javadoc_COPY := .xml .css .js
|
|
337 |
|
|
338 |
################################################################################
|
|
339 |
|
|
340 |
jdk.rmic_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
|
|
341 |
jdk.rmic_CLEAN := .properties
|
|
342 |
|
|
343 |
################################################################################
|
|
344 |
|
|
345 |
# No SCTP implementation on Mac OS X or AIX. These classes should be excluded.
|
|
346 |
SCTP_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 |
|
|
359 |
ifeq ($(OPENJDK_TARGET_OS), macosx)
|
|
360 |
jdk.sctp_EXCLUDE_FILES := $(SCTP_IMPL_CLASSES)
|
|
361 |
endif
|
|
362 |
|
|
363 |
ifeq ($(OPENJDK_TARGET_OS),aix)
|
|
364 |
# These files are duplicated in AIX_SRC_DIRS
|
|
365 |
jdk.sctp_EXCLUDE_FILES := $(SCTP_IMPL_CLASSES)
|
|
366 |
endif
|
|
367 |
|
|
368 |
################################################################################
|
|
369 |
|
|
370 |
jdk.jconsole_COPY := .gif .png
|
|
371 |
|
|
372 |
jdk.jconsole_CLEAN_FILES := $(wildcard \
|
|
373 |
$(JDK_TOPDIR)/src/jdk.jconsole/share/classes/sun/tools/jconsole/resources/*.properties)
|
|
374 |
|
|
375 |
################################################################################
|
|
376 |
|
|
377 |
jdk.compiler_CLEAN_FILES := $(wildcard \
|
|
378 |
$(patsubst %, $(JDK_TOPDIR)/src/jdk.compiler/share/classes/%/*.properties, \
|
|
379 |
sun/tools/serialver/resources))
|
|
380 |
|
|
381 |
################################################################################
|
|
382 |
|
|
383 |
jdk.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 |
|
|
390 |
jdk.jdi_EXCLUDE_FILES += jdi-overview.html
|
|
391 |
|
|
392 |
################################################################################
|
|
393 |
|
|
394 |
jdk.dev_CLEAN_FILES := $(wildcard \
|
|
395 |
$(patsubst %, $(JDK_TOPDIR)/src/jdk.dev/share/classes/%/*.properties, \
|
|
396 |
com/sun/tools/script/shell))
|
|
397 |
|
|
398 |
jdk.dev_COPY := .js oqlhelp.html .txt
|
|
399 |
|
|
400 |
################################################################################
|
|
401 |
|
|
402 |
ifneq ($(OPENJDK_TARGET_OS), solaris)
|
|
403 |
jdk.attach_EXCLUDE_FILES += \
|
|
404 |
sun/tools/attach/SolarisAttachProvider.java \
|
|
405 |
sun/tools/attach/SolarisVirtualMachine.java \
|
|
406 |
#
|
|
407 |
endif
|
|
408 |
|
|
409 |
ifneq ($(OPENJDK_TARGET_OS), linux)
|
|
410 |
jdk.attach_EXCLUDE_FILES += \
|
|
411 |
sun/tools/attach/LinuxAttachProvider.java \
|
|
412 |
sun/tools/attach/LinuxVirtualMachine.java \
|
|
413 |
#
|
|
414 |
endif
|
|
415 |
|
|
416 |
ifneq ($(OPENJDK_TARGET_OS), macosx)
|
|
417 |
jdk.attach_EXCLUDE_FILES += \
|
|
418 |
sun/tools/attach/BsdAttachProvider.java \
|
|
419 |
sun/tools/attach/BsdVirtualMachine.java \
|
|
420 |
#
|
|
421 |
endif
|
|
422 |
|
|
423 |
ifneq ($(OPENJDK_TARGET_OS),aix)
|
|
424 |
jdk.attach_EXCLUDE_FILES += \
|
|
425 |
sun/tools/attach/AixAttachProvider.java \
|
|
426 |
sun/tools/attach/AixVirtualMachine.java \
|
|
427 |
#
|
|
428 |
endif
|
|
429 |
|
|
430 |
################################################################################
|
|
431 |
|
|
432 |
jdk.jvmstat_COPY := aliasmap
|
|
433 |
|
|
434 |
################################################################################
|
|
435 |
|
|
436 |
jdk.xml.bind_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
|
|
437 |
jdk.xml.bind_CLEAN := .properties
|
|
438 |
jdk.xml.bind_COPY := .xsd JAXBContextFactory.java ZeroOneBooleanAdapter.java
|
|
439 |
|
|
440 |
################################################################################
|
|
441 |
|
|
442 |
jdk.xml.ws_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS
|
|
443 |
jdk.xml.ws_CLEAN := .properties
|
|
444 |
|
|
445 |
################################################################################
|
|
446 |
|
|
447 |
sun.charsets_COPY := .dat
|
|
448 |
|
|
449 |
################################################################################
|
|
450 |
|
|
451 |
jdk.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
|
|
454 |
jdk.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.
|
|
466 |
GENERATED_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 |
|
|
473 |
OS_SRC_DIRS += $(JDK_TOPDIR)/src/$1/$(OPENJDK_TARGET_OS)/classes
|
|
474 |
ifneq ($(OPENJDK_TARGET_OS), $(OPENJDK_TARGET_OS_API_DIR))
|
|
475 |
OS_API_SRC_DIRS += $(JDK_TOPDIR)/src/$1/$(OPENJDK_TARGET_OS_API_DIR)/classes
|
|
476 |
endif
|
|
477 |
|
|
478 |
SHARE_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 |
|
|
486 |
ALL_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.
|
|
495 |
ALL_JAVA_MODULES := $(filter-out jdk.scripting.nashorn, $(call FindJavaModules))
|
|
496 |
JAVA_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.
|
|
502 |
JDK_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
|
|
506 |
define 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))
|
|
537 |
endef
|
|
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 |
|
|
548 |
define CreateHkTargets
|
|
549 |
$(patsubst $(JDK_TOPDIR)/src/%, $(JDK_OUTPUTDIR)/modules/%, \
|
|
550 |
$(subst /share/classes,, \
|
|
551 |
$(subst _zh_TW,_zh_HK, $(filter %_zh_TW.properties, $1))))
|
|
552 |
endef
|
|
553 |
|
|
554 |
java.sql.rowset: $(call CreateHkTargets, $(java.sql.rowset_CLEAN_FILES))
|
|
555 |
java.rmi: $(call CreateHkTargets, $(java.rmi_CLEAN_FILES))
|
|
556 |
|
|
557 |
all: $(JAVA_MODULES)
|
|
558 |
|
|
559 |
.PHONY: all $(JAVA_MODULES)
|