Makefile revision 1.2
1#	$NetBSD: Makefile,v 1.2 2014/01/16 02:21:24 pgoyette Exp $
2#
3
4.PATH:	${.CURDIR}/../../../../opencrypto
5
6LIB=	rumpdev_opencrypto
7
8SRCS=	component.c
9
10# Sources for crypto framework
11
12SRCS+=	criov.c
13SRCS+=	crypto.c
14SRCS+=	xform.c
15
16# Sources for crypto device, for userland access
17
18SRCS+=	cryptodev.c
19SRCS+=	ocryptodev.c
20
21# Sources for swcrypto device to access opencrypto software algorithms
22# (Other algorithms are in rumpkern_crypto)
23
24SRCS+=	aesxcbcmac.c
25SRCS+=	cryptosoft.c
26SRCS+=	deflate.c
27SRCS+=	gmac.c
28
29.PATH:	${.CURDIR}/../../../../net
30
31SRCS+=	zlib.c
32
33CPPFLAGS+=	-I${RUMPTOP}/librump/rumpvfs
34
35.include <bsd.lib.mk>
36.include <bsd.klinks.mk>
37