Makefile revision 160814
1142425Snectar#
2142425Snectar# OpenSSL/crypto/engine/Makefile
3142425Snectar#
4142425Snectar
5142425SnectarDIR=	engine
6142425SnectarTOP=	../..
7142425SnectarCC=	cc
8142425SnectarINCLUDES= -I.. -I$(TOP) -I../../include
9142425SnectarCFLAG=-g
10142425SnectarMAKEFILE=	Makefile
11142425SnectarAR=		ar r
12142425Snectar
13142425SnectarCFLAGS= $(INCLUDES) $(CFLAG)
14142425Snectar
15142425SnectarGENERAL=Makefile
16142425SnectarTEST= enginetest.c
17142425SnectarAPPS=
18142425Snectar
19142425SnectarLIB=$(TOP)/libcrypto.a
20142425SnectarLIBSRC= eng_err.c eng_lib.c eng_list.c eng_init.c eng_ctrl.c \
21142425Snectar	eng_table.c eng_pkey.c eng_fat.c eng_all.c \
22160814Ssimon	tb_rsa.c tb_dsa.c tb_ecdsa.c tb_dh.c tb_ecdh.c tb_rand.c tb_store.c \
23160814Ssimon	tb_cipher.c tb_digest.c \
24160814Ssimon	eng_openssl.c eng_cnf.c eng_dyn.c eng_cryptodev.c eng_padlock.c
25142425SnectarLIBOBJ= eng_err.o eng_lib.o eng_list.o eng_init.o eng_ctrl.o \
26142425Snectar	eng_table.o eng_pkey.o eng_fat.o eng_all.o \
27160814Ssimon	tb_rsa.o tb_dsa.o tb_ecdsa.o tb_dh.o tb_ecdh.o tb_rand.o tb_store.o \
28160814Ssimon	tb_cipher.o tb_digest.o \
29160814Ssimon	eng_openssl.o eng_cnf.o eng_dyn.o eng_cryptodev.o eng_padlock.o
30142425Snectar
31142425SnectarSRC= $(LIBSRC)
32142425Snectar
33142425SnectarEXHEADER= engine.h
34142425SnectarHEADER=	$(EXHEADER)
35142425Snectar
36142425SnectarALL=    $(GENERAL) $(SRC) $(HEADER)
37142425Snectar
38142425Snectartop:
39142425Snectar	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
40142425Snectar
41142425Snectarall:	lib
42142425Snectar
43142425Snectarlib:	$(LIBOBJ)
44142425Snectar	$(AR) $(LIB) $(LIBOBJ)
45142425Snectar	$(RANLIB) $(LIB) || echo Never mind.
46142425Snectar	@touch lib
47142425Snectar
48142425Snectarfiles:
49142425Snectar	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
50142425Snectar
51142425Snectarlinks:
52142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
53142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
54142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
55142425Snectar
56142425Snectarinstall:
57160814Ssimon	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
58160814Ssimon	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
59142425Snectar	do  \
60142425Snectar	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
61142425Snectar	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
62142425Snectar	done;
63142425Snectar
64142425Snectartags:
65142425Snectar	ctags $(SRC)
66142425Snectar
67142425Snectartests:
68142425Snectar
69142425Snectarlint:
70142425Snectar	lint -DLINT $(INCLUDES) $(SRC)>fluff
71142425Snectar
72142425Snectardepend:
73160814Ssimon	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
74142425Snectar	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
75142425Snectar
76142425Snectardclean:
77142425Snectar	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
78142425Snectar	mv -f Makefile.new $(MAKEFILE)
79142425Snectar
80142425Snectarclean:
81142425Snectar	rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
82142425Snectar
83142425Snectar# DO NOT DELETE THIS LINE -- make depend depends on it.
84142425Snectar
85160814Ssimoneng_all.o: ../../e_os.h ../../include/openssl/bio.h
86160814Ssimoneng_all.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
87142425Snectareng_all.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
88142425Snectareng_all.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
89142425Snectareng_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
90160814Ssimoneng_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
91142425Snectareng_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
92160814Ssimoneng_all.o: ../cryptlib.h eng_all.c eng_int.h
93160814Ssimoneng_cnf.o: ../../e_os.h ../../include/openssl/bio.h
94142425Snectareng_cnf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
95160814Ssimoneng_cnf.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
96142425Snectareng_cnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h
97142425Snectareng_cnf.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
98142425Snectareng_cnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
99142425Snectareng_cnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
100160814Ssimoneng_cnf.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_cnf.c eng_int.h
101160814Ssimoneng_cryptodev.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
102160814Ssimoneng_cryptodev.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
103160814Ssimoneng_cryptodev.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
104160814Ssimoneng_cryptodev.o: ../../include/openssl/evp.h ../../include/openssl/obj_mac.h
105160814Ssimoneng_cryptodev.o: ../../include/openssl/objects.h
106160814Ssimoneng_cryptodev.o: ../../include/openssl/opensslconf.h
107160814Ssimoneng_cryptodev.o: ../../include/openssl/opensslv.h
108160814Ssimoneng_cryptodev.o: ../../include/openssl/ossl_typ.h
109160814Ssimoneng_cryptodev.o: ../../include/openssl/safestack.h
110160814Ssimoneng_cryptodev.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
111160814Ssimoneng_cryptodev.o: eng_cryptodev.c
112160814Ssimoneng_ctrl.o: ../../e_os.h ../../include/openssl/bio.h
113142425Snectareng_ctrl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
114142425Snectareng_ctrl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
115142425Snectareng_ctrl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
116142425Snectareng_ctrl.o: ../../include/openssl/opensslconf.h
117142425Snectareng_ctrl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
118142425Snectareng_ctrl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
119160814Ssimoneng_ctrl.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_ctrl.c eng_int.h
120160814Ssimoneng_dyn.o: ../../e_os.h ../../include/openssl/bio.h
121142425Snectareng_dyn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
122142425Snectareng_dyn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
123142425Snectareng_dyn.o: ../../include/openssl/engine.h ../../include/openssl/err.h
124142425Snectareng_dyn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
125142425Snectareng_dyn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
126142425Snectareng_dyn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
127160814Ssimoneng_dyn.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_dyn.c eng_int.h
128160814Ssimoneng_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
129142425Snectareng_err.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
130142425Snectareng_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
131142425Snectareng_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
132160814Ssimoneng_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
133142425Snectareng_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
134160814Ssimoneng_err.o: eng_err.c
135160814Ssimoneng_fat.o: ../../e_os.h ../../include/openssl/bio.h
136142425Snectareng_fat.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
137160814Ssimoneng_fat.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
138142425Snectareng_fat.o: ../../include/openssl/engine.h ../../include/openssl/err.h
139142425Snectareng_fat.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
140142425Snectareng_fat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
141142425Snectareng_fat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
142160814Ssimoneng_fat.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_fat.c eng_int.h
143160814Ssimoneng_init.o: ../../e_os.h ../../include/openssl/bio.h
144142425Snectareng_init.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
145142425Snectareng_init.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
146142425Snectareng_init.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
147142425Snectareng_init.o: ../../include/openssl/opensslconf.h
148142425Snectareng_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
149142425Snectareng_init.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
150160814Ssimoneng_init.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_init.c eng_int.h
151160814Ssimoneng_lib.o: ../../e_os.h ../../include/openssl/bio.h
152142425Snectareng_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
153142425Snectareng_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
154142425Snectareng_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
155142425Snectareng_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
156142425Snectareng_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
157160814Ssimoneng_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
158160814Ssimoneng_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h eng_lib.c
159160814Ssimoneng_list.o: ../../e_os.h ../../include/openssl/bio.h
160142425Snectareng_list.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
161142425Snectareng_list.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
162142425Snectareng_list.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
163142425Snectareng_list.o: ../../include/openssl/opensslconf.h
164142425Snectareng_list.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
165142425Snectareng_list.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
166160814Ssimoneng_list.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h eng_list.c
167160814Ssimoneng_openssl.o: ../../e_os.h ../../include/openssl/asn1.h
168160814Ssimoneng_openssl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
169160814Ssimoneng_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
170142425Snectareng_openssl.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
171160814Ssimoneng_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
172160814Ssimoneng_openssl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
173160814Ssimoneng_openssl.o: ../../include/openssl/engine.h ../../include/openssl/err.h
174160814Ssimoneng_openssl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
175142425Snectareng_openssl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
176142425Snectareng_openssl.o: ../../include/openssl/opensslconf.h
177142425Snectareng_openssl.o: ../../include/openssl/opensslv.h
178142425Snectareng_openssl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
179142425Snectareng_openssl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
180160814Ssimoneng_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc4.h
181160814Ssimoneng_openssl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
182160814Ssimoneng_openssl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
183160814Ssimoneng_openssl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
184160814Ssimoneng_openssl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_openssl.c
185160814Ssimoneng_padlock.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h
186160814Ssimoneng_padlock.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
187160814Ssimoneng_padlock.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
188160814Ssimoneng_padlock.o: ../../include/openssl/engine.h ../../include/openssl/err.h
189160814Ssimoneng_padlock.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
190160814Ssimoneng_padlock.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
191160814Ssimoneng_padlock.o: ../../include/openssl/opensslconf.h
192160814Ssimoneng_padlock.o: ../../include/openssl/opensslv.h
193160814Ssimoneng_padlock.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
194160814Ssimoneng_padlock.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
195160814Ssimoneng_padlock.o: ../../include/openssl/symhacks.h eng_padlock.c
196160814Ssimoneng_pkey.o: ../../e_os.h ../../include/openssl/bio.h
197142425Snectareng_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
198142425Snectareng_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
199142425Snectareng_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
200142425Snectareng_pkey.o: ../../include/openssl/opensslconf.h
201142425Snectareng_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
202142425Snectareng_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
203160814Ssimoneng_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h eng_pkey.c
204160814Ssimoneng_table.o: ../../e_os.h ../../include/openssl/asn1.h
205160814Ssimoneng_table.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
206160814Ssimoneng_table.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
207142425Snectareng_table.o: ../../include/openssl/engine.h ../../include/openssl/err.h
208160814Ssimoneng_table.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
209160814Ssimoneng_table.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
210142425Snectareng_table.o: ../../include/openssl/opensslconf.h
211142425Snectareng_table.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
212160814Ssimoneng_table.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
213160814Ssimoneng_table.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h
214160814Ssimoneng_table.o: eng_table.c
215160814Ssimontb_cipher.o: ../../e_os.h ../../include/openssl/bio.h
216160814Ssimontb_cipher.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
217160814Ssimontb_cipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
218160814Ssimontb_cipher.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
219142425Snectartb_cipher.o: ../../include/openssl/opensslconf.h
220142425Snectartb_cipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
221160814Ssimontb_cipher.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
222160814Ssimontb_cipher.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h
223160814Ssimontb_cipher.o: tb_cipher.c
224160814Ssimontb_dh.o: ../../e_os.h ../../include/openssl/bio.h
225160814Ssimontb_dh.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
226160814Ssimontb_dh.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
227160814Ssimontb_dh.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
228160814Ssimontb_dh.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
229160814Ssimontb_dh.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
230142425Snectartb_dh.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
231160814Ssimontb_dh.o: ../cryptlib.h eng_int.h tb_dh.c
232160814Ssimontb_digest.o: ../../e_os.h ../../include/openssl/bio.h
233160814Ssimontb_digest.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
234160814Ssimontb_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
235160814Ssimontb_digest.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
236142425Snectartb_digest.o: ../../include/openssl/opensslconf.h
237142425Snectartb_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
238160814Ssimontb_digest.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
239160814Ssimontb_digest.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h
240160814Ssimontb_digest.o: tb_digest.c
241160814Ssimontb_dsa.o: ../../e_os.h ../../include/openssl/bio.h
242160814Ssimontb_dsa.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
243160814Ssimontb_dsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
244160814Ssimontb_dsa.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
245160814Ssimontb_dsa.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
246160814Ssimontb_dsa.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
247142425Snectartb_dsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
248160814Ssimontb_dsa.o: ../cryptlib.h eng_int.h tb_dsa.c
249160814Ssimontb_ecdh.o: ../../e_os.h ../../include/openssl/bio.h
250160814Ssimontb_ecdh.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
251160814Ssimontb_ecdh.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
252160814Ssimontb_ecdh.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
253160814Ssimontb_ecdh.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
254160814Ssimontb_ecdh.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
255160814Ssimontb_ecdh.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
256160814Ssimontb_ecdh.o: ../cryptlib.h eng_int.h tb_ecdh.c
257160814Ssimontb_ecdsa.o: ../../e_os.h ../../include/openssl/bio.h
258160814Ssimontb_ecdsa.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
259160814Ssimontb_ecdsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
260160814Ssimontb_ecdsa.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
261160814Ssimontb_ecdsa.o: ../../include/openssl/opensslconf.h
262160814Ssimontb_ecdsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
263160814Ssimontb_ecdsa.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
264160814Ssimontb_ecdsa.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h tb_ecdsa.c
265160814Ssimontb_rand.o: ../../e_os.h ../../include/openssl/bio.h
266160814Ssimontb_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
267160814Ssimontb_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
268160814Ssimontb_rand.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
269160814Ssimontb_rand.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
270160814Ssimontb_rand.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
271142425Snectartb_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
272160814Ssimontb_rand.o: ../cryptlib.h eng_int.h tb_rand.c
273160814Ssimontb_rsa.o: ../../e_os.h ../../include/openssl/bio.h
274160814Ssimontb_rsa.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
275160814Ssimontb_rsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
276160814Ssimontb_rsa.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
277160814Ssimontb_rsa.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
278160814Ssimontb_rsa.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
279142425Snectartb_rsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
280160814Ssimontb_rsa.o: ../cryptlib.h eng_int.h tb_rsa.c
281160814Ssimontb_store.o: ../../e_os.h ../../include/openssl/bio.h
282160814Ssimontb_store.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
283160814Ssimontb_store.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
284160814Ssimontb_store.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
285160814Ssimontb_store.o: ../../include/openssl/opensslconf.h
286160814Ssimontb_store.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
287160814Ssimontb_store.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
288160814Ssimontb_store.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h tb_store.c
289