Makefile revision 1.3
1# $NetBSD: Makefile,v 1.3 2014/01/16 02:38:20 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# deflate.c also requires zlib, so include the appropriate library 30 31LDADD+= -lrumpkern_z 32 33CPPFLAGS+= -I${RUMPTOP}/librump/rumpvfs 34 35.include <bsd.lib.mk> 36.include <bsd.klinks.mk> 37