2015-10-15 10:25:28 +02:00

33 lines
631 B
Makefile

# $NetBSD: Makefile,v 1.8 2015/08/20 11:51:12 christos Exp $
#
.PATH: ${.CURDIR}/../../../../opencrypto
LIB= rumpdev_opencrypto
IOCONF= OPENCRYPTO.ioconf
SRCS= opencrypto_component.c
# Sources for crypto framework
SRCS+= criov.c
SRCS+= crypto.c
SRCS+= xform.c
# Sources for crypto device, for userland access
SRCS+= cryptodev.c
SRCS+= ocryptodev.c
# Sources for swcrypto device to access opencrypto software algorithms
# (Other algorithms are in rumpkern_crypto)
SRCS+= aesxcbcmac.c
SRCS+= cryptosoft.c
SRCS+= deflate.c
SRCS+= gmac.c
CPPFLAGS+= -I${RUMPTOP}/librump/rumpvfs
.include <bsd.lib.mk>
.include <bsd.klinks.mk>