Makefile revision 296341
150476Speter#
2242990Smjg# OpenSSL/crypto/x509/Makefile
37768Sache#
479529Sru
57768SacheDIR=	x509
67768SacheTOP=	../..
77768SacheCC=	cc
87768SacheINCLUDES= -I.. -I$(TOP) -I../../include
97768SacheCFLAG=-g
107768SacheMAKEFILE=	Makefile
117768SacheAR=		ar r
127768Sache
137768SacheCFLAGS= $(INCLUDES) $(CFLAG)
147768Sache
157768SacheGENERAL=Makefile README
1637322SjkoshyTEST=verify_extra_test.c
177768SacheAPPS=
187768Sache
197768SacheLIB=$(TOP)/libcrypto.a
207768SacheLIBSRC=	x509_def.c x509_d2.c x509_r2x.c x509_cmp.c \
217768Sache	x509_obj.c x509_req.c x509spki.c x509_vfy.c \
2271895Sru	x509_set.c x509cset.c x509rset.c x509_err.c \
2337322Sjkoshy	x509name.c x509_v3.c x509_ext.c x509_att.c \
2471895Sru	x509type.c x509_lu.c x_all.c x509_txt.c \
2571895Sru	x509_trs.c by_file.c by_dir.c x509_vpm.c
2637322SjkoshyLIBOBJ= x509_def.o x509_d2.o x509_r2x.o x509_cmp.o \
27108257Sru	x509_obj.o x509_req.o x509spki.o x509_vfy.o \
2837322Sjkoshy	x509_set.o x509cset.o x509rset.o x509_err.o \
297768Sache	x509name.o x509_v3.o x509_ext.o x509_att.o \
30131472Sru	x509type.o x509_lu.o x_all.o x509_txt.o \
3131306Scharnier	x509_trs.o by_file.o by_dir.o x509_vpm.o
3237322Sjkoshy
3337322SjkoshySRC= $(LIBSRC)
34131472Sru
35131472SruEXHEADER= x509.h x509_vfy.h
3637322SjkoshyHEADER=	$(EXHEADER)
37170881Syar
38170881SyarALL=    $(GENERAL) $(SRC) $(HEADER)
39170881Syar
40170881Syartop:
41170881Syar	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
42170881Syar
43170881Syarall:	lib
447768Sache
457768Sachelib:	$(LIBOBJ)
467768Sache	$(AR) $(LIB) $(LIBOBJ)
4731306Scharnier	$(RANLIB) $(LIB) || echo Never mind.
48242990Smjg	@touch lib
497768Sache
507768Sachefiles:
517768Sache	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
527768Sache
537768Sachelinks:
547768Sache	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
5531306Scharnier	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
567768Sache	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
577768Sache
587768Sacheinstall:
597768Sache	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
60170881Syar	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
61170881Syar	do  \
62170881Syar	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
63170881Syar	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
64170881Syar	done;
65170881Syar
66170881Syartags:
6737322Sjkoshy	ctags $(SRC)
687768Sache
697768Sachetests:
707768Sache
7131306Scharnierlint:
727768Sache	lint -DLINT $(INCLUDES) $(SRC)>fluff
73170881Syar
7431306Scharnierupdate: depend
757768Sache
76170881Syardepend:
7731306Scharnier	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
787768Sache	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
79131472Sru
8031306Scharnierdclean:
817768Sache	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
827768Sache	mv -f Makefile.new $(MAKEFILE)
83
84clean:
85	rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
86
87# DO NOT DELETE THIS LINE -- make depend depends on it.
88
89by_dir.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
90by_dir.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
91by_dir.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
92by_dir.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
93by_dir.o: ../../include/openssl/err.h ../../include/openssl/evp.h
94by_dir.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
95by_dir.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
96by_dir.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
97by_dir.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
98by_dir.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
99by_dir.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
100by_dir.o: ../../include/openssl/x509_vfy.h ../cryptlib.h by_dir.c
101by_file.o: ../../e_os.h ../../include/openssl/asn1.h
102by_file.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
103by_file.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
104by_file.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
105by_file.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
106by_file.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
107by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
108by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
109by_file.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
110by_file.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
111by_file.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
112by_file.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
113by_file.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
114by_file.o: ../cryptlib.h by_file.c
115x509_att.o: ../../e_os.h ../../include/openssl/asn1.h
116x509_att.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
117x509_att.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
118x509_att.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
119x509_att.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
120x509_att.o: ../../include/openssl/err.h ../../include/openssl/evp.h
121x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
122x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
123x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
124x509_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
125x509_att.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
126x509_att.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
127x509_att.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
128x509_att.o: ../cryptlib.h x509_att.c
129x509_cmp.o: ../../e_os.h ../../include/openssl/asn1.h
130x509_cmp.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
131x509_cmp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
132x509_cmp.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
133x509_cmp.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
134x509_cmp.o: ../../include/openssl/err.h ../../include/openssl/evp.h
135x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
136x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
137x509_cmp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
138x509_cmp.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
139x509_cmp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
140x509_cmp.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
141x509_cmp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
142x509_cmp.o: ../cryptlib.h x509_cmp.c
143x509_d2.o: ../../e_os.h ../../include/openssl/asn1.h
144x509_d2.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
145x509_d2.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
146x509_d2.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
147x509_d2.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
148x509_d2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
149x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
150x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
151x509_d2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
152x509_d2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
153x509_d2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
154x509_d2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
155x509_d2.o: ../cryptlib.h x509_d2.c
156x509_def.o: ../../e_os.h ../../include/openssl/asn1.h
157x509_def.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
158x509_def.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
159x509_def.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
160x509_def.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
161x509_def.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
162x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
163x509_def.o: ../../include/openssl/opensslconf.h
164x509_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
165x509_def.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
166x509_def.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
167x509_def.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
168x509_def.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_def.c
169x509_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
170x509_err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
171x509_err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
172x509_err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
173x509_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
174x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
175x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
176x509_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
177x509_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
178x509_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
179x509_err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
180x509_err.o: ../../include/openssl/x509_vfy.h x509_err.c
181x509_ext.o: ../../e_os.h ../../include/openssl/asn1.h
182x509_ext.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
183x509_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
184x509_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
185x509_ext.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
186x509_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h
187x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
188x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
189x509_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
190x509_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
191x509_ext.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
192x509_ext.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
193x509_ext.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
194x509_ext.o: ../cryptlib.h x509_ext.c
195x509_lu.o: ../../e_os.h ../../include/openssl/asn1.h
196x509_lu.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
197x509_lu.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
198x509_lu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
199x509_lu.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
200x509_lu.o: ../../include/openssl/err.h ../../include/openssl/evp.h
201x509_lu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
202x509_lu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
203x509_lu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
204x509_lu.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
205x509_lu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
206x509_lu.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
207x509_lu.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
208x509_lu.o: ../cryptlib.h x509_lu.c
209x509_obj.o: ../../e_os.h ../../include/openssl/asn1.h
210x509_obj.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
211x509_obj.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
212x509_obj.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
213x509_obj.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
214x509_obj.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
215x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
216x509_obj.o: ../../include/openssl/opensslconf.h
217x509_obj.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
218x509_obj.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
219x509_obj.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
220x509_obj.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
221x509_obj.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_obj.c
222x509_r2x.o: ../../e_os.h ../../include/openssl/asn1.h
223x509_r2x.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
224x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
225x509_r2x.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
226x509_r2x.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
227x509_r2x.o: ../../include/openssl/err.h ../../include/openssl/evp.h
228x509_r2x.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
229x509_r2x.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
230x509_r2x.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
231x509_r2x.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
232x509_r2x.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
233x509_r2x.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
234x509_r2x.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_r2x.c
235x509_req.o: ../../e_os.h ../../include/openssl/asn1.h
236x509_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
237x509_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
238x509_req.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
239x509_req.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
240x509_req.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
241x509_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
242x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
243x509_req.o: ../../include/openssl/opensslconf.h
244x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
245x509_req.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
246x509_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
247x509_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
248x509_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
249x509_req.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_req.c
250x509_set.o: ../../e_os.h ../../include/openssl/asn1.h
251x509_set.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
252x509_set.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
253x509_set.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
254x509_set.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
255x509_set.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
256x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
257x509_set.o: ../../include/openssl/opensslconf.h
258x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
259x509_set.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
260x509_set.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
261x509_set.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
262x509_set.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_set.c
263x509_trs.o: ../../e_os.h ../../include/openssl/asn1.h
264x509_trs.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
265x509_trs.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
266x509_trs.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
267x509_trs.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
268x509_trs.o: ../../include/openssl/err.h ../../include/openssl/evp.h
269x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
270x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
271x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
272x509_trs.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
273x509_trs.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
274x509_trs.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
275x509_trs.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
276x509_trs.o: ../cryptlib.h x509_trs.c
277x509_txt.o: ../../e_os.h ../../include/openssl/asn1.h
278x509_txt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
279x509_txt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
280x509_txt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
281x509_txt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
282x509_txt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
283x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
284x509_txt.o: ../../include/openssl/opensslconf.h
285x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
286x509_txt.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
287x509_txt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
288x509_txt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
289x509_txt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_txt.c
290x509_v3.o: ../../e_os.h ../../include/openssl/asn1.h
291x509_v3.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
292x509_v3.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
293x509_v3.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
294x509_v3.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
295x509_v3.o: ../../include/openssl/err.h ../../include/openssl/evp.h
296x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
297x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
298x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
299x509_v3.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
300x509_v3.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
301x509_v3.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
302x509_v3.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
303x509_v3.o: ../cryptlib.h x509_v3.c
304x509_vfy.o: ../../e_os.h ../../include/openssl/asn1.h
305x509_vfy.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
306x509_vfy.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
307x509_vfy.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
308x509_vfy.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
309x509_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h
310x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
311x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
312x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
313x509_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
314x509_vfy.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
315x509_vfy.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
316x509_vfy.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
317x509_vfy.o: ../cryptlib.h x509_vfy.c
318x509_vpm.o: ../../e_os.h ../../include/openssl/asn1.h
319x509_vpm.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
320x509_vpm.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
321x509_vpm.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
322x509_vpm.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
323x509_vpm.o: ../../include/openssl/err.h ../../include/openssl/evp.h
324x509_vpm.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
325x509_vpm.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
326x509_vpm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
327x509_vpm.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
328x509_vpm.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
329x509_vpm.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
330x509_vpm.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
331x509_vpm.o: ../cryptlib.h x509_vpm.c
332x509cset.o: ../../e_os.h ../../include/openssl/asn1.h
333x509cset.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
334x509cset.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
335x509cset.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
336x509cset.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
337x509cset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
338x509cset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
339x509cset.o: ../../include/openssl/opensslconf.h
340x509cset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
341x509cset.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
342x509cset.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
343x509cset.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
344x509cset.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509cset.c
345x509name.o: ../../e_os.h ../../include/openssl/asn1.h
346x509name.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
347x509name.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
348x509name.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
349x509name.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
350x509name.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
351x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
352x509name.o: ../../include/openssl/opensslconf.h
353x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
354x509name.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
355x509name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
356x509name.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
357x509name.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509name.c
358x509rset.o: ../../e_os.h ../../include/openssl/asn1.h
359x509rset.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
360x509rset.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
361x509rset.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
362x509rset.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
363x509rset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
364x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
365x509rset.o: ../../include/openssl/opensslconf.h
366x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
367x509rset.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
368x509rset.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
369x509rset.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
370x509rset.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509rset.c
371x509spki.o: ../../e_os.h ../../include/openssl/asn1.h
372x509spki.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
373x509spki.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
374x509spki.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
375x509spki.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
376x509spki.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
377x509spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
378x509spki.o: ../../include/openssl/opensslconf.h
379x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
380x509spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
381x509spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
382x509spki.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
383x509spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509spki.c
384x509type.o: ../../e_os.h ../../include/openssl/asn1.h
385x509type.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
386x509type.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
387x509type.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
388x509type.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
389x509type.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
390x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
391x509type.o: ../../include/openssl/opensslconf.h
392x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
393x509type.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
394x509type.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
395x509type.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
396x509type.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509type.c
397x_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
398x_all.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
399x_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
400x_all.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
401x_all.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
402x_all.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
403x_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
404x_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
405x_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
406x_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
407x_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
408x_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
409x_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_all.c
410