2d79771930
rumpkern_crypto to rumpkern due to it being mandatory for cprng.
38 lines
826 B
Makefile
38 lines
826 B
Makefile
# $NetBSD: Makefile,v 1.3 2014/01/17 01:32:53 pooka Exp $
|
|
#
|
|
|
|
.PATH: ${.CURDIR}/../../../../crypto/arc4 \
|
|
${.CURDIR}/../../../../crypto/blowfish \
|
|
${.CURDIR}/../../../../crypto/camellia \
|
|
${.CURDIR}/../../../../crypto/cast128 \
|
|
${.CURDIR}/../../../../crypto/des \
|
|
${.CURDIR}/../../../../crypto/rijndael \
|
|
${.CURDIR}/../../../../crypto/skipjack
|
|
|
|
LIB= rumpkern_crypto
|
|
|
|
# arc4
|
|
SRCS+= arc4.c
|
|
|
|
# blowfish
|
|
SRCS+= bf_ecb.c bf_enc.c bf_cbc.c bf_skey.c bf_module.c
|
|
|
|
# camellia
|
|
SRCS+= camellia.c camellia-api.c
|
|
|
|
# cast128
|
|
SRCS+= cast128.c
|
|
|
|
# DES
|
|
SRCS+= des_ecb.c des_setkey.c des_enc.c des_cbc.c des_module.c
|
|
|
|
# rijndael
|
|
# rijndael is in rumpkern due to it being used by cprng
|
|
#SRCS+= rijndael-alg-fst.c rijndael-api-fst.c rijndael.c
|
|
|
|
# skipjack
|
|
SRCS+= skipjack.c
|
|
|
|
.include <bsd.lib.mk>
|
|
.include <bsd.klinks.mk>
|