ee5f87f458
PR: kern/163974
19 lines
423 B
Makefile
19 lines
423 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/random
|
|
.PATH: ${.CURDIR}/../../crypto/rijndael
|
|
.PATH: ${.CURDIR}/../../crypto/sha2
|
|
|
|
KMOD= random
|
|
SRCS= randomdev.c probe.c
|
|
.if ${MACHINE} == "amd64" || ${MACHINE} == "i386"
|
|
SRCS+= nehemiah.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
|
|
|
|
CFLAGS+= -I${.CURDIR}/../..
|
|
|
|
.include <bsd.kmod.mk>
|