diff options
Diffstat (limited to 'src/lib/libcrypto/bio')
-rw-r--r-- | src/lib/libcrypto/bio/Makefile | 123 |
1 files changed, 65 insertions, 58 deletions
diff --git a/src/lib/libcrypto/bio/Makefile b/src/lib/libcrypto/bio/Makefile index a565154499..1ef6c2fb9f 100644 --- a/src/lib/libcrypto/bio/Makefile +++ b/src/lib/libcrypto/bio/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -26,19 +21,21 @@ LIBSRC= bio_lib.c bio_cb.c bio_err.c \ | |||
26 | bss_mem.c bss_null.c bss_fd.c \ | 21 | bss_mem.c bss_null.c bss_fd.c \ |
27 | bss_file.c bss_sock.c bss_conn.c \ | 22 | bss_file.c bss_sock.c bss_conn.c \ |
28 | bf_null.c bf_buff.c b_print.c b_dump.c \ | 23 | bf_null.c bf_buff.c b_print.c b_dump.c \ |
29 | b_sock.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c | 24 | b_sock.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c \ |
25 | bss_dgram.c | ||
30 | # bf_lbuf.c | 26 | # bf_lbuf.c |
31 | LIBOBJ= bio_lib.o bio_cb.o bio_err.o \ | 27 | LIBOBJ= bio_lib.o bio_cb.o bio_err.o \ |
32 | bss_mem.o bss_null.o bss_fd.o \ | 28 | bss_mem.o bss_null.o bss_fd.o \ |
33 | bss_file.o bss_sock.o bss_conn.o \ | 29 | bss_file.o bss_sock.o bss_conn.o \ |
34 | bf_null.o bf_buff.o b_print.o b_dump.o \ | 30 | bf_null.o bf_buff.o b_print.o b_dump.o \ |
35 | b_sock.o bss_acpt.o bf_nbio.o bss_log.o bss_bio.o | 31 | b_sock.o bss_acpt.o bf_nbio.o bss_log.o bss_bio.o \ |
32 | bss_dgram.o | ||
36 | # bf_lbuf.o | 33 | # bf_lbuf.o |
37 | 34 | ||
38 | SRC= $(LIBSRC) | 35 | SRC= $(LIBSRC) |
39 | 36 | ||
40 | EXHEADER= bio.h | 37 | EXHEADER= bio.h |
41 | HEADER= bss_file.c $(EXHEADER) | 38 | HEADER= bio_lcl.h $(EXHEADER) |
42 | 39 | ||
43 | ALL= $(GENERAL) $(SRC) $(HEADER) | 40 | ALL= $(GENERAL) $(SRC) $(HEADER) |
44 | 41 | ||
@@ -61,6 +58,7 @@ links: | |||
61 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 58 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
62 | 59 | ||
63 | install: | 60 | install: |
61 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
64 | @headerlist="$(EXHEADER)"; for i in $$headerlist; \ | 62 | @headerlist="$(EXHEADER)"; for i in $$headerlist; \ |
65 | do \ | 63 | do \ |
66 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 64 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -76,6 +74,7 @@ lint: | |||
76 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 74 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
77 | 75 | ||
78 | depend: | 76 | depend: |
77 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
79 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 78 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
80 | 79 | ||
81 | dclean: | 80 | dclean: |
@@ -91,30 +90,30 @@ b_dump.o: ../../e_os.h ../../include/openssl/bio.h | |||
91 | b_dump.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 90 | b_dump.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
92 | b_dump.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 91 | b_dump.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
93 | b_dump.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 92 | b_dump.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
94 | b_dump.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 93 | b_dump.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
95 | b_dump.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 94 | b_dump.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
96 | b_dump.o: ../cryptlib.h b_dump.c | 95 | b_dump.o: ../../include/openssl/symhacks.h ../cryptlib.h b_dump.c bio_lcl.h |
97 | b_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 96 | b_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
98 | b_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 97 | b_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
99 | b_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 98 | b_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
100 | b_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 99 | b_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
101 | b_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 100 | b_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
102 | b_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 101 | b_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
103 | b_print.o: ../cryptlib.h b_print.c | 102 | b_print.o: ../../include/openssl/symhacks.h ../cryptlib.h b_print.c |
104 | b_sock.o: ../../e_os.h ../../include/openssl/bio.h | 103 | b_sock.o: ../../e_os.h ../../include/openssl/bio.h |
105 | b_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 104 | b_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
106 | b_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 105 | b_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
107 | b_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 106 | b_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
108 | b_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 107 | b_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
109 | b_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 108 | b_sock.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
110 | b_sock.o: ../cryptlib.h b_sock.c | 109 | b_sock.o: ../../include/openssl/symhacks.h ../cryptlib.h b_sock.c |
111 | bf_buff.o: ../../e_os.h ../../include/openssl/bio.h | 110 | bf_buff.o: ../../e_os.h ../../include/openssl/bio.h |
112 | bf_buff.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 111 | bf_buff.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
113 | bf_buff.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 112 | bf_buff.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
114 | bf_buff.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 113 | bf_buff.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
115 | bf_buff.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 114 | bf_buff.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
116 | bf_buff.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 115 | bf_buff.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
117 | bf_buff.o: ../cryptlib.h bf_buff.c | 116 | bf_buff.o: ../../include/openssl/symhacks.h ../cryptlib.h bf_buff.c |
118 | bf_nbio.o: ../../e_os.h ../../include/openssl/bio.h | 117 | bf_nbio.o: ../../e_os.h ../../include/openssl/bio.h |
119 | bf_nbio.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 118 | bf_nbio.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
120 | bf_nbio.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 119 | bf_nbio.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
@@ -127,88 +126,96 @@ bf_null.o: ../../e_os.h ../../include/openssl/bio.h | |||
127 | bf_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 126 | bf_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
128 | bf_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 127 | bf_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
129 | bf_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 128 | bf_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
130 | bf_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 129 | bf_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
131 | bf_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 130 | bf_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
132 | bf_null.o: ../cryptlib.h bf_null.c | 131 | bf_null.o: ../../include/openssl/symhacks.h ../cryptlib.h bf_null.c |
133 | bio_cb.o: ../../e_os.h ../../include/openssl/bio.h | 132 | bio_cb.o: ../../e_os.h ../../include/openssl/bio.h |
134 | bio_cb.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 133 | bio_cb.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
135 | bio_cb.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 134 | bio_cb.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
136 | bio_cb.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 135 | bio_cb.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
137 | bio_cb.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 136 | bio_cb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
138 | bio_cb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 137 | bio_cb.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
139 | bio_cb.o: ../cryptlib.h bio_cb.c | 138 | bio_cb.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_cb.c |
140 | bio_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 139 | bio_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
141 | bio_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 140 | bio_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
142 | bio_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 141 | bio_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
143 | bio_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 142 | bio_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
144 | bio_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 143 | bio_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
145 | bio_err.o: bio_err.c | 144 | bio_err.o: ../../include/openssl/symhacks.h bio_err.c |
146 | bio_lib.o: ../../e_os.h ../../include/openssl/bio.h | 145 | bio_lib.o: ../../e_os.h ../../include/openssl/bio.h |
147 | bio_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 146 | bio_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
148 | bio_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 147 | bio_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
149 | bio_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 148 | bio_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
150 | bio_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 149 | bio_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
151 | bio_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 150 | bio_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
152 | bio_lib.o: ../cryptlib.h bio_lib.c | 151 | bio_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_lib.c |
153 | bss_acpt.o: ../../e_os.h ../../include/openssl/bio.h | 152 | bss_acpt.o: ../../e_os.h ../../include/openssl/bio.h |
154 | bss_acpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 153 | bss_acpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
155 | bss_acpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 154 | bss_acpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
156 | bss_acpt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 155 | bss_acpt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
157 | bss_acpt.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 156 | bss_acpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
158 | bss_acpt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 157 | bss_acpt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
159 | bss_acpt.o: ../cryptlib.h bss_acpt.c | 158 | bss_acpt.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_acpt.c |
160 | bss_bio.o: ../../e_os.h ../../include/openssl/bio.h | 159 | bss_bio.o: ../../e_os.h ../../include/openssl/bio.h |
161 | bss_bio.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 160 | bss_bio.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
162 | bss_bio.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 161 | bss_bio.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
163 | bss_bio.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 162 | bss_bio.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
164 | bss_bio.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 163 | bss_bio.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
165 | bss_bio.o: ../../include/openssl/symhacks.h bss_bio.c | 164 | bss_bio.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
165 | bss_bio.o: bss_bio.c | ||
166 | bss_conn.o: ../../e_os.h ../../include/openssl/bio.h | 166 | bss_conn.o: ../../e_os.h ../../include/openssl/bio.h |
167 | bss_conn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 167 | bss_conn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
168 | bss_conn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 168 | bss_conn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
169 | bss_conn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 169 | bss_conn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
170 | bss_conn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 170 | bss_conn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
171 | bss_conn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 171 | bss_conn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
172 | bss_conn.o: ../cryptlib.h bss_conn.c | 172 | bss_conn.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_conn.c |
173 | bss_dgram.o: ../../e_os.h ../../include/openssl/bio.h | ||
174 | bss_dgram.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
175 | bss_dgram.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
176 | bss_dgram.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
177 | bss_dgram.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
178 | bss_dgram.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
179 | bss_dgram.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_dgram.c | ||
173 | bss_fd.o: ../../e_os.h ../../include/openssl/bio.h | 180 | bss_fd.o: ../../e_os.h ../../include/openssl/bio.h |
174 | bss_fd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 181 | bss_fd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
175 | bss_fd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 182 | bss_fd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
176 | bss_fd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 183 | bss_fd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
177 | bss_fd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 184 | bss_fd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
178 | bss_fd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 185 | bss_fd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
179 | bss_fd.o: ../cryptlib.h bss_fd.c | 186 | bss_fd.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_lcl.h bss_fd.c |
180 | bss_file.o: ../../e_os.h ../../include/openssl/bio.h | 187 | bss_file.o: ../../e_os.h ../../include/openssl/bio.h |
181 | bss_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 188 | bss_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
182 | bss_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 189 | bss_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
183 | bss_file.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 190 | bss_file.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
184 | bss_file.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 191 | bss_file.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
185 | bss_file.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 192 | bss_file.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
186 | bss_file.o: ../cryptlib.h bss_file.c | 193 | bss_file.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_lcl.h bss_file.c |
187 | bss_log.o: ../../e_os.h ../../include/openssl/bio.h | 194 | bss_log.o: ../../e_os.h ../../include/openssl/bio.h |
188 | bss_log.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 195 | bss_log.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
189 | bss_log.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 196 | bss_log.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
190 | bss_log.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 197 | bss_log.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
191 | bss_log.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 198 | bss_log.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
192 | bss_log.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 199 | bss_log.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
193 | bss_log.o: ../cryptlib.h bss_log.c | 200 | bss_log.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_log.c |
194 | bss_mem.o: ../../e_os.h ../../include/openssl/bio.h | 201 | bss_mem.o: ../../e_os.h ../../include/openssl/bio.h |
195 | bss_mem.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 202 | bss_mem.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
196 | bss_mem.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 203 | bss_mem.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
197 | bss_mem.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 204 | bss_mem.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
198 | bss_mem.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 205 | bss_mem.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
199 | bss_mem.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 206 | bss_mem.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
200 | bss_mem.o: ../cryptlib.h bss_mem.c | 207 | bss_mem.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_mem.c |
201 | bss_null.o: ../../e_os.h ../../include/openssl/bio.h | 208 | bss_null.o: ../../e_os.h ../../include/openssl/bio.h |
202 | bss_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 209 | bss_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
203 | bss_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 210 | bss_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
204 | bss_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 211 | bss_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
205 | bss_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 212 | bss_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
206 | bss_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 213 | bss_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
207 | bss_null.o: ../cryptlib.h bss_null.c | 214 | bss_null.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_null.c |
208 | bss_sock.o: ../../e_os.h ../../include/openssl/bio.h | 215 | bss_sock.o: ../../e_os.h ../../include/openssl/bio.h |
209 | bss_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 216 | bss_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
210 | bss_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 217 | bss_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
211 | bss_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 218 | bss_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
212 | bss_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 219 | bss_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
213 | bss_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 220 | bss_sock.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
214 | bss_sock.o: ../cryptlib.h bss_sock.c | 221 | bss_sock.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_sock.c |