Makefile revision 1.1
1# $NetBSD: Makefile,v 1.1 2014/01/14 17:15:09 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 34CPPFLAGS+= -DCOMPAT_50 35 36.include <bsd.lib.mk> 37.include <bsd.klinks.mk> 38