diff options
Diffstat (limited to 'src/lib/libcrypto/crypto')
-rw-r--r-- | src/lib/libcrypto/crypto/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/crypto/Makefile b/src/lib/libcrypto/crypto/Makefile index c6b7c6db46..f1e54659e6 100644 --- a/src/lib/libcrypto/crypto/Makefile +++ b/src/lib/libcrypto/crypto/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.50 2014/11/20 19:19:09 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.51 2014/12/03 22:14:38 bcook Exp $ |
2 | 2 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | 4 | ||
@@ -58,7 +58,7 @@ SRCS+= bio_lib.c bio_cb.c bio_err.c | |||
58 | SRCS+= bss_mem.c bss_null.c bss_fd.c | 58 | SRCS+= bss_mem.c bss_null.c bss_fd.c |
59 | SRCS+= bss_file.c bss_sock.c bss_conn.c | 59 | SRCS+= bss_file.c bss_sock.c bss_conn.c |
60 | SRCS+= bf_null.c bf_buff.c b_print.c b_dump.c | 60 | SRCS+= bf_null.c bf_buff.c b_print.c b_dump.c |
61 | SRCS+= b_sock.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c | 61 | SRCS+= b_posix.c b_sock.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c |
62 | SRCS+= bss_dgram.c | 62 | SRCS+= bss_dgram.c |
63 | 63 | ||
64 | # bn/ | 64 | # bn/ |
@@ -96,7 +96,7 @@ SRCS+= conf_err.c conf_lib.c conf_api.c conf_def.c conf_mod.c | |||
96 | SRCS+= conf_mall.c conf_sap.c | 96 | SRCS+= conf_mall.c conf_sap.c |
97 | 97 | ||
98 | # des/ | 98 | # des/ |
99 | SRCS+= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c | 99 | SRCS+= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c |
100 | SRCS+= ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c | 100 | SRCS+= ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c |
101 | SRCS+= fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c | 101 | SRCS+= fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c |
102 | SRCS+= qud_cksm.c rand_key.c set_key.c xcbc_enc.c | 102 | SRCS+= qud_cksm.c rand_key.c set_key.c xcbc_enc.c |
@@ -433,13 +433,13 @@ obj_dat.h: obj_mac.h | |||
433 | .include "${.CURDIR}/arch/${MACHINE_CPU}/Makefile.inc" | 433 | .include "${.CURDIR}/arch/${MACHINE_CPU}/Makefile.inc" |
434 | .else | 434 | .else |
435 | CFLAGS+=-DOPENSSL_NO_ASM | 435 | CFLAGS+=-DOPENSSL_NO_ASM |
436 | SRCS+= aes_core.c aes_cbc.c | 436 | SRCS+= aes_core.c aes_cbc.c |
437 | SRCS+= bf_enc.c | 437 | SRCS+= bf_enc.c |
438 | SRCS+= bn_asm.c | 438 | SRCS+= bn_asm.c |
439 | SRCS+= camellia.c cmll_cbc.c cmll_misc.c | 439 | SRCS+= camellia.c cmll_cbc.c cmll_misc.c |
440 | SRCS+= des_enc.c fcrypt_b.c | 440 | SRCS+= des_enc.c fcrypt_b.c |
441 | SRCS+= rc4_enc.c rc4_skey.c | 441 | SRCS+= rc4_enc.c rc4_skey.c |
442 | #SRCS+= rc5_enc.c | 442 | #SRCS+= rc5_enc.c |
443 | SRCS+= wp_block.c | 443 | SRCS+= wp_block.c |
444 | .endif | 444 | .endif |
445 | 445 | ||