author | lana |
Thu, 11 Sep 2014 14:28:19 -0700 | |
changeset 26520 | abaac15e3bd1 |
parent 26191 | a0ff4b39d34b |
child 26861 | 47dde7f5cf36 |
permissions | -rw-r--r-- |
12892 | 1 |
# |
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
2 |
# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. |
12892 | 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 |
||
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
26 |
default: all |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
27 |
|
12892 | 28 |
include $(SPEC) |
29 |
include MakeBase.gmk |
|
30 |
include JavaCompilation.gmk |
|
31 |
||
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
32 |
# The jars created in this file are required for the exploded jdk image to function and |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
33 |
# cannot wait to be built in the images target. |
12892 | 34 |
|
35 |
########################################################################################## |
|
14527
b2b7e2931859
8003482: build-infra: Use correct manifest in security jars
erikj
parents:
14425
diff
changeset
|
36 |
# Create manifest for security jars |
b2b7e2931859
8003482: build-infra: Use correct manifest in security jars
erikj
parents:
14425
diff
changeset
|
37 |
# |
b2b7e2931859
8003482: build-infra: Use correct manifest in security jars
erikj
parents:
14425
diff
changeset
|
38 |
# Include these extra attributes for now, should probably take out. |
b2b7e2931859
8003482: build-infra: Use correct manifest in security jars
erikj
parents:
14425
diff
changeset
|
39 |
# |
21805 | 40 |
MAINMANIFEST := $(JDK_TOPDIR)/make/data/mainmanifest/manifest.mf |
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
41 |
JCE_MANIFEST := $(JDK_OUTPUTDIR)/lib/_the.security.manifest.mf |
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
42 |
|
14527
b2b7e2931859
8003482: build-infra: Use correct manifest in security jars
erikj
parents:
14425
diff
changeset
|
43 |
$(JCE_MANIFEST): $(MAINMANIFEST) |
b2b7e2931859
8003482: build-infra: Use correct manifest in security jars
erikj
parents:
14425
diff
changeset
|
44 |
$(MKDIR) -p $(@D) |
b2b7e2931859
8003482: build-infra: Use correct manifest in security jars
erikj
parents:
14425
diff
changeset
|
45 |
$(RM) $@ $@.tmp |
20547 | 46 |
$(SED) -e "s#@@RELEASE@@#$(JDK_VERSION)#" \ |
47 |
-e "s#@@COMPANY_NAME@@#$(COMPANY_NAME)#" \ |
|
48 |
$(MAINMANIFEST) >> $@.tmp |
|
14527
b2b7e2931859
8003482: build-infra: Use correct manifest in security jars
erikj
parents:
14425
diff
changeset
|
49 |
$(ECHO) "Extension-Name: javax.crypto" >> $@.tmp |
b2b7e2931859
8003482: build-infra: Use correct manifest in security jars
erikj
parents:
14425
diff
changeset
|
50 |
$(ECHO) "Implementation-Vendor-Id: com.sun" >> $@.tmp |
b2b7e2931859
8003482: build-infra: Use correct manifest in security jars
erikj
parents:
14425
diff
changeset
|
51 |
$(MV) $@.tmp $@ |
b2b7e2931859
8003482: build-infra: Use correct manifest in security jars
erikj
parents:
14425
diff
changeset
|
52 |
|
b2b7e2931859
8003482: build-infra: Use correct manifest in security jars
erikj
parents:
14425
diff
changeset
|
53 |
########################################################################################## |
18573 | 54 |
# For security and crypto jars, always build the jar, but for closed, install the prebuilt |
55 |
# signed version instead of the newly built jar. Unsigned jars are treated as intermediate |
|
21980 | 56 |
# targets and explicitly added to the TARGETS list. For open, signing is not needed. See |
17957
1a51992c6097
8010785: JDK 8 build on Linux fails with new build mechanism
erikj
parents:
17493
diff
changeset
|
57 |
# SignJars.gmk for more information. |
1a51992c6097
8010785: JDK 8 build on Linux fails with new build mechanism
erikj
parents:
17493
diff
changeset
|
58 |
# |
1a51992c6097
8010785: JDK 8 build on Linux fails with new build mechanism
erikj
parents:
17493
diff
changeset
|
59 |
# The source for the crypto jars is not available for all licensees. The BUILD_CRYPTO |
1a51992c6097
8010785: JDK 8 build on Linux fails with new build mechanism
erikj
parents:
17493
diff
changeset
|
60 |
# variable is set to no if these jars can't be built to skip that step of the build. |
18573 | 61 |
# Note that for OPENJDK, the build will fail if BUILD_CRYPTO=no since then there is no |
17957
1a51992c6097
8010785: JDK 8 build on Linux fails with new build mechanism
erikj
parents:
17493
diff
changeset
|
62 |
# other way to get the jars than to build them. |
12892 | 63 |
|
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
64 |
SUNPKCS11_JAR_DST := $(JDK_OUTPUTDIR)/lib/ext/sunpkcs11.jar |
21980 | 65 |
SUNPKCS11_JAR_UNSIGNED := $(JDK_OUTPUTDIR)/jce/unsigned/sunpkcs11.jar |
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
66 |
|
20547 | 67 |
$(eval $(call SetupArchive,BUILD_SUNPKCS11_JAR, , \ |
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25859
diff
changeset
|
68 |
SRCS := $(JDK_OUTPUTDIR)/modules/jdk.crypto.pkcs11, \ |
20547 | 69 |
SUFFIXES := .class, \ |
70 |
INCLUDES := sun/security/pkcs11, \ |
|
71 |
JAR := $(SUNPKCS11_JAR_UNSIGNED), \ |
|
72 |
MANIFEST := $(JCE_MANIFEST), \ |
|
73 |
SKIP_METAINF := true)) |
|
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
74 |
|
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
75 |
$(SUNPKCS11_JAR_UNSIGNED): $(JCE_MANIFEST) |
12892 | 76 |
|
13702 | 77 |
ifndef OPENJDK |
20547 | 78 |
SUNPKCS11_JAR_SRC := $(JDK_TOPDIR)/make/closed/tools/crypto/pkcs11/sunpkcs11.jar |
79 |
$(SUNPKCS11_JAR_DST): $(SUNPKCS11_JAR_SRC) |
|
21980 | 80 |
@$(ECHO) $(LOG_INFO) Copying prebuilt $(@F) |
14596
a1f29d55b5ee
8004281: build-infra: Move all jar creation to images target and put jars in images/lib
erikj
parents:
14527
diff
changeset
|
81 |
$(install-file) |
13702 | 82 |
else |
20547 | 83 |
$(SUNPKCS11_JAR_DST): $(SUNPKCS11_JAR_UNSIGNED) |
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
84 |
$(install-file) |
13702 | 85 |
endif |
12892 | 86 |
|
21980 | 87 |
TARGETS += $(SUNPKCS11_JAR_UNSIGNED) $(SUNPKCS11_JAR_DST) |
12892 | 88 |
|
89 |
########################################################################################## |
|
90 |
||
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
91 |
SUNEC_JAR_DST := $(JDK_OUTPUTDIR)/lib/ext/sunec.jar |
21980 | 92 |
SUNEC_JAR_UNSIGNED := $(JDK_OUTPUTDIR)/jce/unsigned/sunec.jar |
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
93 |
|
20547 | 94 |
$(eval $(call SetupArchive,BUILD_SUNEC_JAR, , \ |
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25859
diff
changeset
|
95 |
SRCS := $(JDK_OUTPUTDIR)/modules/jdk.crypto.ec, \ |
20547 | 96 |
SUFFIXES := .class, \ |
97 |
INCLUDES := sun/security/ec, \ |
|
98 |
JAR := $(SUNEC_JAR_UNSIGNED), \ |
|
99 |
MANIFEST := $(JCE_MANIFEST), \ |
|
100 |
SKIP_METAINF := true)) |
|
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
101 |
|
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
102 |
$(SUNEC_JAR_UNSIGNED): $(JCE_MANIFEST) |
12892 | 103 |
|
104 |
ifndef OPENJDK |
|
20547 | 105 |
SUNEC_JAR_SRC := $(JDK_TOPDIR)/make/closed/tools/crypto/ec/sunec.jar |
106 |
$(SUNEC_JAR_DST): $(SUNEC_JAR_SRC) |
|
21980 | 107 |
@$(ECHO) $(LOG_INFO) Copying prebuilt $(@F) |
14596
a1f29d55b5ee
8004281: build-infra: Move all jar creation to images target and put jars in images/lib
erikj
parents:
14527
diff
changeset
|
108 |
$(install-file) |
12892 | 109 |
else |
20547 | 110 |
$(SUNEC_JAR_DST): $(SUNEC_JAR_UNSIGNED) |
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
111 |
$(install-file) |
12892 | 112 |
endif |
113 |
||
21980 | 114 |
TARGETS += $(SUNEC_JAR_UNSIGNED) $(SUNEC_JAR_DST) |
12892 | 115 |
|
116 |
########################################################################################## |
|
117 |
||
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
118 |
SUNJCE_PROVIDER_JAR_DST := $(JDK_OUTPUTDIR)/lib/ext/sunjce_provider.jar |
21980 | 119 |
SUNJCE_PROVIDER_JAR_UNSIGNED := $(JDK_OUTPUTDIR)/jce/unsigned/sunjce_provider.jar |
12892 | 120 |
|
20547 | 121 |
ifneq ($(BUILD_CRYPTO), no) |
122 |
$(eval $(call SetupArchive,BUILD_SUNJCE_PROVIDER_JAR, , \ |
|
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25859
diff
changeset
|
123 |
SRCS := $(JDK_OUTPUTDIR)/modules/java.base, \ |
20547 | 124 |
SUFFIXES := .class, \ |
125 |
INCLUDES := com/sun/crypto/provider, \ |
|
126 |
JAR := $(SUNJCE_PROVIDER_JAR_UNSIGNED), \ |
|
127 |
MANIFEST := $(JCE_MANIFEST), \ |
|
128 |
SKIP_METAINF := true)) |
|
14527
b2b7e2931859
8003482: build-infra: Use correct manifest in security jars
erikj
parents:
14425
diff
changeset
|
129 |
|
17957
1a51992c6097
8010785: JDK 8 build on Linux fails with new build mechanism
erikj
parents:
17493
diff
changeset
|
130 |
$(SUNJCE_PROVIDER_JAR_UNSIGNED): $(JCE_MANIFEST) |
1a51992c6097
8010785: JDK 8 build on Linux fails with new build mechanism
erikj
parents:
17493
diff
changeset
|
131 |
|
21980 | 132 |
TARGETS += $(SUNJCE_PROVIDER_JAR_UNSIGNED) |
17957
1a51992c6097
8010785: JDK 8 build on Linux fails with new build mechanism
erikj
parents:
17493
diff
changeset
|
133 |
endif |
14527
b2b7e2931859
8003482: build-infra: Use correct manifest in security jars
erikj
parents:
14425
diff
changeset
|
134 |
|
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
135 |
ifndef OPENJDK |
20547 | 136 |
SUNJCE_PROVIDER_JAR_SRC := $(JDK_TOPDIR)/make/closed/tools/crypto/jce/sunjce_provider.jar |
137 |
$(SUNJCE_PROVIDER_JAR_DST): $(SUNJCE_PROVIDER_JAR_SRC) |
|
21980 | 138 |
@$(ECHO) $(LOG_INFO) Copying prebuilt $(@F) |
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
139 |
$(install-file) |
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
140 |
else |
20547 | 141 |
$(SUNJCE_PROVIDER_JAR_DST): $(SUNJCE_PROVIDER_JAR_UNSIGNED) |
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
142 |
$(install-file) |
12892 | 143 |
endif |
144 |
||
21980 | 145 |
TARGETS += $(SUNJCE_PROVIDER_JAR_DST) |
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
146 |
|
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
147 |
########################################################################################## |
12892 | 148 |
|
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
149 |
JCE_JAR_DST := $(JDK_OUTPUTDIR)/lib/jce.jar |
21980 | 150 |
JCE_JAR_UNSIGNED := $(JDK_OUTPUTDIR)/jce/unsigned/jce.jar |
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
151 |
|
20547 | 152 |
ifneq ($(BUILD_CRYPTO), no) |
153 |
$(eval $(call SetupArchive,BUILD_JCE_JAR, , \ |
|
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25859
diff
changeset
|
154 |
SRCS := $(JDK_OUTPUTDIR)/modules/java.base, \ |
20547 | 155 |
SUFFIXES := .class, \ |
156 |
INCLUDES := javax/crypto sun/security/internal, \ |
|
157 |
JAR := $(JCE_JAR_UNSIGNED), \ |
|
158 |
MANIFEST := $(JCE_MANIFEST), \ |
|
159 |
SKIP_METAINF := true)) |
|
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
160 |
|
17957
1a51992c6097
8010785: JDK 8 build on Linux fails with new build mechanism
erikj
parents:
17493
diff
changeset
|
161 |
$(JCE_JAR_UNSIGNED): $(JCE_MANIFEST) |
1a51992c6097
8010785: JDK 8 build on Linux fails with new build mechanism
erikj
parents:
17493
diff
changeset
|
162 |
|
21980 | 163 |
TARGETS += $(JCE_JAR_UNSIGNED) |
17957
1a51992c6097
8010785: JDK 8 build on Linux fails with new build mechanism
erikj
parents:
17493
diff
changeset
|
164 |
endif |
12892 | 165 |
|
166 |
ifndef OPENJDK |
|
17957
1a51992c6097
8010785: JDK 8 build on Linux fails with new build mechanism
erikj
parents:
17493
diff
changeset
|
167 |
JCE_JAR_SRC := $(JDK_TOPDIR)/make/closed/tools/crypto/jce/jce.jar |
20547 | 168 |
$(JCE_JAR_DST): $(JCE_JAR_SRC) |
21980 | 169 |
@$(ECHO) $(LOG_INFO) Copying prebuilt $(@F) |
14596
a1f29d55b5ee
8004281: build-infra: Move all jar creation to images target and put jars in images/lib
erikj
parents:
14527
diff
changeset
|
170 |
$(install-file) |
12892 | 171 |
else |
20547 | 172 |
$(JCE_JAR_DST): $(JCE_JAR_UNSIGNED) |
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
173 |
$(install-file) |
12892 | 174 |
endif |
175 |
||
21980 | 176 |
TARGETS += $(JCE_JAR_DST) |
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
177 |
|
12892 | 178 |
########################################################################################## |
179 |
||
20547 | 180 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
12892 | 181 |
|
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
182 |
SUNMSCAPI_JAR_DST := $(JDK_OUTPUTDIR)/lib/ext/sunmscapi.jar |
21980 | 183 |
SUNMSCAPI_JAR_UNSIGNED := $(JDK_OUTPUTDIR)/jce/unsigned/sunmscapi.jar |
12892 | 184 |
|
20547 | 185 |
$(eval $(call SetupArchive,BUILD_SUNMSCAPI_JAR, , \ |
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25859
diff
changeset
|
186 |
SRCS := $(JDK_OUTPUTDIR)/modules/jdk.crypto.mscapi, \ |
20547 | 187 |
SUFFIXES := .class, \ |
188 |
INCLUDES := sun/security/mscapi, \ |
|
189 |
JAR := $(SUNMSCAPI_JAR_UNSIGNED), \ |
|
190 |
MANIFEST := $(JCE_MANIFEST), \ |
|
191 |
SKIP_METAINF := true)) |
|
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
192 |
|
20547 | 193 |
$(SUNMSCAPI_JAR_UNSIGNED): $(JCE_MANIFEST) |
15137
1ad653469ebc
8006296: build-infra: Unsigned sunmscapi.jar is missing manifest.
erikj
parents:
15133
diff
changeset
|
194 |
|
20547 | 195 |
ifndef OPENJDK |
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
196 |
SUNMSCAPI_JAR_SRC := $(JDK_TOPDIR)/make/closed/tools/crypto/mscapi/sunmscapi.jar |
20547 | 197 |
$(SUNMSCAPI_JAR_DST): $(SUNMSCAPI_JAR_SRC) |
21980 | 198 |
@$(ECHO) $(LOG_INFO) Copying prebuilt $(@F) |
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
199 |
$(install-file) |
20547 | 200 |
else |
201 |
$(SUNMSCAPI_JAR_DST): $(SUNMSCAPI_JAR_UNSIGNED) |
|
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
202 |
$(install-file) |
20547 | 203 |
endif |
12892 | 204 |
|
21980 | 205 |
TARGETS += $(SUNMSCAPI_JAR_UNSIGNED) $(SUNMSCAPI_JAR_DST) |
12892 | 206 |
|
207 |
endif |
|
208 |
||
209 |
########################################################################################## |
|
210 |
||
20547 | 211 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
212 |
ifndef OPENJDK |
|
12892 | 213 |
|
21128
2a7460bba7a5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20884
diff
changeset
|
214 |
UCRYPTO_JAR_DST := $(JDK_OUTPUTDIR)/lib/ext/ucrypto.jar |
21980 | 215 |
UCRYPTO_JAR_UNSIGNED := $(JDK_OUTPUTDIR)/jce/unsigned/ucrypto.jar |
20547 | 216 |
UCRYPTO_JAR_SRC := $(JDK_TOPDIR)/make/closed/tools/crypto/ucrypto/ucrypto.jar |
12892 | 217 |
|
20547 | 218 |
$(eval $(call SetupArchive,BUILD_UCRYPTO_JAR, , \ |
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25859
diff
changeset
|
219 |
SRCS := $(JDK_OUTPUTDIR)/modules/jdk.crypto.ucrypto, \ |
20547 | 220 |
SUFFIXES := .class, \ |
221 |
INCLUDES := com/oracle/security/ucrypto, \ |
|
222 |
JAR := $(UCRYPTO_JAR_UNSIGNED), \ |
|
223 |
MANIFEST := $(JCE_MANIFEST), \ |
|
224 |
SKIP_METAINF := true)) |
|
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
225 |
|
20547 | 226 |
$(UCRYPTO_JAR_UNSIGNED): $(JCE_MANIFEST) |
15128
296bb1620e00
8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents:
15126
diff
changeset
|
227 |
|
20547 | 228 |
$(UCRYPTO_JAR_DST): $(UCRYPTO_JAR_SRC) |
21980 | 229 |
@$(ECHO) $(LOG_INFO) Copying prebuilt $(@F) |
14596
a1f29d55b5ee
8004281: build-infra: Move all jar creation to images target and put jars in images/lib
erikj
parents:
14527
diff
changeset
|
230 |
$(install-file) |
12892 | 231 |
|
21980 | 232 |
TARGETS += $(UCRYPTO_JAR_UNSIGNED) $(UCRYPTO_JAR_DST) |
12892 | 233 |
|
20547 | 234 |
endif |
12892 | 235 |
endif |
236 |
||
21980 | 237 |
all: $(TARGETS) |
12892 | 238 |
|
239 |
.PHONY: default all |