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