Makefile 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. #
  2. # OpenSSL/crypto/x509/Makefile
  3. #
  4. DIR= x509
  5. TOP= ../..
  6. CC= cc
  7. INCLUDES= -I.. -I$(TOP) -I../../include
  8. CFLAG=-g
  9. MAKEFILE= Makefile
  10. AR= ar r
  11. CFLAGS= $(INCLUDES) $(CFLAG)
  12. GENERAL=Makefile README
  13. TEST=verify_extra_test.c
  14. APPS=
  15. LIB=$(TOP)/libcrypto.a
  16. LIBSRC= x509_def.c x509_d2.c x509_r2x.c x509_cmp.c \
  17. x509_obj.c x509_req.c x509spki.c x509_vfy.c \
  18. x509_set.c x509cset.c x509rset.c x509_err.c \
  19. x509name.c x509_v3.c x509_ext.c x509_att.c \
  20. x509type.c x509_lu.c x_all.c x509_txt.c \
  21. x509_trs.c by_file.c by_dir.c x509_vpm.c
  22. LIBOBJ= x509_def.o x509_d2.o x509_r2x.o x509_cmp.o \
  23. x509_obj.o x509_req.o x509spki.o x509_vfy.o \
  24. x509_set.o x509cset.o x509rset.o x509_err.o \
  25. x509name.o x509_v3.o x509_ext.o x509_att.o \
  26. x509type.o x509_lu.o x_all.o x509_txt.o \
  27. x509_trs.o by_file.o by_dir.o x509_vpm.o
  28. SRC= $(LIBSRC)
  29. EXHEADER= x509.h x509_vfy.h
  30. HEADER= $(EXHEADER) vpm_int.h
  31. ALL= $(GENERAL) $(SRC) $(HEADER)
  32. top:
  33. (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
  34. all: lib
  35. lib: $(LIBOBJ)
  36. $(AR) $(LIB) $(LIBOBJ)
  37. $(RANLIB) $(LIB) || echo Never mind.
  38. @touch lib
  39. files:
  40. $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
  41. links:
  42. @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
  43. @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
  44. @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
  45. install:
  46. @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
  47. @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
  48. do \
  49. (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
  50. chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
  51. done;
  52. tags:
  53. ctags $(SRC)
  54. tests:
  55. lint:
  56. lint -DLINT $(INCLUDES) $(SRC)>fluff
  57. update: depend
  58. depend:
  59. @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
  60. $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
  61. dclean:
  62. $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
  63. mv -f Makefile.new $(MAKEFILE)
  64. clean:
  65. rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
  66. # DO NOT DELETE THIS LINE -- make depend depends on it.
  67. by_dir.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
  68. by_dir.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  69. by_dir.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
  70. by_dir.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
  71. by_dir.o: ../../include/openssl/err.h ../../include/openssl/evp.h
  72. by_dir.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
  73. by_dir.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
  74. by_dir.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  75. by_dir.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  76. by_dir.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  77. by_dir.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  78. by_dir.o: ../../include/openssl/x509_vfy.h ../cryptlib.h by_dir.c
  79. by_file.o: ../../e_os.h ../../include/openssl/asn1.h
  80. by_file.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  81. by_file.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  82. by_file.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
  83. by_file.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
  84. by_file.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
  85. by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
  86. by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
  87. by_file.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
  88. by_file.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
  89. by_file.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
  90. by_file.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
  91. by_file.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
  92. by_file.o: ../cryptlib.h by_file.c
  93. x509_att.o: ../../e_os.h ../../include/openssl/asn1.h
  94. x509_att.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  95. x509_att.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
  96. x509_att.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
  97. x509_att.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
  98. x509_att.o: ../../include/openssl/err.h ../../include/openssl/evp.h
  99. x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
  100. x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
  101. x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  102. x509_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  103. x509_att.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  104. x509_att.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  105. x509_att.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
  106. x509_att.o: ../cryptlib.h x509_att.c
  107. x509_cmp.o: ../../e_os.h ../../include/openssl/asn1.h
  108. x509_cmp.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  109. x509_cmp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
  110. x509_cmp.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
  111. x509_cmp.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
  112. x509_cmp.o: ../../include/openssl/err.h ../../include/openssl/evp.h
  113. x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
  114. x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
  115. x509_cmp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  116. x509_cmp.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  117. x509_cmp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  118. x509_cmp.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  119. x509_cmp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
  120. x509_cmp.o: ../cryptlib.h x509_cmp.c
  121. x509_d2.o: ../../e_os.h ../../include/openssl/asn1.h
  122. x509_d2.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  123. x509_d2.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  124. x509_d2.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
  125. x509_d2.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
  126. x509_d2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
  127. x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
  128. x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
  129. x509_d2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
  130. x509_d2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
  131. x509_d2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
  132. x509_d2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
  133. x509_d2.o: ../cryptlib.h x509_d2.c
  134. x509_def.o: ../../e_os.h ../../include/openssl/asn1.h
  135. x509_def.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  136. x509_def.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  137. x509_def.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
  138. x509_def.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
  139. x509_def.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
  140. x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
  141. x509_def.o: ../../include/openssl/opensslconf.h
  142. x509_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  143. x509_def.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  144. x509_def.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  145. x509_def.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  146. x509_def.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_def.c
  147. x509_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
  148. x509_err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  149. x509_err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
  150. x509_err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
  151. x509_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
  152. x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
  153. x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
  154. x509_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  155. x509_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  156. x509_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  157. x509_err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  158. x509_err.o: ../../include/openssl/x509_vfy.h x509_err.c
  159. x509_ext.o: ../../e_os.h ../../include/openssl/asn1.h
  160. x509_ext.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  161. x509_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
  162. x509_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
  163. x509_ext.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
  164. x509_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h
  165. x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
  166. x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
  167. x509_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  168. x509_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  169. x509_ext.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  170. x509_ext.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  171. x509_ext.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
  172. x509_ext.o: ../cryptlib.h x509_ext.c
  173. x509_lu.o: ../../e_os.h ../../include/openssl/asn1.h
  174. x509_lu.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  175. x509_lu.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
  176. x509_lu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
  177. x509_lu.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
  178. x509_lu.o: ../../include/openssl/err.h ../../include/openssl/evp.h
  179. x509_lu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
  180. x509_lu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
  181. x509_lu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  182. x509_lu.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  183. x509_lu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  184. x509_lu.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  185. x509_lu.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
  186. x509_lu.o: ../cryptlib.h x509_lu.c
  187. x509_obj.o: ../../e_os.h ../../include/openssl/asn1.h
  188. x509_obj.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  189. x509_obj.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  190. x509_obj.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
  191. x509_obj.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
  192. x509_obj.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
  193. x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
  194. x509_obj.o: ../../include/openssl/opensslconf.h
  195. x509_obj.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  196. x509_obj.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  197. x509_obj.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  198. x509_obj.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  199. x509_obj.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_obj.c
  200. x509_r2x.o: ../../e_os.h ../../include/openssl/asn1.h
  201. x509_r2x.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
  202. x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  203. x509_r2x.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
  204. x509_r2x.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
  205. x509_r2x.o: ../../include/openssl/err.h ../../include/openssl/evp.h
  206. x509_r2x.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
  207. x509_r2x.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
  208. x509_r2x.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  209. x509_r2x.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  210. x509_r2x.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  211. x509_r2x.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  212. x509_r2x.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_r2x.c
  213. x509_req.o: ../../e_os.h ../../include/openssl/asn1.h
  214. x509_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
  215. x509_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
  216. x509_req.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  217. x509_req.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
  218. x509_req.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
  219. x509_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
  220. x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
  221. x509_req.o: ../../include/openssl/opensslconf.h
  222. x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  223. x509_req.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
  224. x509_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  225. x509_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  226. x509_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  227. x509_req.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_req.c
  228. x509_set.o: ../../e_os.h ../../include/openssl/asn1.h
  229. x509_set.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  230. x509_set.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  231. x509_set.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
  232. x509_set.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
  233. x509_set.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
  234. x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
  235. x509_set.o: ../../include/openssl/opensslconf.h
  236. x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  237. x509_set.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  238. x509_set.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  239. x509_set.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  240. x509_set.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_set.c
  241. x509_trs.o: ../../e_os.h ../../include/openssl/asn1.h
  242. x509_trs.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  243. x509_trs.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
  244. x509_trs.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
  245. x509_trs.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
  246. x509_trs.o: ../../include/openssl/err.h ../../include/openssl/evp.h
  247. x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
  248. x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
  249. x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  250. x509_trs.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  251. x509_trs.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  252. x509_trs.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  253. x509_trs.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
  254. x509_trs.o: ../cryptlib.h x509_trs.c
  255. x509_txt.o: ../../e_os.h ../../include/openssl/asn1.h
  256. x509_txt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  257. x509_txt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  258. x509_txt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
  259. x509_txt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
  260. x509_txt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
  261. x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
  262. x509_txt.o: ../../include/openssl/opensslconf.h
  263. x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  264. x509_txt.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  265. x509_txt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  266. x509_txt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  267. x509_txt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_txt.c
  268. x509_v3.o: ../../e_os.h ../../include/openssl/asn1.h
  269. x509_v3.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  270. x509_v3.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
  271. x509_v3.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
  272. x509_v3.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
  273. x509_v3.o: ../../include/openssl/err.h ../../include/openssl/evp.h
  274. x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
  275. x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
  276. x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  277. x509_v3.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  278. x509_v3.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  279. x509_v3.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  280. x509_v3.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
  281. x509_v3.o: ../cryptlib.h x509_v3.c
  282. x509_vfy.o: ../../e_os.h ../../include/openssl/asn1.h
  283. x509_vfy.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  284. x509_vfy.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
  285. x509_vfy.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
  286. x509_vfy.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
  287. x509_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h
  288. x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
  289. x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
  290. x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  291. x509_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  292. x509_vfy.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  293. x509_vfy.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  294. x509_vfy.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
  295. x509_vfy.o: ../cryptlib.h vpm_int.h x509_vfy.c
  296. x509_vpm.o: ../../e_os.h ../../include/openssl/asn1.h
  297. x509_vpm.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  298. x509_vpm.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
  299. x509_vpm.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
  300. x509_vpm.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
  301. x509_vpm.o: ../../include/openssl/err.h ../../include/openssl/evp.h
  302. x509_vpm.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
  303. x509_vpm.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
  304. x509_vpm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  305. x509_vpm.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  306. x509_vpm.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  307. x509_vpm.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  308. x509_vpm.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
  309. x509_vpm.o: ../cryptlib.h vpm_int.h x509_vpm.c
  310. x509cset.o: ../../e_os.h ../../include/openssl/asn1.h
  311. x509cset.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  312. x509cset.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  313. x509cset.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
  314. x509cset.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
  315. x509cset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
  316. x509cset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
  317. x509cset.o: ../../include/openssl/opensslconf.h
  318. x509cset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  319. x509cset.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  320. x509cset.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  321. x509cset.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  322. x509cset.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509cset.c
  323. x509name.o: ../../e_os.h ../../include/openssl/asn1.h
  324. x509name.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  325. x509name.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  326. x509name.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
  327. x509name.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
  328. x509name.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
  329. x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
  330. x509name.o: ../../include/openssl/opensslconf.h
  331. x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  332. x509name.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  333. x509name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  334. x509name.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  335. x509name.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509name.c
  336. x509rset.o: ../../e_os.h ../../include/openssl/asn1.h
  337. x509rset.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  338. x509rset.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  339. x509rset.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
  340. x509rset.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
  341. x509rset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
  342. x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
  343. x509rset.o: ../../include/openssl/opensslconf.h
  344. x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  345. x509rset.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  346. x509rset.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  347. x509rset.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  348. x509rset.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509rset.c
  349. x509spki.o: ../../e_os.h ../../include/openssl/asn1.h
  350. x509spki.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  351. x509spki.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  352. x509spki.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
  353. x509spki.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
  354. x509spki.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
  355. x509spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
  356. x509spki.o: ../../include/openssl/opensslconf.h
  357. x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  358. x509spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  359. x509spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  360. x509spki.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  361. x509spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509spki.c
  362. x509type.o: ../../e_os.h ../../include/openssl/asn1.h
  363. x509type.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  364. x509type.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  365. x509type.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
  366. x509type.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
  367. x509type.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
  368. x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
  369. x509type.o: ../../include/openssl/opensslconf.h
  370. x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  371. x509type.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  372. x509type.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  373. x509type.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  374. x509type.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509type.c
  375. x_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
  376. x_all.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
  377. x_all.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
  378. x_all.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
  379. x_all.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
  380. x_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h
  381. x_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
  382. x_all.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
  383. x_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
  384. x_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
  385. x_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
  386. x_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  387. x_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  388. x_all.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
  389. x_all.o: ../cryptlib.h x_all.c