summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile
index 6e6effc9b4..8e39d92ab4 100644
--- a/src/lib/libcrypto/Makefile
+++ b/src/lib/libcrypto/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.29 2018/11/11 06:41:28 bcook Exp $ 1# $OpenBSD: Makefile,v 1.30 2018/11/11 06:53:31 tb Exp $
2 2
3LIB= crypto 3LIB= crypto
4LIBREBUILD=y 4LIBREBUILD=y
@@ -152,7 +152,7 @@ SRCS+= encode.c digest.c evp_enc.c evp_key.c
152SRCS+= e_des.c e_bf.c e_idea.c e_des3.c e_camellia.c 152SRCS+= e_des.c e_bf.c e_idea.c e_des3.c e_camellia.c
153SRCS+= e_rc4.c e_aes.c names.c 153SRCS+= e_rc4.c e_aes.c names.c
154SRCS+= e_xcbc_d.c e_rc2.c e_cast.c 154SRCS+= e_xcbc_d.c e_rc2.c e_cast.c
155SRCS+= m_null.c m_md4.c m_md5.c m_sha1.c m_wp.c 155SRCS+= m_null.c m_md4.c m_md5.c m_sha1.c m_sm3.c m_wp.c
156SRCS+= m_dss.c m_dss1.c m_ripemd.c m_ecdsa.c 156SRCS+= m_dss.c m_dss1.c m_ripemd.c m_ecdsa.c
157SRCS+= p_open.c p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c p_dec.c 157SRCS+= p_open.c p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c p_dec.c
158SRCS+= bio_md.c bio_b64.c bio_enc.c evp_err.c e_null.c 158SRCS+= bio_md.c bio_b64.c bio_enc.c evp_err.c e_null.c
@@ -232,6 +232,9 @@ SRCS+= rsa_pmeth.c rsa_crpt.c rsa_meth.c
232# sha/ 232# sha/
233SRCS+= sha1dgst.c sha1_one.c sha256.c sha512.c 233SRCS+= sha1dgst.c sha1_one.c sha256.c sha512.c
234 234
235# sm3/
236SRCS+= sm3.c
237
235# stack/ 238# stack/
236SRCS+= stack.c 239SRCS+= stack.c
237 240
@@ -311,6 +314,7 @@ SRCS+= pcy_cache.c pcy_node.c pcy_data.c pcy_map.c pcy_tree.c pcy_lib.c
311 ${LCRYPTO_SRC}/ripemd \ 314 ${LCRYPTO_SRC}/ripemd \
312 ${LCRYPTO_SRC}/rsa \ 315 ${LCRYPTO_SRC}/rsa \
313 ${LCRYPTO_SRC}/sha \ 316 ${LCRYPTO_SRC}/sha \
317 ${LCRYPTO_SRC}/sm3 \
314 ${LCRYPTO_SRC}/stack \ 318 ${LCRYPTO_SRC}/stack \
315 ${LCRYPTO_SRC}/threads \ 319 ${LCRYPTO_SRC}/threads \
316 ${LCRYPTO_SRC}/ts \ 320 ${LCRYPTO_SRC}/ts \
@@ -371,6 +375,7 @@ HDRS=\
371 ${LCRYPTO_SRC}/ripemd/ripemd.h \ 375 ${LCRYPTO_SRC}/ripemd/ripemd.h \
372 ${LCRYPTO_SRC}/rsa/rsa.h \ 376 ${LCRYPTO_SRC}/rsa/rsa.h \
373 ${LCRYPTO_SRC}/sha/sha.h \ 377 ${LCRYPTO_SRC}/sha/sha.h \
378 ${LCRYPTO_SRC}/sm3/sm3.h \
374 ${LCRYPTO_SRC}/stack/safestack.h \ 379 ${LCRYPTO_SRC}/stack/safestack.h \
375 ${LCRYPTO_SRC}/stack/stack.h \ 380 ${LCRYPTO_SRC}/stack/stack.h \
376 ${LCRYPTO_SRC}/ts/ts.h \ 381 ${LCRYPTO_SRC}/ts/ts.h \