]> git.ipfire.org Git - thirdparty/openssl.git/blame - engines/Makefile
Add support for Cygwin-x86_64.
[thirdparty/openssl.git] / engines / Makefile
CommitLineData
38e19a42 1#
15ac9716 2# OpenSSL/engines/Makefile
38e19a42
RL
3#
4
5DIR= engines
6TOP= ..
7CC= cc
8INCLUDES= -I../include
9CFLAG=-g
42ba5d23 10MAKEFILE= Makefile
38e19a42 11AR= ar r
ef236ec3 12ENGDIRS= ccgost
ffa5ebf3 13
ef236ec3 14RECURSIVE_MAKE= [ -z "$(ENGDIRS)" ] || for i in $(ENGDIRS) ; do \
ffa5ebf3
DSH
15 (cd $$i && echo "making $$target in $(DIR)/$$i..." && \
16 $(MAKE) -e TOP=../.. DIR=$$i $$target ) || exit 1; \
17 done;
38e19a42 18
ed28aef8
AP
19ENGINES_ASM_OBJ=
20
79a6260a
RL
21PEX_LIBS=
22EX_LIBS=
fbeaa3c4 23
38e19a42 24CFLAGS= $(INCLUDES) $(CFLAG)
ed28aef8 25ASFLAGS= $(INCLUDES) $(ASFLAG)
38e19a42 26
1c243470 27GENERAL=Makefile engines.com install.com engine_vector.mar
38e19a42
RL
28TEST=
29APPS=
30
31LIB=$(TOP)/libcrypto.a
7a18ecb2 32LIBNAMES= 4758cca aep atalla cswift gmp chil nuron sureware ubsec padlock capi
97e2e71e 33
a2c32e2d 34LIBSRC= e_4758cca.c \
38e19a42
RL
35 e_aep.c \
36 e_atalla.c \
38e19a42 37 e_cswift.c \
a85bef18 38 e_gmp.c \
a2c32e2d 39 e_chil.c \
38e19a42
RL
40 e_nuron.c \
41 e_sureware.c \
00b4e083 42 e_ubsec.c \
7a18ecb2
DSH
43 e_padlock.c \
44 e_capi.c
a2c32e2d 45LIBOBJ= e_4758cca.o \
38e19a42
RL
46 e_aep.o \
47 e_atalla.o \
38e19a42 48 e_cswift.o \
a85bef18 49 e_gmp.o \
a2c32e2d 50 e_chil.o \
38e19a42
RL
51 e_nuron.o \
52 e_sureware.o \
00b4e083 53 e_ubsec.o \
884c580e 54 e_padlock.o \
ed28aef8
AP
55 e_capi.o \
56 $(ENGINES_ASM_OBJ)
38e19a42
RL
57
58SRC= $(LIBSRC)
59
60EXHEADER=
a2c32e2d 61HEADER= e_4758cca_err.c e_4758cca_err.h \
38e19a42
RL
62 e_aep_err.c e_aep_err.h \
63 e_atalla_err.c e_atalla_err.h \
38e19a42 64 e_cswift_err.c e_cswift_err.h \
a85bef18 65 e_gmp_err.c e_gmp_err.h \
a2c32e2d 66 e_chil_err.c e_chil_err.h \
38e19a42
RL
67 e_nuron_err.c e_nuron_err.h \
68 e_sureware_err.c e_sureware_err.h \
7a18ecb2
DSH
69 e_ubsec_err.c e_ubsec_err.h \
70 e_capi_err.c e_capi_err.h
38e19a42
RL
71
72ALL= $(GENERAL) $(SRC) $(HEADER)
73
74top:
75 (cd ..; $(MAKE) DIRS=$(DIR) all)
76
1e7b6c02 77all: lib subdirs
38e19a42 78
1e7b6c02 79lib: $(LIBOBJ)
38e19a42
RL
80 @if [ -n "$(SHARED_LIBS)" ]; then \
81 set -e; \
82 for l in $(LIBNAMES); do \
02c31fa4 83 $(MAKE) -f ../Makefile.shared -e \
ed28aef8 84 LIBNAME=$$l LIBEXTRAS="e_$$l*.o" \
79a6260a 85 LIBDEPS='-L.. -lcrypto $(EX_LIBS)' \
38e19a42
RL
86 link_o.$(SHLIB_TARGET); \
87 done; \
88 else \
89 $(AR) $(LIB) $(LIBOBJ); \
90 $(RANLIB) $(LIB) || echo Never mind.; \
91 fi; \
44866623 92 touch lib
38e19a42 93
ed28aef8
AP
94e_padlock-x86.s: asm/e_padlock-x86.pl
95 $(PERL) asm/e_padlock-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
96e_padlock-x86_64.s: asm/e_padlock-x86_64.pl
97 $(PERL) asm/e_padlock-x86_64.pl $(PERLASM_SCHEME) > $@
98
ffa5ebf3
DSH
99subdirs:
100 echo $(EDIRS)
101 @target=all; $(RECURSIVE_MAKE)
102
38e19a42 103files:
42ba5d23 104 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
ffa5ebf3 105 @target=files; $(RECURSIVE_MAKE)
38e19a42
RL
106
107links:
ffa5ebf3 108 @target=links; $(RECURSIVE_MAKE)
38e19a42
RL
109
110# XXXXX This currently only works on systems that use .so as suffix
447aa490
RL
111# for shared libraries as well as for Cygwin which uses the
112# dlfcn_name_converter and therefore stores the engines with .so suffix, too.
755c5b33 113# XXXXX This was extended to HP-UX dl targets, which use .sl suffix.
4c1a6e00 114# XXXXX This was extended to mingw targets, which use eay32.dll suffix without lib as prefix.
38e19a42 115install:
81a86fcf 116 @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
38e19a42
RL
117 @if [ -n "$(SHARED_LIBS)" ]; then \
118 set -e; \
72a9776a 119 $(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines; \
38e19a42 120 for l in $(LIBNAMES); do \
f6661d39 121 ( echo installing $$l; \
4c1a6e00 122 pfx=lib; \
b3ef742c 123 if ! expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
755c5b33 124 case "$(CFLAGS)" in \
4c1a6e00 125 *DSO_BEOS*) sfx=".so";; \
f2c88f52 126 *DSO_DLFCN*) sfx=`expr "$(SHLIB_EXT)" : '.*\(\.[a-z][a-z]*\)' \| ".so"`;; \
4c1a6e00
LJ
127 *DSO_DL*) sfx=".sl";; \
128 *DSO_WIN32*) sfx="eay32.dll"; pfx=;; \
129 *) sfx=".bad";; \
755c5b33 130 esac; \
6727565a 131 cp $$pfx$$l$$sfx $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
447aa490 132 else \
4c1a6e00 133 sfx=".so"; \
6727565a 134 cp cyg$$l.dll $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
447aa490 135 fi; \
6727565a
DSH
136 chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
137 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx ); \
38e19a42
RL
138 done; \
139 fi
ffa5ebf3 140 @target=install; $(RECURSIVE_MAKE)
38e19a42
RL
141
142tags:
143 ctags $(SRC)
144
145errors:
146 set -e; for l in $(LIBNAMES); do \
147 $(PERL) ../util/mkerr.pl -conf e_$$l.ec \
148 -nostatic -staticloader -write e_$$l.c; \
149 done
a4346646 150 (cd ccgost; $(MAKE) PERL=$(PERL) errors)
38e19a42
RL
151
152tests:
153
154lint:
155 lint -DLINT $(INCLUDES) $(SRC)>fluff
ffa5ebf3 156 @target=lint; $(RECURSIVE_MAKE)
38e19a42
RL
157
158depend:
ce92b6eb
AP
159 @if [ -z "$(THIS)" ]; then \
160 $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \
ce92b6eb 161 fi
ffa5ebf3
DSH
162 @[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
163 @[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) )
38e19a42
RL
164
165dclean:
166 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
167 mv -f Makefile.new $(MAKEFILE)
ffa5ebf3 168 @target=dclean; $(RECURSIVE_MAKE)
38e19a42
RL
169
170clean:
171 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
ffa5ebf3 172 @target=clean; $(RECURSIVE_MAKE)
38e19a42
RL
173
174# DO NOT DELETE THIS LINE -- make depend depends on it.
3b408d83
UM
175
176e_4758cca.o: ../include/openssl/asn1.h ../include/openssl/bio.h
177e_4758cca.o: ../include/openssl/bn.h ../include/openssl/buffer.h
178e_4758cca.o: ../include/openssl/crypto.h ../include/openssl/dso.h
179e_4758cca.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
180e_4758cca.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
181e_4758cca.o: ../include/openssl/engine.h ../include/openssl/err.h
182e_4758cca.o: ../include/openssl/evp.h ../include/openssl/lhash.h
183e_4758cca.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
184e_4758cca.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
185e_4758cca.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
186e_4758cca.o: ../include/openssl/rand.h ../include/openssl/rsa.h
187e_4758cca.o: ../include/openssl/safestack.h ../include/openssl/sha.h
188e_4758cca.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
189e_4758cca.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
190e_4758cca.o: e_4758cca.c e_4758cca_err.c e_4758cca_err.h
191e_4758cca.o: vendor_defns/hw_4758_cca.h
192e_aep.o: ../include/openssl/asn1.h ../include/openssl/bio.h
193e_aep.o: ../include/openssl/bn.h ../include/openssl/buffer.h
194e_aep.o: ../include/openssl/crypto.h ../include/openssl/dh.h
195e_aep.o: ../include/openssl/dsa.h ../include/openssl/dso.h
5ce278a7
BL
196e_aep.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
197e_aep.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
198e_aep.o: ../include/openssl/engine.h ../include/openssl/err.h
199e_aep.o: ../include/openssl/evp.h ../include/openssl/lhash.h
200e_aep.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
3b408d83 201e_aep.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
5ce278a7
BL
202e_aep.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
203e_aep.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
204e_aep.o: ../include/openssl/sha.h ../include/openssl/stack.h
205e_aep.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
206e_aep.o: ../include/openssl/x509_vfy.h e_aep.c e_aep_err.c e_aep_err.h
3b408d83
UM
207e_aep.o: vendor_defns/aep.h
208e_atalla.o: ../include/openssl/asn1.h ../include/openssl/bio.h
209e_atalla.o: ../include/openssl/bn.h ../include/openssl/buffer.h
210e_atalla.o: ../include/openssl/crypto.h ../include/openssl/dh.h
211e_atalla.o: ../include/openssl/dsa.h ../include/openssl/dso.h
5ce278a7
BL
212e_atalla.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
213e_atalla.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
214e_atalla.o: ../include/openssl/engine.h ../include/openssl/err.h
215e_atalla.o: ../include/openssl/evp.h ../include/openssl/lhash.h
216e_atalla.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
3b408d83 217e_atalla.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
5ce278a7
BL
218e_atalla.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
219e_atalla.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
220e_atalla.o: ../include/openssl/sha.h ../include/openssl/stack.h
221e_atalla.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
222e_atalla.o: ../include/openssl/x509_vfy.h e_atalla.c e_atalla_err.c
3b408d83 223e_atalla.o: e_atalla_err.h vendor_defns/atalla.h
5ce278a7 224e_capi.o: ../include/openssl/asn1.h ../include/openssl/bio.h
9d0397e9
BM
225e_capi.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
226e_capi.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
227e_capi.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
228e_capi.o: ../include/openssl/engine.h ../include/openssl/evp.h
229e_capi.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
230e_capi.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
231e_capi.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
232e_capi.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
233e_capi.o: ../include/openssl/sha.h ../include/openssl/stack.h
234e_capi.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
235e_capi.o: ../include/openssl/x509_vfy.h e_capi.c
3b408d83
UM
236e_chil.o: ../include/openssl/asn1.h ../include/openssl/bio.h
237e_chil.o: ../include/openssl/bn.h ../include/openssl/buffer.h
238e_chil.o: ../include/openssl/crypto.h ../include/openssl/dh.h
239e_chil.o: ../include/openssl/dso.h ../include/openssl/e_os2.h
240e_chil.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
241e_chil.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
242e_chil.o: ../include/openssl/err.h ../include/openssl/evp.h
243e_chil.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
244e_chil.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
245e_chil.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
246e_chil.o: ../include/openssl/pem.h ../include/openssl/pem2.h
247e_chil.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
248e_chil.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
249e_chil.o: ../include/openssl/sha.h ../include/openssl/stack.h
250e_chil.o: ../include/openssl/symhacks.h ../include/openssl/ui.h
251e_chil.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h e_chil.c
252e_chil.o: e_chil_err.c e_chil_err.h vendor_defns/hwcryptohook.h
253e_cswift.o: ../include/openssl/asn1.h ../include/openssl/bio.h
254e_cswift.o: ../include/openssl/bn.h ../include/openssl/buffer.h
255e_cswift.o: ../include/openssl/crypto.h ../include/openssl/dh.h
256e_cswift.o: ../include/openssl/dsa.h ../include/openssl/dso.h
5ce278a7
BL
257e_cswift.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
258e_cswift.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
259e_cswift.o: ../include/openssl/engine.h ../include/openssl/err.h
260e_cswift.o: ../include/openssl/evp.h ../include/openssl/lhash.h
261e_cswift.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
3b408d83 262e_cswift.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
5ce278a7
BL
263e_cswift.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
264e_cswift.o: ../include/openssl/rand.h ../include/openssl/rsa.h
265e_cswift.o: ../include/openssl/safestack.h ../include/openssl/sha.h
266e_cswift.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
267e_cswift.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h e_cswift.c
3b408d83 268e_cswift.o: e_cswift_err.c e_cswift_err.h vendor_defns/cswift.h
3c1d6bbc
BL
269e_gmp.o: ../include/openssl/asn1.h ../include/openssl/bio.h
270e_gmp.o: ../include/openssl/bn.h ../include/openssl/buffer.h
271e_gmp.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
5ce278a7
BL
272e_gmp.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
273e_gmp.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
274e_gmp.o: ../include/openssl/evp.h ../include/openssl/lhash.h
275e_gmp.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
276e_gmp.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
277e_gmp.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
3c1d6bbc 278e_gmp.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
5ce278a7
BL
279e_gmp.o: ../include/openssl/sha.h ../include/openssl/stack.h
280e_gmp.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
281e_gmp.o: ../include/openssl/x509_vfy.h e_gmp.c
3b408d83
UM
282e_nuron.o: ../include/openssl/asn1.h ../include/openssl/bio.h
283e_nuron.o: ../include/openssl/bn.h ../include/openssl/buffer.h
284e_nuron.o: ../include/openssl/crypto.h ../include/openssl/dh.h
285e_nuron.o: ../include/openssl/dsa.h ../include/openssl/dso.h
5ce278a7
BL
286e_nuron.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
287e_nuron.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
288e_nuron.o: ../include/openssl/engine.h ../include/openssl/err.h
289e_nuron.o: ../include/openssl/evp.h ../include/openssl/lhash.h
290e_nuron.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
3b408d83 291e_nuron.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
5ce278a7
BL
292e_nuron.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
293e_nuron.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
294e_nuron.o: ../include/openssl/sha.h ../include/openssl/stack.h
295e_nuron.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
296e_nuron.o: ../include/openssl/x509_vfy.h e_nuron.c e_nuron_err.c e_nuron_err.h
00b4e083 297e_padlock.o: ../include/openssl/aes.h ../include/openssl/asn1.h
5ce278a7
BL
298e_padlock.o: ../include/openssl/bio.h ../include/openssl/buffer.h
299e_padlock.o: ../include/openssl/crypto.h ../include/openssl/dso.h
300e_padlock.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
301e_padlock.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
00b4e083
AP
302e_padlock.o: ../include/openssl/engine.h ../include/openssl/err.h
303e_padlock.o: ../include/openssl/evp.h ../include/openssl/lhash.h
f3917502
BM
304e_padlock.o: ../include/openssl/modes.h ../include/openssl/obj_mac.h
305e_padlock.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
306e_padlock.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
307e_padlock.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
308e_padlock.o: ../include/openssl/safestack.h ../include/openssl/sha.h
309e_padlock.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
310e_padlock.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
311e_padlock.o: e_padlock.c
3b408d83
UM
312e_sureware.o: ../include/openssl/asn1.h ../include/openssl/bio.h
313e_sureware.o: ../include/openssl/bn.h ../include/openssl/buffer.h
314e_sureware.o: ../include/openssl/crypto.h ../include/openssl/dh.h
315e_sureware.o: ../include/openssl/dsa.h ../include/openssl/dso.h
316e_sureware.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
317e_sureware.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
318e_sureware.o: ../include/openssl/engine.h ../include/openssl/err.h
319e_sureware.o: ../include/openssl/evp.h ../include/openssl/lhash.h
320e_sureware.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
321e_sureware.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
322e_sureware.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
323e_sureware.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
324e_sureware.o: ../include/openssl/rand.h ../include/openssl/rsa.h
325e_sureware.o: ../include/openssl/safestack.h ../include/openssl/sha.h
326e_sureware.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
327e_sureware.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
328e_sureware.o: e_sureware.c e_sureware_err.c e_sureware_err.h
329e_sureware.o: vendor_defns/sureware.h
330e_ubsec.o: ../include/openssl/asn1.h ../include/openssl/bio.h
331e_ubsec.o: ../include/openssl/bn.h ../include/openssl/buffer.h
332e_ubsec.o: ../include/openssl/crypto.h ../include/openssl/dh.h
333e_ubsec.o: ../include/openssl/dsa.h ../include/openssl/dso.h
5ce278a7
BL
334e_ubsec.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
335e_ubsec.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
336e_ubsec.o: ../include/openssl/engine.h ../include/openssl/err.h
337e_ubsec.o: ../include/openssl/evp.h ../include/openssl/lhash.h
338e_ubsec.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
3b408d83 339e_ubsec.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
5ce278a7
BL
340e_ubsec.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
341e_ubsec.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
342e_ubsec.o: ../include/openssl/sha.h ../include/openssl/stack.h
343e_ubsec.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
344e_ubsec.o: ../include/openssl/x509_vfy.h e_ubsec.c e_ubsec_err.c e_ubsec_err.h
3b408d83 345e_ubsec.o: vendor_defns/hw_ubsec.h