7b480d00e36748d200d45e68e32ddc384d073f25
[openssl.git] / crypto / engine / Makefile.ssl
1 #
2 # OpenSSL/crypto/engine/Makefile
3 #
4
5 DIR=    engine
6 TOP=    ../..
7 CC=     cc
8 INCLUDES= -I.. -I$(TOP) -I../../include
9 CFLAG=-g
10 INSTALL_PREFIX=
11 OPENSSLDIR=     /usr/local/ssl
12 INSTALLTOP=/usr/local/ssl
13 MAKE=           make -f Makefile.ssl
14 MAKEDEPPROG=    makedepend
15 MAKEDEPEND=     $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
16 MAKEFILE=       Makefile.ssl
17 AR=             ar r
18
19 CFLAGS= $(INCLUDES) $(CFLAG)
20
21 GENERAL=Makefile
22 TEST= enginetest.c
23 APPS=
24
25 LIB=$(TOP)/libcrypto.a
26 LIBSRC= eng_err.c eng_lib.c eng_list.c eng_init.c eng_ctrl.c \
27         eng_table.c eng_pkey.c eng_fat.c eng_all.c \
28         tb_rsa.c tb_dsa.c tb_dh.c tb_rand.c tb_cipher.c tb_digest.c \
29         eng_openssl.c eng_dyn.c eng_cnf.c \
30         hw_atalla.c hw_cswift.c hw_ncipher.c hw_nuron.c hw_ubsec.c \
31         hw_openbsd_dev_crypto.c hw_aep.c hw_sureware.c
32 LIBOBJ= eng_err.o eng_lib.o eng_list.o eng_init.o eng_ctrl.o \
33         eng_table.o eng_pkey.o eng_fat.o eng_all.o \
34         tb_rsa.o tb_dsa.o tb_dh.o tb_rand.o tb_cipher.o tb_digest.o \
35         eng_openssl.o eng_dyn.o eng_cnf.o \
36         hw_atalla.o hw_cswift.o hw_ncipher.o hw_nuron.o hw_ubsec.o \
37         hw_openbsd_dev_crypto.o hw_aep.o hw_sureware.o
38
39 SRC= $(LIBSRC)
40
41 EXHEADER= engine.h
42 HEADER= $(EXHEADER)
43
44 ALL=    $(GENERAL) $(SRC) $(HEADER)
45
46 top:
47         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
48
49 all:    lib
50
51 lib:    $(LIBOBJ)
52         $(AR) $(LIB) $(LIBOBJ)
53         $(RANLIB) $(LIB)
54         @touch lib
55
56 files:
57         $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
58
59 links:
60         @$(TOP)/util/point.sh Makefile.ssl Makefile
61         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
62         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
63         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
64
65 install:
66         @for i in $(EXHEADER) ; \
67         do  \
68         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
69         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
70         done;
71
72 tags:
73         ctags $(SRC)
74
75 errors:
76         $(PERL) $(TOP)/util/mkerr.pl -conf hw.ec \
77                 -nostatic -staticloader -write hw_*.c; \
78
79 tests:
80
81 lint:
82         lint -DLINT $(INCLUDES) $(SRC)>fluff
83
84 depend:
85         $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
86
87 dclean:
88         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
89         mv -f Makefile.new $(MAKEFILE)
90
91 clean:
92         rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
93
94 # DO NOT DELETE THIS LINE -- make depend depends on it.
95
96 eng_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
97 eng_all.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
98 eng_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
99 eng_all.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
100 eng_all.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
101 eng_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
102 eng_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
103 eng_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
104 eng_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
105 eng_all.o: ../../include/openssl/ui.h eng_all.c eng_int.h
106 eng_cnf.o: ../../e_os.h ../../include/openssl/asn1.h
107 eng_cnf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
108 eng_cnf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
109 eng_cnf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
110 eng_cnf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
111 eng_cnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h
112 eng_cnf.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
113 eng_cnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
114 eng_cnf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
115 eng_cnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
116 eng_cnf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
117 eng_cnf.o: ../cryptlib.h eng_cnf.c
118 eng_ctrl.o: ../../e_os.h ../../include/openssl/asn1.h
119 eng_ctrl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
120 eng_ctrl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
121 eng_ctrl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
122 eng_ctrl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
123 eng_ctrl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
124 eng_ctrl.o: ../../include/openssl/opensslconf.h
125 eng_ctrl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
126 eng_ctrl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
127 eng_ctrl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
128 eng_ctrl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
129 eng_ctrl.o: ../cryptlib.h eng_ctrl.c eng_int.h
130 eng_dyn.o: ../../e_os.h ../../include/openssl/asn1.h
131 eng_dyn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
132 eng_dyn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
133 eng_dyn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
134 eng_dyn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
135 eng_dyn.o: ../../include/openssl/engine.h ../../include/openssl/err.h
136 eng_dyn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
137 eng_dyn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
138 eng_dyn.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
139 eng_dyn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
140 eng_dyn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
141 eng_dyn.o: ../cryptlib.h eng_dyn.c eng_int.h
142 eng_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
143 eng_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
144 eng_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
145 eng_err.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
146 eng_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
147 eng_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
148 eng_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
149 eng_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
150 eng_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
151 eng_err.o: ../../include/openssl/ui.h eng_err.c
152 eng_fat.o: ../../e_os.h ../../include/openssl/asn1.h
153 eng_fat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
154 eng_fat.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
155 eng_fat.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
156 eng_fat.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
157 eng_fat.o: ../../include/openssl/engine.h ../../include/openssl/err.h
158 eng_fat.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
159 eng_fat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
160 eng_fat.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
161 eng_fat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
162 eng_fat.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
163 eng_fat.o: ../cryptlib.h eng_fat.c eng_int.h
164 eng_init.o: ../../e_os.h ../../include/openssl/asn1.h
165 eng_init.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
166 eng_init.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
167 eng_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
168 eng_init.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
169 eng_init.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
170 eng_init.o: ../../include/openssl/opensslconf.h
171 eng_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
172 eng_init.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
173 eng_init.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
174 eng_init.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
175 eng_init.o: ../cryptlib.h eng_init.c eng_int.h
176 eng_lib.o: ../../e_os.h ../../include/openssl/asn1.h
177 eng_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
178 eng_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
179 eng_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
180 eng_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
181 eng_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
182 eng_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
183 eng_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
184 eng_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
185 eng_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
186 eng_lib.o: ../../include/openssl/ui.h ../cryptlib.h eng_int.h eng_lib.c
187 eng_list.o: ../../e_os.h ../../include/openssl/asn1.h
188 eng_list.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
189 eng_list.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
190 eng_list.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
191 eng_list.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
192 eng_list.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
193 eng_list.o: ../../include/openssl/opensslconf.h
194 eng_list.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
195 eng_list.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
196 eng_list.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
197 eng_list.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
198 eng_list.o: ../cryptlib.h eng_int.h eng_list.c
199 eng_openssl.o: ../../e_os.h ../../include/openssl/asn1.h
200 eng_openssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
201 eng_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
202 eng_openssl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
203 eng_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
204 eng_openssl.o: ../../include/openssl/engine.h ../../include/openssl/err.h
205 eng_openssl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
206 eng_openssl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
207 eng_openssl.o: ../../include/openssl/opensslconf.h
208 eng_openssl.o: ../../include/openssl/opensslv.h
209 eng_openssl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
210 eng_openssl.o: ../../include/openssl/rc4.h ../../include/openssl/rsa.h
211 eng_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
212 eng_openssl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
213 eng_openssl.o: ../../include/openssl/ui.h ../cryptlib.h eng_openssl.c
214 eng_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
215 eng_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
216 eng_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
217 eng_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
218 eng_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
219 eng_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
220 eng_pkey.o: ../../include/openssl/opensslconf.h
221 eng_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
222 eng_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
223 eng_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
224 eng_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
225 eng_pkey.o: ../cryptlib.h eng_int.h eng_pkey.c
226 eng_table.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
227 eng_table.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
228 eng_table.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
229 eng_table.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
230 eng_table.o: ../../include/openssl/err.h ../../include/openssl/evp.h
231 eng_table.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
232 eng_table.o: ../../include/openssl/objects.h
233 eng_table.o: ../../include/openssl/opensslconf.h
234 eng_table.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
235 eng_table.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
236 eng_table.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
237 eng_table.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
238 eng_table.o: eng_int.h eng_table.c
239 hw_aep.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
240 hw_aep.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
241 hw_aep.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
242 hw_aep.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
243 hw_aep.o: ../../include/openssl/engine.h ../../include/openssl/err.h
244 hw_aep.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
245 hw_aep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
246 hw_aep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
247 hw_aep.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
248 hw_aep.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h hw_aep.c
249 hw_aep.o: hw_aep_err.c hw_aep_err.h vendor_defns/aep.h
250 hw_atalla.o: ../../e_os.h ../../include/openssl/asn1.h
251 hw_atalla.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
252 hw_atalla.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
253 hw_atalla.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
254 hw_atalla.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
255 hw_atalla.o: ../../include/openssl/engine.h ../../include/openssl/err.h
256 hw_atalla.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
257 hw_atalla.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
258 hw_atalla.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
259 hw_atalla.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
260 hw_atalla.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
261 hw_atalla.o: ../cryptlib.h hw_atalla.c hw_atalla_err.c hw_atalla_err.h
262 hw_atalla.o: vendor_defns/atalla.h
263 hw_cswift.o: ../../e_os.h ../../include/openssl/asn1.h
264 hw_cswift.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
265 hw_cswift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
266 hw_cswift.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
267 hw_cswift.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
268 hw_cswift.o: ../../include/openssl/engine.h ../../include/openssl/err.h
269 hw_cswift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
270 hw_cswift.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
271 hw_cswift.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
272 hw_cswift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
273 hw_cswift.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
274 hw_cswift.o: ../cryptlib.h hw_cswift.c hw_cswift_err.c hw_cswift_err.h
275 hw_cswift.o: vendor_defns/cswift.h
276 hw_ncipher.o: ../../e_os.h ../../include/openssl/asn1.h
277 hw_ncipher.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
278 hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
279 hw_ncipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
280 hw_ncipher.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
281 hw_ncipher.o: ../../include/openssl/engine.h ../../include/openssl/err.h
282 hw_ncipher.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
283 hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
284 hw_ncipher.o: ../../include/openssl/opensslconf.h
285 hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
286 hw_ncipher.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
287 hw_ncipher.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
288 hw_ncipher.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
289 hw_ncipher.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
290 hw_ncipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
291 hw_ncipher.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
292 hw_ncipher.o: ../cryptlib.h hw_ncipher.c hw_ncipher_err.c hw_ncipher_err.h
293 hw_ncipher.o: vendor_defns/hwcryptohook.h
294 hw_nuron.o: ../../e_os.h ../../include/openssl/asn1.h
295 hw_nuron.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
296 hw_nuron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
297 hw_nuron.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
298 hw_nuron.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
299 hw_nuron.o: ../../include/openssl/engine.h ../../include/openssl/err.h
300 hw_nuron.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
301 hw_nuron.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
302 hw_nuron.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
303 hw_nuron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
304 hw_nuron.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
305 hw_nuron.o: ../cryptlib.h hw_nuron.c hw_nuron_err.c hw_nuron_err.h
306 hw_openbsd_dev_crypto.o: ../../include/openssl/asn1.h
307 hw_openbsd_dev_crypto.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
308 hw_openbsd_dev_crypto.o: ../../include/openssl/conf.h
309 hw_openbsd_dev_crypto.o: ../../include/openssl/crypto.h
310 hw_openbsd_dev_crypto.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
311 hw_openbsd_dev_crypto.o: ../../include/openssl/e_os2.h
312 hw_openbsd_dev_crypto.o: ../../include/openssl/engine.h
313 hw_openbsd_dev_crypto.o: ../../include/openssl/err.h
314 hw_openbsd_dev_crypto.o: ../../include/openssl/evp.h
315 hw_openbsd_dev_crypto.o: ../../include/openssl/lhash.h
316 hw_openbsd_dev_crypto.o: ../../include/openssl/obj_mac.h
317 hw_openbsd_dev_crypto.o: ../../include/openssl/objects.h
318 hw_openbsd_dev_crypto.o: ../../include/openssl/opensslconf.h
319 hw_openbsd_dev_crypto.o: ../../include/openssl/opensslv.h
320 hw_openbsd_dev_crypto.o: ../../include/openssl/ossl_typ.h
321 hw_openbsd_dev_crypto.o: ../../include/openssl/rand.h
322 hw_openbsd_dev_crypto.o: ../../include/openssl/rsa.h
323 hw_openbsd_dev_crypto.o: ../../include/openssl/safestack.h
324 hw_openbsd_dev_crypto.o: ../../include/openssl/stack.h
325 hw_openbsd_dev_crypto.o: ../../include/openssl/symhacks.h
326 hw_openbsd_dev_crypto.o: ../../include/openssl/ui.h ../evp/evp_locl.h eng_int.h
327 hw_openbsd_dev_crypto.o: hw_openbsd_dev_crypto.c
328 hw_sureware.o: ../../e_os.h ../../include/openssl/asn1.h
329 hw_sureware.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
330 hw_sureware.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
331 hw_sureware.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
332 hw_sureware.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
333 hw_sureware.o: ../../include/openssl/engine.h ../../include/openssl/err.h
334 hw_sureware.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
335 hw_sureware.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
336 hw_sureware.o: ../../include/openssl/opensslconf.h
337 hw_sureware.o: ../../include/openssl/opensslv.h
338 hw_sureware.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
339 hw_sureware.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
340 hw_sureware.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
341 hw_sureware.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
342 hw_sureware.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
343 hw_sureware.o: ../../include/openssl/ui.h ../../include/openssl/x509.h
344 hw_sureware.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h
345 hw_sureware.o: engine.h hw_sureware.c hw_sureware_err.c hw_sureware_err.h
346 hw_sureware.o: vendor_defns/sureware.h
347 hw_ubsec.o: ../../e_os.h ../../include/openssl/asn1.h
348 hw_ubsec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
349 hw_ubsec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
350 hw_ubsec.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
351 hw_ubsec.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
352 hw_ubsec.o: ../../include/openssl/engine.h ../../include/openssl/err.h
353 hw_ubsec.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
354 hw_ubsec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
355 hw_ubsec.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
356 hw_ubsec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
357 hw_ubsec.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
358 hw_ubsec.o: ../cryptlib.h hw_ubsec.c hw_ubsec_err.c hw_ubsec_err.h
359 hw_ubsec.o: vendor_defns/hw_ubsec.h
360 tb_cipher.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
361 tb_cipher.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
362 tb_cipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
363 tb_cipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
364 tb_cipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h
365 tb_cipher.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
366 tb_cipher.o: ../../include/openssl/objects.h
367 tb_cipher.o: ../../include/openssl/opensslconf.h
368 tb_cipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
369 tb_cipher.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
370 tb_cipher.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
371 tb_cipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
372 tb_cipher.o: eng_int.h tb_cipher.c
373 tb_dh.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
374 tb_dh.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
375 tb_dh.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
376 tb_dh.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
377 tb_dh.o: ../../include/openssl/err.h ../../include/openssl/evp.h
378 tb_dh.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
379 tb_dh.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
380 tb_dh.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
381 tb_dh.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
382 tb_dh.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
383 tb_dh.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h
384 tb_dh.o: tb_dh.c
385 tb_digest.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
386 tb_digest.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
387 tb_digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
388 tb_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
389 tb_digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h
390 tb_digest.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
391 tb_digest.o: ../../include/openssl/objects.h
392 tb_digest.o: ../../include/openssl/opensslconf.h
393 tb_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
394 tb_digest.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
395 tb_digest.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
396 tb_digest.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
397 tb_digest.o: eng_int.h tb_digest.c
398 tb_dsa.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
399 tb_dsa.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
400 tb_dsa.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
401 tb_dsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
402 tb_dsa.o: ../../include/openssl/err.h ../../include/openssl/evp.h
403 tb_dsa.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
404 tb_dsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
405 tb_dsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
406 tb_dsa.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
407 tb_dsa.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
408 tb_dsa.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h
409 tb_dsa.o: tb_dsa.c
410 tb_rand.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
411 tb_rand.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
412 tb_rand.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
413 tb_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
414 tb_rand.o: ../../include/openssl/err.h ../../include/openssl/evp.h
415 tb_rand.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
416 tb_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
417 tb_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
418 tb_rand.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
419 tb_rand.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
420 tb_rand.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
421 tb_rand.o: eng_int.h tb_rand.c
422 tb_rsa.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
423 tb_rsa.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
424 tb_rsa.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
425 tb_rsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
426 tb_rsa.o: ../../include/openssl/err.h ../../include/openssl/evp.h
427 tb_rsa.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
428 tb_rsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
429 tb_rsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
430 tb_rsa.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
431 tb_rsa.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
432 tb_rsa.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h
433 tb_rsa.o: tb_rsa.c