Home | History | Annotate | Line # | Download | only in libcrypto
      1 #	$NetBSD: rand.inc,v 1.1.1.2 2023/04/18 14:19:04 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 = \
     12 drbg_ctr.c \
     13 drbg_lib.c \
     14 rand_egd.c \
     15 rand_err.c \
     16 rand_lib.c \
     17 rand_unix.c \
     18 rand_vms.c \
     19 rand_win.c \
     20 randfile.c
     21 SRCS += ${RAND_SRCS}
     22 
     23 .for cryptosrc in ${RAND_SRCS}
     24 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/rand
     25 .endfor
     26