summaryrefslogtreecommitdiffstats
path: root/crypto/bio
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-11-27 16:01:32 +0100
committerRichard Levitte <levitte@openssl.org>2019-12-18 19:42:44 +0100
commita0848daee50b30f441813ecc90042c6af14c62aa (patch)
tree271bd54f44a124a2a8fe6463adc5985bc0fdc216 /crypto/bio
parent8913378a552e470c66277c47b19699f20b84aa3b (diff)
crypto/bio/build.info: split the source files in categories
Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10531)
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/build.info20
1 files changed, 15 insertions, 5 deletions
diff --git a/crypto/bio/build.info b/crypto/bio/build.info
index d1e7d73c55..3f84bb824c 100644
--- a/crypto/bio/build.info
+++ b/crypto/bio/build.info
@@ -1,8 +1,18 @@
LIBS=../../libcrypto
+
+# Base library
SOURCE[../../libcrypto]=\
bio_lib.c bio_cb.c bio_err.c \
- bss_mem.c bss_null.c bss_fd.c \
- bss_file.c bss_sock.c bss_conn.c \
- bf_null.c bf_buff.c b_print.c b_dump.c b_addr.c \
- b_sock.c b_sock2.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c \
- bss_dgram.c bio_meth.c bf_lbuf.c
+ b_print.c b_dump.c b_addr.c \
+ b_sock.c b_sock2.c \
+ bio_meth.c
+
+# Source / sink implementations
+SOURCE[../../libcrypto]=\
+ bss_null.c bss_mem.c bss_bio.c bss_fd.c bss_file.c \
+ bss_sock.c bss_conn.c bss_acpt.c bss_dgram.c \
+ bss_log.c
+
+# Filters
+SOURCE[../../libcrypto]=\
+ bf_null.c bf_buff.c bf_lbuf.c bf_nbio.c