Makefile.ssl 17.8 KB
Newer Older
1 2 3 4 5 6 7
#
# OpenSSL/crypto/engine/Makefile
#

DIR=	engine
TOP=	../..
CC=	cc
8
INCLUDES= -I.. -I$(TOP) -I../../include
9 10 11 12 13
CFLAG=-g
INSTALL_PREFIX=
OPENSSLDIR=     /usr/local/ssl
INSTALLTOP=/usr/local/ssl
MAKE=		make -f Makefile.ssl
14 15
MAKEDEPPROG=	makedepend
MAKEDEPEND=	$(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
16 17 18 19 20 21 22 23 24 25
MAKEFILE=	Makefile.ssl
AR=		ar r

CFLAGS= $(INCLUDES) $(CFLAG)

GENERAL=Makefile
TEST= enginetest.c
APPS=

LIB=$(TOP)/libcrypto.a
26
LIBSRC= engine_err.c engine_lib.c engine_list.c engine_all.c engine_openssl.c \
27
	hw_atalla.c hw_cswift.c hw_ncipher.c hw_nuron.c hw_ubsec.c
28
LIBOBJ= engine_err.o engine_lib.o engine_list.o engine_all.o engine_openssl.o \
29
	hw_atalla.o hw_cswift.o hw_ncipher.o hw_nuron.o hw_ubsec.o
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

SRC= $(LIBSRC)

EXHEADER= engine.h
HEADER=	$(EXHEADER)

ALL=    $(GENERAL) $(SRC) $(HEADER)

top:
	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)

all:	lib

lib:	$(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
	$(RANLIB) $(LIB)
	@touch lib

files:
	$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO

links:
	@$(TOP)/util/point.sh Makefile.ssl Makefile
	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)

install:
	@for i in $(EXHEADER) ; \
	do  \
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
	done;

tags:
	ctags $(SRC)

tests:

lint:
	lint -DLINT $(INCLUDES) $(SRC)>fluff

depend:
	$(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)

dclean:
	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
	mv -f Makefile.new $(MAKEFILE)

clean:
	rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff

# DO NOT DELETE THIS LINE -- make depend depends on it.

