1 # $NetBSD: bio.inc,v 1.1.1.2 2023/04/18 14:19:03 christos Exp $ 2 # 3 # @(#) Copyright (c) 1995 Simon J. Gerraty 4 # 5 # SRCS extracted from src/crypto/dist/openssl/crypto/bio/Makefile 6 # 7 8 .PATH: ${OPENSSLSRC}/crypto/bio 9 10 11 BIO_SRCS = \ 12 b_addr.c \ 13 b_dump.c \ 14 b_print.c \ 15 b_sock.c \ 16 b_sock2.c \ 17 bf_buff.c \ 18 bf_lbuf.c \ 19 bf_nbio.c \ 20 bf_null.c \ 21 bio_cb.c \ 22 bio_err.c \ 23 bio_lib.c \ 24 bio_meth.c \ 25 bss_acpt.c \ 26 bss_bio.c \ 27 bss_conn.c \ 28 bss_dgram.c \ 29 bss_fd.c \ 30 bss_file.c \ 31 bss_log.c \ 32 bss_mem.c \ 33 bss_null.c \ 34 bss_sock.c 35 SRCS += ${BIO_SRCS} 36 37 .for cryptosrc in ${BIO_SRCS} 38 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/bio 39 .endfor 40