summaryrefslogtreecommitdiffstats
path: root/crypto/dh
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2006-03-20 17:56:05 +0000
committerDr. Stephen Henson <steve@openssl.org>2006-03-20 17:56:05 +0000
commit6f81892e6ba0bf0840d12e27f695817230dd42c1 (patch)
treec3d333fb4e22dbaa99408d60cbe4c0406ae0d4c8 /crypto/dh
parent448be743350791d32764fac38f5d3c8ffda481b2 (diff)
Transfer parameter handling and key comparison to algorithm methods.
Diffstat (limited to 'crypto/dh')
-rw-r--r--crypto/dh/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/crypto/dh/Makefile b/crypto/dh/Makefile
index d368e33b4c..75bd7056f9 100644
--- a/crypto/dh/Makefile
+++ b/crypto/dh/Makefile
@@ -17,8 +17,10 @@ TEST= dhtest.c
APPS=
LIB=$(TOP)/libcrypto.a
-LIBSRC= dh_asn1.c dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c dh_depr.c
-LIBOBJ= dh_asn1.o dh_gen.o dh_key.o dh_lib.o dh_check.o dh_err.o dh_depr.o
+LIBSRC= dh_asn1.c dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c dh_depr.c \
+ dh_ameth.c
+LIBOBJ= dh_asn1.o dh_gen.o dh_key.o dh_lib.o dh_check.o dh_err.o dh_depr.o \
+ dh_ameth.o
SRC= $(LIBSRC)