Makefile 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. #
  2. # OpenSSL/crypto/bio/Makefile
  3. #
  4. DIR= bio
  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
  13. LIB=$(TOP)/libcrypto.a
  14. LIBSRC= bio_lib.c bio_cb.c bio_err.c \
  15. bss_mem.c bss_null.c bss_fd.c \
  16. bss_file.c bss_sock.c bss_conn.c \
  17. bf_null.c bf_buff.c b_print.c b_dump.c \
  18. b_sock.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c \
  19. bss_dgram.c
  20. # bf_lbuf.c
  21. LIBOBJ= bio_lib.o bio_cb.o bio_err.o \
  22. bss_mem.o bss_null.o bss_fd.o \
  23. bss_file.o bss_sock.o bss_conn.o \
  24. bf_null.o bf_buff.o b_print.o b_dump.o \
  25. b_sock.o bss_acpt.o bf_nbio.o bss_log.o bss_bio.o \
  26. bss_dgram.o
  27. # bf_lbuf.o
  28. SRC= $(LIBSRC)
  29. HEADER= bio_lcl.h
  30. ALL= $(GENERAL) $(SRC) $(HEADER)
  31. top:
  32. (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
  33. all: lib
  34. lib: $(LIBOBJ)
  35. $(AR) $(LIB) $(LIBOBJ)
  36. $(RANLIB) $(LIB) || echo Never mind.
  37. @touch lib
  38. files:
  39. $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
  40. tags:
  41. ctags $(SRC)
  42. tests:
  43. lint:
  44. lint -DLINT $(INCLUDES) $(SRC)>fluff
  45. depend:
  46. @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
  47. $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
  48. dclean:
  49. $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
  50. mv -f Makefile.new $(MAKEFILE)
  51. clean:
  52. rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
  53. # DO NOT DELETE THIS LINE -- make depend depends on it.
  54. b_dump.o: ../../e_os.h ../../include/openssl/bio.h
  55. b_dump.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  56. b_dump.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  57. b_dump.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  58. b_dump.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  59. b_dump.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  60. b_dump.o: ../../include/openssl/symhacks.h ../cryptlib.h b_dump.c bio_lcl.h
  61. b_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
  62. b_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  63. b_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  64. b_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  65. b_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  66. b_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  67. b_print.o: ../../include/openssl/symhacks.h ../cryptlib.h b_print.c
  68. b_sock.o: ../../e_os.h ../../include/openssl/bio.h
  69. b_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  70. b_sock.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
  71. b_sock.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
  72. b_sock.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
  73. b_sock.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
  74. b_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
  75. b_sock.o: ../cryptlib.h b_sock.c
  76. bf_buff.o: ../../e_os.h ../../include/openssl/bio.h
  77. bf_buff.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  78. bf_buff.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  79. bf_buff.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  80. bf_buff.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  81. bf_buff.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  82. bf_buff.o: ../../include/openssl/symhacks.h ../cryptlib.h bf_buff.c
  83. bf_nbio.o: ../../e_os.h ../../include/openssl/bio.h
  84. bf_nbio.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  85. bf_nbio.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  86. bf_nbio.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  87. bf_nbio.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  88. bf_nbio.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
  89. bf_nbio.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
  90. bf_nbio.o: ../cryptlib.h bf_nbio.c
  91. bf_null.o: ../../e_os.h ../../include/openssl/bio.h
  92. bf_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  93. bf_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  94. bf_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  95. bf_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  96. bf_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  97. bf_null.o: ../../include/openssl/symhacks.h ../cryptlib.h bf_null.c
  98. bio_cb.o: ../../e_os.h ../../include/openssl/bio.h
  99. bio_cb.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  100. bio_cb.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  101. bio_cb.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  102. bio_cb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  103. bio_cb.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  104. bio_cb.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_cb.c
  105. bio_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
  106. bio_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  107. bio_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  108. bio_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  109. bio_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  110. bio_err.o: ../../include/openssl/symhacks.h bio_err.c
  111. bio_lib.o: ../../e_os.h ../../include/openssl/bio.h
  112. bio_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  113. bio_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  114. bio_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  115. bio_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  116. bio_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  117. bio_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_lib.c
  118. bss_acpt.o: ../../e_os.h ../../include/openssl/bio.h
  119. bss_acpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  120. bss_acpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  121. bss_acpt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  122. bss_acpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  123. bss_acpt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  124. bss_acpt.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_acpt.c
  125. bss_bio.o: ../../e_os.h ../../include/openssl/bio.h
  126. bss_bio.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  127. bss_bio.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
  128. bss_bio.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
  129. bss_bio.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
  130. bss_bio.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
  131. bss_bio.o: bss_bio.c
  132. bss_conn.o: ../../e_os.h ../../include/openssl/bio.h
  133. bss_conn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  134. bss_conn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  135. bss_conn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  136. bss_conn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  137. bss_conn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  138. bss_conn.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_conn.c
  139. bss_dgram.o: ../../e_os.h ../../include/openssl/bio.h
  140. bss_dgram.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  141. bss_dgram.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  142. bss_dgram.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  143. bss_dgram.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  144. bss_dgram.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  145. bss_dgram.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_dgram.c
  146. bss_fd.o: ../../e_os.h ../../include/openssl/bio.h
  147. bss_fd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  148. bss_fd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  149. bss_fd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  150. bss_fd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  151. bss_fd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  152. bss_fd.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_lcl.h bss_fd.c
  153. bss_file.o: ../../e_os.h ../../include/openssl/bio.h
  154. bss_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  155. bss_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  156. bss_file.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  157. bss_file.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  158. bss_file.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  159. bss_file.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_lcl.h bss_file.c
  160. bss_log.o: ../../e_os.h ../../include/openssl/bio.h
  161. bss_log.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  162. bss_log.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  163. bss_log.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  164. bss_log.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  165. bss_log.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  166. bss_log.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_log.c
  167. bss_mem.o: ../../e_os.h ../../include/openssl/bio.h
  168. bss_mem.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  169. bss_mem.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  170. bss_mem.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  171. bss_mem.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  172. bss_mem.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  173. bss_mem.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_mem.c
  174. bss_null.o: ../../e_os.h ../../include/openssl/bio.h
  175. bss_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  176. bss_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  177. bss_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  178. bss_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  179. bss_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  180. bss_null.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_null.c
  181. bss_sock.o: ../../e_os.h ../../include/openssl/bio.h
  182. bss_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  183. bss_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  184. bss_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  185. bss_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  186. bss_sock.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  187. bss_sock.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_sock.c