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