]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - sys/modules/random/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / sys / modules / random / Makefile
1 # $FreeBSD$
2
3 .PATH: ${.CURDIR}/../../dev/random
4 .PATH: ${.CURDIR}/../../crypto/rijndael
5 .PATH: ${.CURDIR}/../../crypto/sha2
6
7 KMOD=   random
8 SRCS=   randomdev.c
9 .if ${MACHINE} == "amd64" || ${MACHINE} == "i386"
10 SRCS+=  nehemiah.c
11 SRCS+=  ivy.c
12 .endif
13 SRCS+=  randomdev_soft.c yarrow.c hash.c
14 SRCS+=  random_harvestq.c live_entropy_sources.c rwfile.c
15 SRCS+=  rijndael-alg-fst.c rijndael-api-fst.c sha2.c
16 SRCS+=  bus_if.h device_if.h vnode_if.h opt_cpu.h opt_random.h
17
18 CFLAGS+= -I${.CURDIR}/../..
19
20 .include <bsd.kmod.mk>