summaryrefslogtreecommitdiffstats
path: root/crypto/dh/Makefile
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2006-03-22 13:34:19 +0000
committerDr. Stephen Henson <steve@openssl.org>2006-03-22 13:34:19 +0000
commit1b593194bed99926068d03d46d16d0659b6eba58 (patch)
tree550167347937f8eaa13d46167726b427250b63df /crypto/dh/Makefile
parent35208f368ceb7814ad93688657bfa05ff2b548ec (diff)
Move algorithm specific print code from crypto/asn1/t_pkey.c to separate
*_prn.c files in each algorithm directory.
Diffstat (limited to 'crypto/dh/Makefile')
-rw-r--r--crypto/dh/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/dh/Makefile b/crypto/dh/Makefile
index 75bd7056f9..c0867d2968 100644
--- a/crypto/dh/Makefile
+++ b/crypto/dh/Makefile
@@ -18,9 +18,9 @@ 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 \
- dh_ameth.c
+ dh_ameth.c dh_prn.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
+ dh_ameth.o dh_prn.o
SRC= $(LIBSRC)