blob: 0b695b081bcd09abeff851d9903be193a1fc2ad1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $NetBSD: rand.inc,v 1.5 2023/05/06 17:07:23 christos Exp $
.PATH: ${OPENSSLSRC}/crypto/rand
RAND_SRCS += \
prov_seed.c \
rand_deprecated.c \
rand_err.c \
rand_lib.c \
rand_meth.c \
rand_pool.c \
randfile.c \
SRCS += ${RAND_SRCS}
.for cryptosrc in ${RAND_SRCS}
CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/rand ${RANDCPPFLAGS}
.endfor
|