1 # $NetBSD: rand.inc,v 1.1 2018/02/03 22:43:37 christos Exp $ 2 # 3 # @(#) Copyright (c) 1995 Simon J. Gerraty 4 # 5 # SRCS extracted from src/crypto/dist/openssl/crypto/rand/Makefile 6 # 7 8 .PATH: ${OPENSSLSRC}/crypto/rand 9 10 11 RAND_SRCS = md_rand.c randfile.c rand_lib.c rand_err.c rand_egd.c \ 12 rand_win.c rand_unix.c rand_os2.c rand_nw.c 13 SRCS += ${RAND_SRCS} 14 15 .for cryptosrc in ${RAND_SRCS} 16 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/rand 17 .endfor 18