mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
14 lines
274 B
Makefile
14 lines
274 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/random
|
|
.PATH: ${.CURDIR}/../../crypto/blowfish
|
|
|
|
KMOD= random
|
|
SRCS= randomdev.c yarrow.c hash.c
|
|
SRCS+= bf_cbc.c bf_skey.c bf_enc.c
|
|
SRCS+= bus_if.h device_if.h vnode_if.h
|
|
NOMAN= yes
|
|
|
|
CFLAGS+= -I${.CURDIR}/../..
|
|
|
|
.include <bsd.kmod.mk>
|