author | mkos |
Fri, 21 Feb 2014 17:37:39 +0100 | |
changeset 23962 | 99b559663ecb |
parent 23586 | bb12b5f40a86 |
child 24040 | 314ab00b353c |
permissions | -rw-r--r-- |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
23010
6dadb192ad81
8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents:
22967
diff
changeset
|
2 |
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
4 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
10 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
15 |
# accompanied this code). |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
16 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
20 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
23 |
# questions. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
24 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
25 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
26 |
default: all |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
27 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
28 |
include $(SPEC) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
29 |
include MakeBase.gmk |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
30 |
include JavaCompilation.gmk |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
31 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
32 |
# Setup the java compilers for the JDK build. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
33 |
include Setup.gmk |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
34 |
|
12892 | 35 |
JARS := |
36 |
EXFILES := |
|
37 |
EXCLUDES := |
|
38 |
||
39 |
########################################################################################## |
|
40 |
||
20547 | 41 |
EXCLUDES += com/sun/pept \ |
42 |
com/sun/tools/example/trace \ |
|
43 |
com/sun/tools/example/debug/bdi \ |
|
44 |
com/sun/tools/example/debug/event \ |
|
45 |
com/sun/tools/example/debug/gui |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
46 |
|
22937
f28798de1e6f
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22611
diff
changeset
|
47 |
ifeq ($(RMICONNECTOR_IIOP), false) |
f28798de1e6f
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22611
diff
changeset
|
48 |
EXCLUDES += com/sun/jmx/remote/protocol/iiop |
f28798de1e6f
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22611
diff
changeset
|
49 |
endif |
f28798de1e6f
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22611
diff
changeset
|
50 |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
51 |
ifdef OPENJDK |
20547 | 52 |
EXCLUDES += sun/dc \ |
53 |
com/sun/jmx/snmp \ |
|
54 |
sun/management/snmp \ |
|
55 |
com/sun/script |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
56 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
57 |
|
12892 | 58 |
ifndef OPENJDK |
20547 | 59 |
# There exists two versions of this file... |
60 |
EXFILES := $(JDK_TOPDIR)/src/share/classes/javax/crypto/JarVerifier.java |
|
13702 | 61 |
|
20547 | 62 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
63 |
# This gets built on unix platforms implicitly in the old build even though |
|
64 |
# it's excluded in the closed build. |
|
65 |
EXCLUDES += sun/java2d/pisces |
|
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14708
diff
changeset
|
66 |
|
20547 | 67 |
# AccessBridge is compiled separately below. |
68 |
EXFILES += AccessBridge.java \ |
|
69 |
AccessBridgeLoader.java \ |
|
70 |
com/sun/java/accessibility/util/java/awt/ChoiceTranslator.java |
|
71 |
# This seems to never be built |
|
72 |
EXCLUDES += com/sun/java/accessibility/extensions |
|
73 |
endif |
|
13702 | 74 |
|
12892 | 75 |
endif |
76 |
||
20547 | 77 |
ifneq ($(OPENJDK_TARGET_OS), solaris) |
78 |
# Exclude Solaris nio and two security related files in src/share/classes |
|
79 |
EXFILES += SolarisAclFileAttributeView.java \ |
|
80 |
SolarisFileStore.java \ |
|
81 |
SolarisFileSystem.java \ |
|
82 |
SolarisFileSystemProvider.java \ |
|
83 |
SolarisNativeDispatcher.java \ |
|
84 |
SolarisUserDefinedFileAttributeView.java \ |
|
85 |
SolarisWatchService.java \ |
|
86 |
SolarisAclFileAttributeView.java \ |
|
87 |
SolarisLoginModule.java \ |
|
88 |
SolarisSystem.java \ |
|
89 |
sun/nio/ch/DevPollArrayWrapper.java \ |
|
90 |
sun/nio/ch/DevPollSelectorImpl.java \ |
|
91 |
sun/nio/ch/DevPollSelectorProvider.java \ |
|
92 |
sun/nio/ch/EventPortSelectorImpl.java \ |
|
93 |
sun/nio/ch/EventPortSelectorProvider.java \ |
|
94 |
sun/nio/ch/EventPortWrapper.java \ |
|
95 |
sun/nio/ch/SolarisAsynchronousChannelProvider.java \ |
|
96 |
sun/nio/ch/SolarisEventPort.java \ |
|
97 |
sun/tools/attach/SolarisAttachProvider.java \ |
|
98 |
sun/tools/attach/SolarisVirtualMachine.java |
|
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
14708
diff
changeset
|
99 |
|
20547 | 100 |
EXCLUDES += com/oracle/security |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
101 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
102 |
|
20547 | 103 |
ifneq ($(OPENJDK_TARGET_OS), windows) |
104 |
# Exclude Window security related files in src/share/classes |
|
105 |
EXFILES += NTLoginModule.java \ |
|
106 |
NTSystem.java |
|
13702 | 107 |
else |
20547 | 108 |
EXFILES += UnixLoginModule.java \ |
109 |
UnixSystem.java |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
110 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
111 |
|
20547 | 112 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
113 |
# Don't build GTK L&F on Windows |
|
114 |
EXCLUDES += com/sun/java/swing/plaf/gtk |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
115 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
116 |
|
20547 | 117 |
ifneq ($(OPENJDK_TARGET_OS), linux) |
118 |
EXFILES += sun/tools/attach/LinuxAttachProvider.java \ |
|
119 |
sun/tools/attach/LinuxVirtualMachine.java \ |
|
120 |
sun/nio/ch/EPoll.java \ |
|
121 |
sun/nio/ch/EPollArrayWrapper.java \ |
|
122 |
sun/nio/ch/EPollPort.java \ |
|
123 |
sun/nio/ch/EPollSelectorImpl.java \ |
|
124 |
sun/nio/ch/EPollSelectorProvider.java \ |
|
125 |
sun/nio/ch/LinuxAsynchronousChannelProvider.java \ |
|
126 |
sun/nio/fs/LinuxDosFileAttributeView.java \ |
|
127 |
sun/nio/fs/LinuxFileStore.java \ |
|
128 |
sun/nio/fs/LinuxFileSystem.java \ |
|
129 |
sun/nio/fs/LinuxFileSystemProvider.java \ |
|
130 |
sun/nio/fs/MagicFileTypeDetector.java \ |
|
131 |
sun/nio/fs/LinuxNativeDispatcher.java \ |
|
132 |
sun/nio/fs/LinuxUserDefinedFileAttributeView.java \ |
|
133 |
sun/nio/fs/LinuxWatchService.java |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
134 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
135 |
|
20547 | 136 |
ifneq ($(OPENJDK_TARGET_OS), macosx) |
137 |
EXFILES += sun/nio/ch/BsdAsynchronousChannelProvider.java \ |
|
138 |
sun/nio/ch/KQueue.java \ |
|
139 |
sun/nio/ch/KQueuePort.java \ |
|
140 |
sun/nio/fs/BsdFileStore.java \ |
|
141 |
sun/nio/fs/BsdFileSystem.java \ |
|
142 |
sun/nio/fs/BsdFileSystemProvider.java \ |
|
143 |
sun/nio/fs/BsdNativeDispatcher.java \ |
|
144 |
sun/nio/fs/MacOSXFileSystemProvider.java \ |
|
145 |
sun/nio/fs/MacOSXFileSystem.java \ |
|
146 |
sun/nio/fs/MacOSXNativeDispatcher.java \ |
|
147 |
sun/tools/attach/BsdAttachProvider.java \ |
|
148 |
sun/tools/attach/BsdVirtualMachine.java |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
149 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
150 |
|
22593
938340719ac2
8024900: PPC64: Enable new build on AIX (jdk part)
simonis
parents:
17922
diff
changeset
|
151 |
ifneq ($(OPENJDK_TARGET_OS),aix) |
938340719ac2
8024900: PPC64: Enable new build on AIX (jdk part)
simonis
parents:
17922
diff
changeset
|
152 |
EXFILES+=sun/nio/ch/AixAsynchronousChannelProvider.java \ |
938340719ac2
8024900: PPC64: Enable new build on AIX (jdk part)
simonis
parents:
17922
diff
changeset
|
153 |
sun/nio/ch/AixPollPort.java \ |
938340719ac2
8024900: PPC64: Enable new build on AIX (jdk part)
simonis
parents:
17922
diff
changeset
|
154 |
sun/nio/fs/AixFileStore.java \ |
938340719ac2
8024900: PPC64: Enable new build on AIX (jdk part)
simonis
parents:
17922
diff
changeset
|
155 |
sun/nio/fs/AixFileSystem.java \ |
938340719ac2
8024900: PPC64: Enable new build on AIX (jdk part)
simonis
parents:
17922
diff
changeset
|
156 |
sun/nio/fs/AixFileSystemProvider.java \ |
22595
aaa6b141196c
8028066: PPC64: 8025715 changes broke AIX build after sync
simonis
parents:
22594
diff
changeset
|
157 |
sun/nio/fs/AixNativeDispatcher.java \ |
aaa6b141196c
8028066: PPC64: 8025715 changes broke AIX build after sync
simonis
parents:
22594
diff
changeset
|
158 |
sun/tools/attach/AixAttachProvider.java \ |
aaa6b141196c
8028066: PPC64: 8025715 changes broke AIX build after sync
simonis
parents:
22594
diff
changeset
|
159 |
sun/tools/attach/AixVirtualMachine.java |
22593
938340719ac2
8024900: PPC64: Enable new build on AIX (jdk part)
simonis
parents:
17922
diff
changeset
|
160 |
endif |
938340719ac2
8024900: PPC64: Enable new build on AIX (jdk part)
simonis
parents:
17922
diff
changeset
|
161 |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
162 |
# Exclude BreakIterator classes that are just used in compile process to generate |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
163 |
# data files and shouldn't go in the product |
20547 | 164 |
EXFILES += sun/text/resources/BreakIteratorRules.java \ |
165 |
sun/text/resources/BreakIteratorRules_th.java |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
166 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
167 |
# TODO: Add BUILD_HEADLESS_ONLY to configure? |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
168 |
ifdef BUILD_HEADLESS_ONLY |
20547 | 169 |
EXCLUDES += sun/applet |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
170 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
171 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
172 |
ifdef OPENJDK |
20547 | 173 |
EXCLUDES += sun/java2d/cmm/kcms |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
174 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
175 |
|
12892 | 176 |
# Used on windows and macosx |
20547 | 177 |
ifeq (, $(filter $(OPENJDK_TARGET_OS), windows macosx)) |
178 |
EXFILES += sun/awt/AWTCharset.java |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
179 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
180 |
|
21130 | 181 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
182 |
# exclude all X11 on Mac, we can't exclude some like below or we'll have compilation errors |
|
183 |
EXCLUDES += sun/awt/X11 |
|
184 |
else |
|
185 |
# TBD: figure out how to eliminate this long list |
|
20547 | 186 |
EXFILES += sun/awt/X11/ScreenFormat.java \ |
187 |
sun/awt/X11/XArc.java \ |
|
188 |
sun/awt/X11/XChar2b.java \ |
|
189 |
sun/awt/X11/XCharStruct.java \ |
|
190 |
sun/awt/X11/XClassHint.java \ |
|
191 |
sun/awt/X11/XComposeStatus.java \ |
|
192 |
sun/awt/X11/XExtCodes.java \ |
|
193 |
sun/awt/X11/XFontProp.java \ |
|
194 |
sun/awt/X11/XFontSetExtents.java \ |
|
195 |
sun/awt/X11/XFontStruct.java \ |
|
196 |
sun/awt/X11/XGCValues.java \ |
|
197 |
sun/awt/X11/XHostAddress.java \ |
|
198 |
sun/awt/X11/XIMCallback.java \ |
|
199 |
sun/awt/X11/XIMHotKeyTrigger.java \ |
|
200 |
sun/awt/X11/XIMHotKeyTriggers.java \ |
|
201 |
sun/awt/X11/XIMPreeditCaretCallbackStruct.java \ |
|
202 |
sun/awt/X11/XIMPreeditDrawCallbackStruct.java \ |
|
203 |
sun/awt/X11/XIMPreeditStateNotifyCallbackStruct.java \ |
|
204 |
sun/awt/X11/XIMStatusDrawCallbackStruct.java \ |
|
205 |
sun/awt/X11/XIMStringConversionCallbackStruct.java \ |
|
206 |
sun/awt/X11/XIMStringConversionText.java \ |
|
207 |
sun/awt/X11/XIMStyles.java \ |
|
208 |
sun/awt/X11/XIMText.java \ |
|
209 |
sun/awt/X11/XIMValuesList.java \ |
|
210 |
sun/awt/X11/XImage.java \ |
|
211 |
sun/awt/X11/XKeyboardControl.java \ |
|
212 |
sun/awt/X11/XKeyboardState.java \ |
|
213 |
sun/awt/X11/XOMCharSetList.java \ |
|
214 |
sun/awt/X11/XOMFontInfo.java \ |
|
215 |
sun/awt/X11/XOMOrientation.java \ |
|
216 |
sun/awt/X11/XPoint.java \ |
|
217 |
sun/awt/X11/XRectangle.java \ |
|
218 |
sun/awt/X11/XSegment.java \ |
|
219 |
sun/awt/X11/XStandardColormap.java \ |
|
220 |
sun/awt/X11/XTextItem.java \ |
|
221 |
sun/awt/X11/XTextItem16.java \ |
|
222 |
sun/awt/X11/XTextProperty.java \ |
|
223 |
sun/awt/X11/XTimeCoord.java \ |
|
224 |
sun/awt/X11/XWindowChanges.java \ |
|
225 |
sun/awt/X11/XdbeSwapInfo.java \ |
|
226 |
sun/awt/X11/XmbTextItem.java \ |
|
227 |
sun/awt/X11/XwcTextItem.java |
|
12892 | 228 |
endif |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
229 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
230 |
# Exclude another implicitly not included file. |
20547 | 231 |
EXFILES += sun/util/locale/AsciiUtil.java |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
232 |
|
22605
dba3d6b22818
8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents:
22598
diff
changeset
|
233 |
ifeq (, $(filter $(OPENJDK_TARGET_OS), solaris macosx aix)) |
20547 | 234 |
# |
22605
dba3d6b22818
8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents:
22598
diff
changeset
|
235 |
# only solaris, macosx and aix |
20547 | 236 |
# |
237 |
EXFILES += sun/nio/fs/PollingWatchService.java |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
238 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
239 |
|
13164 | 240 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
20547 | 241 |
EXFILES += sun/nio/ch/AbstractPollSelectorImpl.java \ |
242 |
sun/nio/ch/PollSelectorProvider.java \ |
|
243 |
sun/nio/ch/SimpleAsynchronousFileChannelImpl.java |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
244 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
245 |
|
15130
14a47a69bc62
8005694: build-infra: Cleanup of misc changes in build-infra
erikj
parents:
15128
diff
changeset
|
246 |
# These files do not appear in the build result of the old build. This |
14a47a69bc62
8005694: build-infra: Cleanup of misc changes in build-infra
erikj
parents:
15128
diff
changeset
|
247 |
# is because they are generated sources, but the AUTO_JAVA_FILES won't |
20547 | 248 |
# pick them up since they aren't generated when the source dirs are |
15130
14a47a69bc62
8005694: build-infra: Cleanup of misc changes in build-infra
erikj
parents:
15128
diff
changeset
|
249 |
# searched and they aren't referenced by any other classes so they won't |
14a47a69bc62
8005694: build-infra: Cleanup of misc changes in build-infra
erikj
parents:
15128
diff
changeset
|
250 |
# be picked up by implicit compilation. On a rebuild, they are picked up |
20547 | 251 |
# and compiled. Exclude them here to produce the same rt.jar as the old |
15130
14a47a69bc62
8005694: build-infra: Cleanup of misc changes in build-infra
erikj
parents:
15128
diff
changeset
|
252 |
# build does when building just once. |
20547 | 253 |
EXFILES += javax/swing/plaf/nimbus/InternalFrameTitlePanePainter.java \ |
254 |
javax/swing/plaf/nimbus/OptionPaneMessageAreaPainter.java \ |
|
255 |
javax/swing/plaf/nimbus/ScrollBarPainter.java \ |
|
256 |
javax/swing/plaf/nimbus/SliderPainter.java \ |
|
257 |
javax/swing/plaf/nimbus/SpinnerPainter.java \ |
|
258 |
javax/swing/plaf/nimbus/SplitPanePainter.java \ |
|
259 |
javax/swing/plaf/nimbus/TabbedPanePainter.java |
|
12892 | 260 |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
261 |
# Acquire a list of files that should be copied straight over to the classes. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
262 |
include CopyIntoClasses.gmk |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
263 |
# Now we have COPY_PATTERNS, COPY_FILES and COPY_EXTRA |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
264 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
265 |
ifndef OPENJDK |
20547 | 266 |
CLOSED_SRC_DIRS := $(JDK_TOPDIR)/src/closed/share/classes \ |
267 |
$(JDK_TOPDIR)/src/closed/$(OPENJDK_TARGET_OS_API_DIR)/classes |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
268 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
269 |
|
23586
bb12b5f40a86
8038459: Remove superflous classes on platforms without an implementation [macosx, aix]
chegar
parents:
23331
diff
changeset
|
270 |
# No SCTP implementation on Mac OS X or AIX. These classes should be excluded. |
bb12b5f40a86
8038459: Remove superflous classes on platforms without an implementation [macosx, aix]
chegar
parents:
23331
diff
changeset
|
271 |
SCTP_IMPL_CLASSES = \ |
bb12b5f40a86
8038459: Remove superflous classes on platforms without an implementation [macosx, aix]
chegar
parents:
23331
diff
changeset
|
272 |
$(JDK_TOPDIR)/src/solaris/classes/sun/nio/ch/sctp/AssociationChange.java\ |
bb12b5f40a86
8038459: Remove superflous classes on platforms without an implementation [macosx, aix]
chegar
parents:
23331
diff
changeset
|
273 |
$(JDK_TOPDIR)/src/solaris/classes/sun/nio/ch/sctp/AssociationImpl.java \ |
bb12b5f40a86
8038459: Remove superflous classes on platforms without an implementation [macosx, aix]
chegar
parents:
23331
diff
changeset
|
274 |
$(JDK_TOPDIR)/src/solaris/classes/sun/nio/ch/sctp/PeerAddrChange.java \ |
bb12b5f40a86
8038459: Remove superflous classes on platforms without an implementation [macosx, aix]
chegar
parents:
23331
diff
changeset
|
275 |
$(JDK_TOPDIR)/src/solaris/classes/sun/nio/ch/sctp/ResultContainer.java \ |
bb12b5f40a86
8038459: Remove superflous classes on platforms without an implementation [macosx, aix]
chegar
parents:
23331
diff
changeset
|
276 |
$(JDK_TOPDIR)/src/solaris/classes/sun/nio/ch/sctp/SctpChannelImpl.java \ |
bb12b5f40a86
8038459: Remove superflous classes on platforms without an implementation [macosx, aix]
chegar
parents:
23331
diff
changeset
|
277 |
$(JDK_TOPDIR)/src/solaris/classes/sun/nio/ch/sctp/SctpMultiChannelImpl.java \ |
bb12b5f40a86
8038459: Remove superflous classes on platforms without an implementation [macosx, aix]
chegar
parents:
23331
diff
changeset
|
278 |
$(JDK_TOPDIR)/src/solaris/classes/sun/nio/ch/sctp/SctpNet.java \ |
bb12b5f40a86
8038459: Remove superflous classes on platforms without an implementation [macosx, aix]
chegar
parents:
23331
diff
changeset
|
279 |
$(JDK_TOPDIR)/src/solaris/classes/sun/nio/ch/sctp/SctpNotification.java \ |
bb12b5f40a86
8038459: Remove superflous classes on platforms without an implementation [macosx, aix]
chegar
parents:
23331
diff
changeset
|
280 |
$(JDK_TOPDIR)/src/solaris/classes/sun/nio/ch/sctp/SctpServerChannelImpl.java \ |
bb12b5f40a86
8038459: Remove superflous classes on platforms without an implementation [macosx, aix]
chegar
parents:
23331
diff
changeset
|
281 |
$(JDK_TOPDIR)/src/solaris/classes/sun/nio/ch/sctp/SendFailed.java \ |
bb12b5f40a86
8038459: Remove superflous classes on platforms without an implementation [macosx, aix]
chegar
parents:
23331
diff
changeset
|
282 |
$(JDK_TOPDIR)/src/solaris/classes/sun/nio/ch/sctp/Shutdown.java |
bb12b5f40a86
8038459: Remove superflous classes on platforms without an implementation [macosx, aix]
chegar
parents:
23331
diff
changeset
|
283 |
|
12892 | 284 |
MACOSX_SRC_DIRS := |
20547 | 285 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
286 |
MACOSX_SRC_DIRS += $(JDK_TOPDIR)/src/macosx/classes |
|
12892 | 287 |
|
20547 | 288 |
# this files are duplicated in MACOSX_SRC_DIRS |
289 |
EXFILES += $(JDK_TOPDIR)/src/solaris/classes/sun/nio/ch/DefaultSelectorProvider.java \ |
|
290 |
$(JDK_TOPDIR)/src/solaris/classes/sun/java2d/BackBufferCapsProvider.java \ |
|
291 |
$(JDK_TOPDIR)/src/solaris/classes/java/net/DefaultInterface.java \ |
|
292 |
$(JDK_TOPDIR)/src/solaris/classes/java/lang/ClassLoaderHelper.java \ |
|
293 |
$(JDK_TOPDIR)/src/solaris/classes/sun/util/locale/provider/HostLocaleProviderAdapterImpl.java \ |
|
20884 | 294 |
$(JDK_TOPDIR)/src/solaris/classes/sun/nio/fs/GnomeFileTypeDetector.java \ |
23586
bb12b5f40a86
8038459: Remove superflous classes on platforms without an implementation [macosx, aix]
chegar
parents:
23331
diff
changeset
|
295 |
EXFILES += $(SCTP_IMPL_CLASSES) |
13164 | 296 |
|
12892 | 297 |
endif |
298 |
||
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
299 |
# The security classes should not end up in the classes directory as that will prevent them |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
300 |
# from working when running the exploded jdk image. Compile them separately to a different |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
301 |
# directory from where the jars can be created. |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
302 |
SECURITY_PKGS := \ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
303 |
com/oracle/security/ucrypto \ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
304 |
com/sun/crypto/provider \ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
305 |
javax/crypto \ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
306 |
sun/security/ec \ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
307 |
sun/security/internal \ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
308 |
sun/security/mscapi \ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
309 |
sun/security/pkcs11 \ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
310 |
# |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
311 |
|
22595
aaa6b141196c
8028066: PPC64: 8025715 changes broke AIX build after sync
simonis
parents:
22594
diff
changeset
|
312 |
AIX_SRC_DIRS := |
aaa6b141196c
8028066: PPC64: 8025715 changes broke AIX build after sync
simonis
parents:
22594
diff
changeset
|
313 |
ifeq ($(OPENJDK_TARGET_OS),aix) |
aaa6b141196c
8028066: PPC64: 8025715 changes broke AIX build after sync
simonis
parents:
22594
diff
changeset
|
314 |
AIX_SRC_DIRS += $(JDK_TOPDIR)/src/aix/classes |
22605
dba3d6b22818
8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents:
22598
diff
changeset
|
315 |
|
dba3d6b22818
8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents:
22598
diff
changeset
|
316 |
# these files are duplicated in AIX_SRC_DIRS |
23586
bb12b5f40a86
8038459: Remove superflous classes on platforms without an implementation [macosx, aix]
chegar
parents:
23331
diff
changeset
|
317 |
EXFILES += $(SCTP_IMPL_CLASSES) |
22595
aaa6b141196c
8028066: PPC64: 8025715 changes broke AIX build after sync
simonis
parents:
22594
diff
changeset
|
318 |
endif |
aaa6b141196c
8028066: PPC64: 8025715 changes broke AIX build after sync
simonis
parents:
22594
diff
changeset
|
319 |
|
13702 | 320 |
# The JDK_USER_DEFINED_FILTER is a poor man's incremental build: by specifying |
321 |
# JDK_FILTER at the make command line, only a subset of the JDK java files will |
|
322 |
# be recompiled. If multiple paths are separated by comma, convert that into a |
|
323 |
# space separated list. |
|
20547 | 324 |
JDK_USER_DEFINED_FILTER := $(strip $(subst $(COMMA),$(SPACE), $(JDK_FILTER))) |
13702 | 325 |
|
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
326 |
ifeq ($(ENABLE_SJAVAC),yes) |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
327 |
# With sjavac enabled, excluded sources are not even considered for linking. |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
328 |
# Explicitly add the security sources to sourcepath for linking. |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
329 |
BUILD_JDK_SOURCEPATH:=$(patsubst %,-i$(SPACE)%.*,$(subst /,.,$(SECURITY_PKGS))) \ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
330 |
-sourcepath $(JDK_TOPDIR)/src/share/classes |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
331 |
endif |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
332 |
|
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
333 |
$(eval $(call SetupJavaCompilation,BUILD_JDK,\ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
334 |
SETUP:=GENERATE_JDKBYTECODE,\ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
335 |
SRC:=$(JDK_TOPDIR)/src/share/classes \ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
336 |
$(JDK_TOPDIR)/src/$(OPENJDK_TARGET_OS_API_DIR)/classes \ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
337 |
$(MACOSX_SRC_DIRS) \ |
22595
aaa6b141196c
8028066: PPC64: 8025715 changes broke AIX build after sync
simonis
parents:
22594
diff
changeset
|
338 |
$(AIX_SRC_DIRS) \ |
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
339 |
$(JDK_OUTPUTDIR)/gensrc \ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
340 |
$(JDK_OUTPUTDIR)/gensrc_no_srczip \ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
341 |
$(CLOSED_SRC_DIRS),\ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
342 |
INCLUDES:=$(JDK_USER_DEFINED_FILTER),\ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
343 |
EXCLUDES:=$(EXCLUDES) $(SECURITY_PKGS),\ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
344 |
EXCLUDE_FILES:=$(EXFILES),\ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
345 |
BIN:=$(JDK_OUTPUTDIR)/classes,\ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
346 |
COPY:=$(COPY_PATTERNS),\ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
347 |
COPY_FILES:=$(COPY_FILES),\ |
23236
7c5997f59e20
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
23010
diff
changeset
|
348 |
CLEAN_FILES:=$(CLEAN_FILES),\ |
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
349 |
HEADERS:=$(JDK_OUTPUTDIR)/gensrc_headers,\ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
350 |
ADD_JAVAC_FLAGS:=$(BUILD_JDK_SOURCEPATH))) |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
351 |
|
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
352 |
########################################################################################## |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
353 |
|
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
354 |
$(eval $(call SetupJavaCompilation,BUILD_SECURITY, \ |
20547 | 355 |
SETUP := GENERATE_JDKBYTECODE, \ |
356 |
SRC := $(JDK_TOPDIR)/src/share/classes \ |
|
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
357 |
$(JDK_TOPDIR)/src/$(OPENJDK_TARGET_OS_API_DIR)/classes \ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
358 |
$(MACOSX_SRC_DIRS) \ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
359 |
$(CLOSED_SRC_DIRS), \ |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
360 |
INCLUDES := $(SECURITY_PKGS), \ |
20547 | 361 |
EXCLUDES := $(EXCLUDES), \ |
362 |
EXCLUDE_FILES := $(EXFILES), \ |
|
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
363 |
BIN := $(JDK_OUTPUTDIR)/classes_security, \ |
20547 | 364 |
HEADERS := $(JDK_OUTPUTDIR)/gensrc_headers)) |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
365 |
|
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
366 |
$(BUILD_SECURITY): $(BUILD_JDK) |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
367 |
|
12892 | 368 |
########################################################################################## |
369 |
||
370 |
$(JDK_OUTPUTDIR)/classes/META-INF/services/com.sun.tools.xjc.Plugin: |
|
371 |
$(MKDIR) -p $(@D) |
|
372 |
$(TOUCH) $@ |
|
373 |
||
374 |
########################################################################################## |
|
375 |
||
13164 | 376 |
|
377 |
########################################################################################## |
|
378 |
||
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14708
diff
changeset
|
379 |
ifndef OPENJDK |
20547 | 380 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
381 |
ifeq ($(OPENJDK_TARGET_CPU_BITS), 32) |
|
382 |
$(eval $(call SetupJavaCompilation,BUILD_ACCESSBRIDGE_32, \ |
|
383 |
SETUP := GENERATE_JDKBYTECODE, \ |
|
384 |
JAVAC_FLAGS := -cp $(JDK_OUTPUTDIR)/classes, \ |
|
385 |
SRC := $(JDK_OUTPUTDIR)/gensrc_ab/32bit, \ |
|
23244
e1de5002b069
8029045: Regression - Unsatisfied Link Error when the Java Access Bridge is started
serb
parents:
21805
diff
changeset
|
386 |
BIN := $(JDK_OUTPUTDIR)/classes_ab/32bit, \ |
e1de5002b069
8029045: Regression - Unsatisfied Link Error when the Java Access Bridge is started
serb
parents:
21805
diff
changeset
|
387 |
HEADERS := $(JDK_OUTPUTDIR)/gensrc_headers)) |
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14708
diff
changeset
|
388 |
|
20547 | 389 |
$(BUILD_ACCESSBRIDGE_32): $(BUILD_JDK) |
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14708
diff
changeset
|
390 |
|
20547 | 391 |
$(eval $(call SetupJavaCompilation,BUILD_ACCESSBRIDGE_LEGACY, \ |
392 |
SETUP := GENERATE_JDKBYTECODE, \ |
|
393 |
JAVAC_FLAGS := -cp $(JDK_OUTPUTDIR)/classes, \ |
|
394 |
SRC := $(JDK_OUTPUTDIR)/gensrc_ab/legacy, \ |
|
23244
e1de5002b069
8029045: Regression - Unsatisfied Link Error when the Java Access Bridge is started
serb
parents:
21805
diff
changeset
|
395 |
BIN := $(JDK_OUTPUTDIR)/classes_ab/legacy, \ |
e1de5002b069
8029045: Regression - Unsatisfied Link Error when the Java Access Bridge is started
serb
parents:
21805
diff
changeset
|
396 |
HEADERS := $(JDK_OUTPUTDIR)/gensrc_headers)) |
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14708
diff
changeset
|
397 |
|
20547 | 398 |
$(BUILD_ACCESSBRIDGE_LEGACY): $(BUILD_JDK) |
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14708
diff
changeset
|
399 |
|
20547 | 400 |
else |
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14708
diff
changeset
|
401 |
|
20547 | 402 |
$(eval $(call SetupJavaCompilation,BUILD_ACCESSBRIDGE_64, \ |
403 |
SETUP := GENERATE_JDKBYTECODE, \ |
|
404 |
JAVAC_FLAGS := -cp $(JDK_OUTPUTDIR)/classes, \ |
|
405 |
SRC := $(JDK_OUTPUTDIR)/gensrc_ab/64bit, \ |
|
23244
e1de5002b069
8029045: Regression - Unsatisfied Link Error when the Java Access Bridge is started
serb
parents:
21805
diff
changeset
|
406 |
BIN := $(JDK_OUTPUTDIR)/classes_ab/64bit, \ |
e1de5002b069
8029045: Regression - Unsatisfied Link Error when the Java Access Bridge is started
serb
parents:
21805
diff
changeset
|
407 |
HEADERS := $(JDK_OUTPUTDIR)/gensrc_headers)) |
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14708
diff
changeset
|
408 |
|
20547 | 409 |
$(BUILD_ACCESSBRIDGE_64): $(BUILD_JDK) |
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14708
diff
changeset
|
410 |
|
20547 | 411 |
endif |
412 |
endif |
|
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14708
diff
changeset
|
413 |
endif |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14708
diff
changeset
|
414 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14708
diff
changeset
|
415 |
########################################################################################## |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14708
diff
changeset
|
416 |
|
22611
4dd8f4f14e2c
8033111: Clean up left-over JObjC code in build system
ihse
parents:
22607
diff
changeset
|
417 |
all: $(BUILD_JDK) $(BUILD_SECURITY) $(COPY_EXTRA) \ |
20547 | 418 |
$(JDK_OUTPUTDIR)/classes/META-INF/services/com.sun.tools.xjc.Plugin \ |
419 |
$(BUILD_ACCESSBRIDGE_32) $(BUILD_ACCESSBRIDGE_64) \ |
|
420 |
$(BUILD_ACCESSBRIDGE_LEGACY) |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
421 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
422 |
.PHONY: all |