1#	$NetBSD: bio.inc,v 1.1 2009/07/19 23:30:43 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
11BIO_SRCS = bio_lib.c bio_cb.c bio_err.c \
12	bss_mem.c bss_null.c bss_fd.c \
13	bss_file.c bss_sock.c bss_conn.c \
14	bf_null.c bf_buff.c b_print.c b_dump.c \
15	b_sock.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c bss_dgram.c
16SRCS += ${BIO_SRCS}
17
18.for cryptosrc in ${BIO_SRCS}
19CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/bio
20.endfor
21