diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2001-01-06 14:00:42 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-01-06 14:00:42 +0000 |
| commit | c68159a6d8eede11766cf13896d0f7670dbd51aa (patch) | |
| tree | b5bd7b342364fa60517c01a5a2d13b795a00e693 /sys/modules/random | |
| parent | e2a2e8c7e010a3606724014fc2ada010259b1cb2 (diff) | |
Notes
Diffstat (limited to 'sys/modules/random')
| -rw-r--r-- | sys/modules/random/Makefile | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/sys/modules/random/Makefile b/sys/modules/random/Makefile index 84021c82dc67..8c4676474297 100644 --- a/sys/modules/random/Makefile +++ b/sys/modules/random/Makefile @@ -1,13 +1,15 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../dev/random -.PATH: ${.CURDIR}/../../crypto/blowfish -KMOD = random -SRCS = bus_if.h device_if.h randomdev.c yarrow.c hash.c -SRCS += bf_cbc.c bf_skey.c bf_enc.c -SRCS += vnode_if.h opt_noblockrandom.h -CFLAGS += -I${.CURDIR}/../.. -NOMAN = yes +.PATH: ${.CURDIR}/../../dev/random +.PATH: ${.CURDIR}/../../crypto/blowfish + +KMOD= random +SRCS= bus_if.h device_if.h randomdev.c yarrow.c hash.c +SRCS+= bf_cbc.c bf_skey.c bf_enc.c +SRCS+= vnode_if.h opt_noblockrandom.h +NOMAN= yes + +CFLAGS+= -I${.CURDIR}/../.. # Uncomment the below macro to make a /dev/random that will not block at # boot time. Useful for personal workstations and the like where reboot |
