]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sys/modules/random/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.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} == "i386"
10 SRCS+=  nehemiah.c
11 .endif
12 SRCS+=  randomdev_soft.c yarrow.c hash.c
13 SRCS+=  rijndael-alg-fst.c rijndael-api-fst.c sha2.c
14 SRCS+=  bus_if.h device_if.h vnode_if.h
15
16 CFLAGS+= -I${.CURDIR}/../..
17
18 .include <bsd.kmod.mk>