2000-06-25 10:12:33 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2001-01-06 14:00:42 +00:00
|
|
|
.PATH: ${.CURDIR}/../../dev/random
|
2001-03-10 12:57:08 +00:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/rijndael
|
2002-07-15 13:58:35 +00:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/sha2
|
2001-01-06 14:00:42 +00:00
|
|
|
|
|
|
|
KMOD= random
|
2004-04-09 15:47:10 +00:00
|
|
|
SRCS= randomdev.c probe.c
|
2004-04-11 15:40:18 +00:00
|
|
|
.if ${MACHINE} == "i386"
|
2004-04-09 15:47:10 +00:00
|
|
|
SRCS+= nehemiah.c
|
2004-04-11 15:40:18 +00:00
|
|
|
.endif
|
2004-04-09 15:47:10 +00:00
|
|
|
SRCS+= randomdev_soft.c yarrow.c hash.c
|
2002-07-15 13:58:35 +00:00
|
|
|
SRCS+= rijndael-alg-fst.c rijndael-api-fst.c sha2.c
|
2001-01-15 19:35:00 +00:00
|
|
|
SRCS+= bus_if.h device_if.h vnode_if.h
|
2001-01-06 14:00:42 +00:00
|
|
|
|
|
|
|
CFLAGS+= -I${.CURDIR}/../..
|
2000-06-25 10:12:33 +00:00
|
|
|
|
|
|
|
.include <bsd.kmod.mk>
|