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