1 # $NetBSD: dh.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/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 dh_rfc7919.c 26 27 SRCS += ${DH_SRCS} 28 29 .for cryptosrc in ${DH_SRCS} 30 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/dh 31 .endfor 32