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