summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/Makefile
diff options
context:
space:
mode:
authorjsing <>2024-03-27 11:12:09 +0000
committerjsing <>2024-03-27 11:12:09 +0000
commit7c0826c77345eb621368903e5eb6a826654f290b (patch)
tree56d0ae3182993e9ae701704045076d421b192f30 /src/lib/libcrypto/Makefile
parent144e4e6c1b33a96032d136d37c9a9b762c0f99c1 (diff)
downloadopenbsd-7c0826c77345eb621368903e5eb6a826654f290b.tar.gz
openbsd-7c0826c77345eb621368903e5eb6a826654f290b.tar.bz2
openbsd-7c0826c77345eb621368903e5eb6a826654f290b.zip
Move bf_enc.c to the primary Makefile.
Now that all architectures are using bf_enc.c, it does not make sense to have it in every Makefile.inc file.
Diffstat (limited to 'src/lib/libcrypto/Makefile')
-rw-r--r--src/lib/libcrypto/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile
index 8c3d05bd48..4ea8d0c2ad 100644
--- a/src/lib/libcrypto/Makefile
+++ b/src/lib/libcrypto/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.175 2024/03/19 19:27:33 tb Exp $ 1# $OpenBSD: Makefile,v 1.176 2024/03/27 11:12:08 jsing Exp $
2 2
3LIB= crypto 3LIB= crypto
4LIBREBUILD=y 4LIBREBUILD=y
@@ -144,6 +144,7 @@ SRCS+= x_x509a.c
144# bf/ 144# bf/
145SRCS+= bf_cfb64.c 145SRCS+= bf_cfb64.c
146SRCS+= bf_ecb.c 146SRCS+= bf_ecb.c
147SRCS+= bf_enc.c
147SRCS+= bf_ofb64.c 148SRCS+= bf_ofb64.c
148SRCS+= bf_skey.c 149SRCS+= bf_skey.c
149 150