freebsd-dev/sys/modules/random/Makefile

21 lines
508 B
Makefile
Raw Normal View History

# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/random
2013-07-31 17:21:18 +00:00
.PATH: ${.CURDIR}/../../crypto/rijndael
.PATH: ${.CURDIR}/../../crypto/sha2
KMOD= random
2013-08-24 13:54:56 +00:00
SRCS= randomdev.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+= random_harvestq.c live_entropy_sources.c rwfile.c
2013-07-31 17:21:18 +00:00
SRCS+= rijndael-alg-fst.c rijndael-api-fst.c sha2.c
SRCS+= bus_if.h device_if.h vnode_if.h opt_cpu.h opt_random.h
2013-07-31 17:21:18 +00:00
CFLAGS+= -I${.CURDIR}/../..
.include <bsd.kmod.mk>