]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/modules/random/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.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 probe.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+=  rijndael-alg-fst.c rijndael-api-fst.c sha2.c
15 SRCS+=  bus_if.h device_if.h vnode_if.h opt_cpu.h
16
17 CFLAGS+= -I${.CURDIR}/../..
18
19 .include <bsd.kmod.mk>