18 lines
419 B
PHP
18 lines
419 B
PHP
# $NetBSD: dh.inc,v 1.8 2008/05/09 21:52:18 christos Exp $
|
|
#
|
|
# @(#) Copyright (c) 1995 Simon J. Gerraty
|
|
#
|
|
# SRCS extracted from src/crypto/dist/openssl/crypto/dh/Makefile
|
|
#
|
|
|
|
.PATH: ${OPENSSLSRC}/crypto/dh
|
|
|
|
|
|
DH_SRCS = dh_asn1.c dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c dh_depr.c \
|
|
dh_ameth.c dh_pmeth.c
|
|
SRCS += ${DH_SRCS}
|
|
|
|
.for cryptosrc in ${DH_SRCS}
|
|
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/dh
|
|
.endfor
|