2000-06-25 10:12:33 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2001-01-06 14:00:42 +00:00
|
|
|
.PATH: ${.CURDIR}/../../dev/random
|
2013-07-31 17:21:18 +00:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/rijndael
|
|
|
|
.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
|
2013-07-31 17:21:18 +00:00
|
|
|
.if ${MACHINE} == "amd64" || ${MACHINE} == "i386"
|
|
|
|
SRCS+= nehemiah.c
|
|
|
|
SRCS+= ivy.c
|
|
|
|
.endif
|
|
|
|
SRCS+= randomdev_soft.c yarrow.c hash.c
|
|
|
|
SRCS+= rijndael-alg-fst.c rijndael-api-fst.c sha2.c
|
|
|
|
SRCS+= bus_if.h device_if.h vnode_if.h opt_cpu.h
|
|
|
|
|
|
|
|
CFLAGS+= -I${.CURDIR}/../..
|
2000-06-25 10:12:33 +00:00
|
|
|
|
|
|
|
.include <bsd.kmod.mk>
|