Cross Reference: /openjdk7/jdk/make/sun/security/pkcs11/Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
4596N/A# Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved. 0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 0N/A# This code is free software; you can redistribute it and/or modify it 0N/A# under the terms of the GNU General Public License version 2 only, as 2362N/A# published by the Free Software Foundation. Oracle designates this 0N/A# particular file as subject to the "Classpath" exception as provided 2362N/A# by Oracle in the LICENSE file that accompanied this code. 0N/A# This code is distributed in the hope that it will be useful, but WITHOUT 0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 0N/A# version 2 for more details (a copy is included in the LICENSE file that 0N/A# accompanied this code). 0N/A# You should have received a copy of the GNU General Public License version 0N/A# 2 along with this work; if not, write to the Free Software Foundation, 0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 2362N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 0N/A# (The terms "OpenJDK" and "JDK" below refer to OpenJDK and Sun JDK builds 0N/A# JCE builds are very different between OpenJDK and JDK. The OpenJDK JCE 0N/A# jar files do not require signing, but those for JDK do. If an unsigned 0N/A# jar file is installed into JDK, things will break when the crypto 0N/A# routines are called. 0N/A# This Makefile does the "real" build of the JCE files. For OpenJDK, 0N/A# the jar files built here are installed directly into the OpenJDK. 0N/A# the closed workspace that are not shipped in the OpenJDK workspaces. 0N/A# We still build the JDK files here to verify the files compile, and in 0N/A# preparation for possible signing. Developers working on JCE in JDK 0N/A# must sign the JCE files before testing. The JCE signing key is kept 0N/A# separate from the JDK workspace to prevent its disclosure. 0N/A# SPECIAL NOTE TO JCE/JDK developers: The source files must eventually 0N/A# be built, signed, and then the resulting jar files MUST BE CHECKED 0N/A# INTO THE CLOSED PART OF THE WORKSPACE*. This separate step *MUST NOT 0N/A# BE FORGOTTEN*, otherwise a bug fixed in the source code will not be 0N/A# reflected in the shipped binaries. The "release" target should be 0N/A# used to generate the required files. 0N/A# There are a number of targets to help both JDK/OpenJDK developers. 1460N/A# If OpenJDK, does not sign. 1460N/A# install-jar Alias for "jar" above. 0N/A# Other targets (JDK only): 1460N/A# release Builds all targets in preparation 1460N/A# for workspace integration. 1460N/A# install-prebuilt Installs the pre-built jar files 0N/A# This makefile was written to support parallel target execution. 160N/A# The following is for when we need to do postprocessing 160N/A# isn't writable, the build currently crashes out. 160N/A # ===================================================== 160N/A # Where to place the output, in case we're building from a read-only 160N/A # build area. (e.g. a release engineering build.) 0N/A# Subdirectories of these are automatically included. 0N/A# Java files that define native methods 0N/A# We use a variety of subdirectories in the $(TEMPDIR) depending on what 0N/A# part of the build we're doing. Both OPENJDK/JDK builds are initially 0N/A# done in the unsigned area. When files are signed in JDK, 0N/A# they will be placed in the appropriate area. 0N/A# ===================================================== 0N/A# therefore none of its classes can appear in $(CLASSBINDIR). 0N/A# Currently no one is using any of the PKCS11 internals, so these files 0N/A# should not have been built. 0N/A# Since the -C option to jar is used below, each directory entry must be 0N/A# preceded with the appropriate directory to "cd" into. 0N/A# ===================================================== 0N/A# Sign the provider jar file. Not needed for OpenJDK. 160N/A# We have to remove the build dependency, otherwise, we'll try to rebuild it 160N/A# which we can't do on a read-only filesystem. 0N/A# ===================================================== 0N/A# Create the Release Engineering files. Signed builds, etc. 0N/A# ===================================================== 0N/A @
$(ECHO) "\n>>>Installing prebuilt SunPKCS11 provider..." 0N/A# =====================================================