dh.inc revision 1.4 1 # $NetBSD: dh.inc,v 1.4 2018/02/08 21:57:24 christos Exp $
2 #
3 # @(#) Copyright (c) 1995 Simon J. Gerraty
4 #
5 # SRCS extracted from src/crypto/dist/openssl/crypto/dh/Makefile
6 #
7
8 .PATH: ${OPENSSLSRC}/crypto/dh
9
10
11 DH_SRCS = \
12 dh_ameth.c \
13 dh_asn1.c \
14 dh_check.c \
15 dh_depr.c \
16 dh_err.c \
17 dh_gen.c \
18 dh_kdf.c \
19 dh_key.c \
20 dh_lib.c \
21 dh_meth.c \
22 dh_pmeth.c \
23 dh_prn.c \
24 dh_rfc5114.c
25
26 SRCS += ${DH_SRCS}
27
28 .for cryptosrc in ${DH_SRCS}
29 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/dh
30 .endfor
31