blob: 001b00ee50545b8e006aad9cfb31de463cda4bf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: seed.inc,v 1.1.1.1 2018/02/03 22:43:37 christos Exp $
#
# @(#) Copyright (c) 1995 Simon J. Gerraty
#
# SRCS extracted from src/crypto/dist/openssl/crypto/seed/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/seed
SEED_SRCS = seed.c seed_ecb.c seed_cbc.c seed_cfb.c seed_ofb.c
SRCS += ${SEED_SRCS}
.for cryptosrc in ${SEED_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/seed
.endfor
|