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