diff options
Diffstat (limited to 'usr.bin/svn/lib/libserf/Makefile')
-rw-r--r-- | usr.bin/svn/lib/libserf/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/usr.bin/svn/lib/libserf/Makefile b/usr.bin/svn/lib/libserf/Makefile new file mode 100644 index 0000000..f8d618f --- /dev/null +++ b/usr.bin/svn/lib/libserf/Makefile @@ -0,0 +1,25 @@ +# $FreeBSD$ + +.include "${.CURDIR}/../Makefile.inc" + +INTERNALLIB= yes +LIB= serf + +SRCS= aggregate_buckets.c allocator.c auth.c auth_basic.c \ + auth_digest.c auth_spnego.c auth_spnego_gss.c barrier_buckets.c \ + buckets.c bwtp_buckets.c chunk_buckets.c context.c \ + dechunk_buckets.c deflate_buckets.c file_buckets.c \ + headers_buckets.c incoming.c iovec_buckets.c limit_buckets.c \ + mmap_buckets.c outgoing.c request_buckets.c \ + response_body_buckets.c response_buckets.c simple_buckets.c \ + socket_buckets.c ssl_buckets.c ssltunnel.c + +.PATH: ${SERF}/buckets ${SERF}/auth ${SERF} + +CFLAGS+= -I${.CURDIR} -I${SERF} \ + -I${.CURDIR}/../libapr \ + -I${APR}/include/arch/unix -I${APR}/include \ + -I${.CURDIR}/../libapr_util \ + -I${APRU}/include + +.include <bsd.lib.mk> |