blob: 2eeb09e5c1eb4a33d799655f6fd9c80fb5a86ffc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $NetBSD: rand.inc,v 1.1.1.2 2023/04/18 14:19:04 christos Exp $
#
# @(#) Copyright (c) 1995 Simon J. Gerraty
#
# SRCS extracted from src/crypto/dist/openssl/crypto/rand/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/rand
RAND_SRCS = \
drbg_ctr.c \
drbg_lib.c \
rand_egd.c \
rand_err.c \
rand_lib.c \
rand_unix.c \
rand_vms.c \
rand_win.c \
randfile.c
SRCS += ${RAND_SRCS}
.for cryptosrc in ${RAND_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/rand
.endfor
|