2000-06-25 06:12:33 -04:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
2001-01-06 09:00:42 -05:00
|
|
|
.PATH: ${.CURDIR}/../../dev/random
|
2013-07-31 13:21:18 -04:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/rijndael
|
|
|
|
|
.PATH: ${.CURDIR}/../../crypto/sha2
|
2001-01-06 09:00:42 -05:00
|
|
|
|
|
|
|
|
KMOD= random
|
2013-08-24 09:54:56 -04:00
|
|
|
SRCS= randomdev.c
|
2013-07-31 13:21:18 -04:00
|
|
|
.if ${MACHINE} == "amd64" || ${MACHINE} == "i386"
|
|
|
|
|
SRCS+= nehemiah.c
|
|
|
|
|
SRCS+= ivy.c
|
|
|
|
|
.endif
|
|
|
|
|
SRCS+= randomdev_soft.c yarrow.c hash.c
|
2013-10-14 13:43:22 -04:00
|
|
|
SRCS+= random_harvestq.c live_entropy_sources.c rwfile.c
|
2014-03-15 21:55:30 -04:00
|
|
|
SRCS+= rijndael-alg-fst.c rijndael-api-fst.c sha2.c sha256c.c
|
2013-10-08 07:05:26 -04:00
|
|
|
SRCS+= bus_if.h device_if.h vnode_if.h opt_cpu.h opt_random.h
|
2013-07-31 13:21:18 -04:00
|
|
|
|
|
|
|
|
CFLAGS+= -I${.CURDIR}/../..
|
2000-06-25 06:12:33 -04:00
|
|
|
|
|
|
|
|
.include <bsd.kmod.mk>
|