R
Richard Levitte 已提交
84 85
engine_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
engine_all.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
R
Richard Levitte 已提交
86 87 88 89 90 91 92 93 94
engine_all.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
engine_all.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
engine_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
engine_all.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
engine_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h
engine_all.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
engine_all.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
engine_all.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
engine_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
95
engine_all.o: ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
96 97 98 99 100 101 102 103
engine_all.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h
engine_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
engine_all.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
engine_all.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
engine_all.o: ../../include/openssl/rd_fst.h ../../include/openssl/rijndael.h
engine_all.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
engine_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
engine_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
R
Richard Levitte 已提交
104 105
engine_all.o: ../../include/openssl/ui.h ../../include/openssl/x509.h
engine_all.o: ../../include/openssl/x509_vfy.h engine_all.c engine_int.h
R
Richard Levitte 已提交
106 107
engine_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
engine_err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
R
Richard Levitte 已提交
108 109 110 111 112 113 114 115 116
engine_err.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
engine_err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
engine_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
engine_err.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
engine_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
engine_err.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
engine_err.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
engine_err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
engine_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
117
engine_err.o: ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
118 119 120 121 122 123 124 125
engine_err.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h
engine_err.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
engine_err.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
engine_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
engine_err.o: ../../include/openssl/rd_fst.h ../../include/openssl/rijndael.h
engine_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
engine_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
engine_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
R
Richard Levitte 已提交
126 127
engine_err.o: ../../include/openssl/ui.h ../../include/openssl/x509.h
engine_err.o: ../../include/openssl/x509_vfy.h engine_err.c
128 129 130 131 132 133
engine_lib.o: ../../e_os.h ../../include/openssl/asn1.h
engine_lib.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
engine_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
engine_lib.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
engine_lib.o: ../../include/openssl/des.h ../../include/openssl/dh.h
engine_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
134 135 136 137 138 139
engine_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h
engine_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
engine_lib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
engine_lib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
engine_lib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
engine_lib.o: ../../include/openssl/objects.h
140
engine_lib.o: ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
141 142 143 144 145 146 147 148
engine_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h
engine_lib.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
engine_lib.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
engine_lib.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
engine_lib.o: ../../include/openssl/rd_fst.h ../../include/openssl/rijndael.h
engine_lib.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
engine_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
engine_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
R
Richard Levitte 已提交
149 150 151
engine_lib.o: ../../include/openssl/ui.h ../../include/openssl/x509.h
engine_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h engine_int.h
engine_lib.o: engine_lib.c
152 153 154 155 156 157
engine_list.o: ../../e_os.h ../../include/openssl/asn1.h
engine_list.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
engine_list.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
engine_list.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
engine_list.o: ../../include/openssl/des.h ../../include/openssl/dh.h
engine_list.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
158 159 160 161 162 163
engine_list.o: ../../include/openssl/engine.h ../../include/openssl/err.h
engine_list.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
engine_list.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
engine_list.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
engine_list.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
engine_list.o: ../../include/openssl/objects.h
164
engine_list.o: ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
165 166 167 168 169 170 171 172
engine_list.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h
engine_list.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
engine_list.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
engine_list.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
engine_list.o: ../../include/openssl/rd_fst.h ../../include/openssl/rijndael.h
engine_list.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
engine_list.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
engine_list.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
R
Richard Levitte 已提交
173 174 175
engine_list.o: ../../include/openssl/ui.h ../../include/openssl/x509.h
engine_list.o: ../../include/openssl/x509_vfy.h ../cryptlib.h engine_int.h
engine_list.o: engine_list.c
176 177 178 179 180 181
engine_openssl.o: ../../e_os.h ../../include/openssl/asn1.h
engine_openssl.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
engine_openssl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
engine_openssl.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
engine_openssl.o: ../../include/openssl/des.h ../../include/openssl/dh.h
engine_openssl.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
182 183 184 185 186 187
engine_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
engine_openssl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
engine_openssl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
engine_openssl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
engine_openssl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
engine_openssl.o: ../../include/openssl/obj_mac.h
188 189
engine_openssl.o: ../../include/openssl/objects.h
engine_openssl.o: ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
190 191 192 193 194
engine_openssl.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h
engine_openssl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
engine_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
engine_openssl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
engine_openssl.o: ../../include/openssl/rd_fst.h
195 196 197 198
engine_openssl.o: ../../include/openssl/rijndael.h
engine_openssl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
engine_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
engine_openssl.o: ../../include/openssl/stack.h
R
Richard Levitte 已提交
199 200 201
engine_openssl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
engine_openssl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
engine_openssl.o: ../cryptlib.h engine_openssl.c
202 203 204 205 206 207
hw_atalla.o: ../../e_os.h ../../include/openssl/asn1.h
hw_atalla.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
hw_atalla.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
hw_atalla.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
hw_atalla.o: ../../include/openssl/des.h ../../include/openssl/dh.h
hw_atalla.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
208 209 210 211 212 213
hw_atalla.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
hw_atalla.o: ../../include/openssl/err.h ../../include/openssl/evp.h
hw_atalla.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
hw_atalla.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
hw_atalla.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
hw_atalla.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
214
hw_atalla.o: ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
215 216 217 218 219 220 221 222
hw_atalla.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h
hw_atalla.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
hw_atalla.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
hw_atalla.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
hw_atalla.o: ../../include/openssl/rd_fst.h ../../include/openssl/rijndael.h
hw_atalla.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
hw_atalla.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
hw_atalla.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
R
Richard Levitte 已提交
223 224 225
hw_atalla.o: ../../include/openssl/ui.h ../../include/openssl/x509.h
hw_atalla.o: ../../include/openssl/x509_vfy.h ../cryptlib.h hw_atalla.c
hw_atalla.o: vendor_defns/atalla.h
226 227 228 229 230 231
hw_cswift.o: ../../e_os.h ../../include/openssl/asn1.h
hw_cswift.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
hw_cswift.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
hw_cswift.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
hw_cswift.o: ../../include/openssl/des.h ../../include/openssl/dh.h
hw_cswift.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
232 233 234 235 236 237
hw_cswift.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
hw_cswift.o: ../../include/openssl/err.h ../../include/openssl/evp.h
hw_cswift.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
hw_cswift.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
hw_cswift.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
hw_cswift.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
238
hw_cswift.o: ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
239 240 241 242 243 244 245 246
hw_cswift.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h
hw_cswift.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
hw_cswift.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
hw_cswift.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
hw_cswift.o: ../../include/openssl/rd_fst.h ../../include/openssl/rijndael.h
hw_cswift.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
hw_cswift.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
hw_cswift.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
R
Richard Levitte 已提交
247 248 249
hw_cswift.o: ../../include/openssl/ui.h ../../include/openssl/x509.h
hw_cswift.o: ../../include/openssl/x509_vfy.h ../cryptlib.h hw_cswift.c
hw_cswift.o: vendor_defns/cswift.h
250 251 252 253 254 255
hw_ncipher.o: ../../e_os.h ../../include/openssl/asn1.h
hw_ncipher.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
hw_ncipher.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
hw_ncipher.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
hw_ncipher.o: ../../include/openssl/des.h ../../include/openssl/dh.h
hw_ncipher.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
256 257 258 259 260 261
hw_ncipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
hw_ncipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h
hw_ncipher.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
hw_ncipher.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
hw_ncipher.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
262 263 264 265 266
hw_ncipher.o: ../../include/openssl/opensslconf.h
hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h
hw_ncipher.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
hw_ncipher.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
hw_ncipher.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
267 268 269 270
hw_ncipher.o: ../../include/openssl/rd_fst.h ../../include/openssl/rijndael.h
hw_ncipher.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
hw_ncipher.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
hw_ncipher.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
R
Richard Levitte 已提交
271 272 273
hw_ncipher.o: ../../include/openssl/ui.h ../../include/openssl/x509.h
hw_ncipher.o: ../../include/openssl/x509_vfy.h ../cryptlib.h hw_ncipher.c
hw_ncipher.o: vendor_defns/hwcryptohook.h
274 275 276 277 278 279
hw_nuron.o: ../../e_os.h ../../include/openssl/asn1.h
hw_nuron.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
hw_nuron.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
hw_nuron.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
hw_nuron.o: ../../include/openssl/des.h ../../include/openssl/dh.h
hw_nuron.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
280 281 282 283 284 285 286
hw_nuron.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
hw_nuron.o: ../../include/openssl/err.h ../../include/openssl/evp.h
hw_nuron.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
hw_nuron.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
hw_nuron.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
hw_nuron.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
hw_nuron.o: ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
287 288 289 290 291 292 293 294
hw_nuron.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h
hw_nuron.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
hw_nuron.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
hw_nuron.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
hw_nuron.o: ../../include/openssl/rd_fst.h ../../include/openssl/rijndael.h
hw_nuron.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
hw_nuron.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
hw_nuron.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
R
Richard Levitte 已提交
295 296
hw_nuron.o: ../../include/openssl/ui.h ../../include/openssl/x509.h
hw_nuron.o: ../../include/openssl/x509_vfy.h ../cryptlib.h hw_nuron.c
297 298 299 300 301 302
hw_ubsec.o: ../../e_os.h ../../include/openssl/asn1.h
hw_ubsec.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
hw_ubsec.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
hw_ubsec.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
hw_ubsec.o: ../../include/openssl/des.h ../../include/openssl/dh.h
hw_ubsec.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
303 304 305 306 307 308 309
hw_ubsec.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
hw_ubsec.o: ../../include/openssl/err.h ../../include/openssl/evp.h
hw_ubsec.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
hw_ubsec.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
hw_ubsec.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
hw_ubsec.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
hw_ubsec.o: ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
310 311 312 313 314 315 316 317
hw_ubsec.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h
hw_ubsec.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
hw_ubsec.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
hw_ubsec.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
hw_ubsec.o: ../../include/openssl/rd_fst.h ../../include/openssl/rijndael.h
hw_ubsec.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
hw_ubsec.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
hw_ubsec.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
R
Richard Levitte 已提交
318 319 320
hw_ubsec.o: ../../include/openssl/ui.h ../../include/openssl/x509.h
hw_ubsec.o: ../../include/openssl/x509_vfy.h ../cryptlib.h hw_ubsec.c
hw_ubsec.o: vendor_defns/hw_ubsec.h