diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2024-03-28 01:41:17 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2024-03-28 01:41:17 +0000 |
commit | 923af3dea5f29e204b429c9112bb6d386688cd5f (patch) | |
tree | 7ba40a7bfdfe897748ab59e8b0fad04677556041 /lib/libcrypto/Makefile | |
parent | f775a47ca04c0af09ce26b03baf12d2a56ce9fb6 (diff) |
Move des sources to primary Makefile.
Now that all platforms use a C des implementation, move it to the primary
Makefile.
Diffstat (limited to 'lib/libcrypto/Makefile')
-rw-r--r-- | lib/libcrypto/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcrypto/Makefile b/lib/libcrypto/Makefile index 63600aa9233..447a8f65b52 100644 --- a/lib/libcrypto/Makefile +++ b/lib/libcrypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.180 2024/03/28 00:57:26 jsing Exp $ +# $OpenBSD: Makefile,v 1.181 2024/03/28 01:41:16 jsing Exp $ LIB= crypto LIBREBUILD=y @@ -266,12 +266,14 @@ SRCS+= cbc_enc.c SRCS+= cfb64ede.c SRCS+= cfb64enc.c SRCS+= cfb_enc.c +SRCS+= des_enc.c SRCS+= ecb3_enc.c SRCS+= ecb_enc.c SRCS+= ede_cbcm_enc.c SRCS+= enc_read.c SRCS+= enc_writ.c SRCS+= fcrypt.c +SRCS+= fcrypt_b.c SRCS+= ofb64ede.c SRCS+= ofb64enc.c SRCS+= ofb_enc.c |