diff options
author | joshua <> | 2022-11-10 17:53:45 +0000 |
---|---|---|
committer | joshua <> | 2022-11-10 17:53:45 +0000 |
commit | 67d2b90781cde981c11f7630740bca9847e85165 (patch) | |
tree | a4ce994c5ab5fd14dac661fcfcaaef14e94e18e5 | |
parent | 61e1293a14728599b7160bc57f2773db4f0e3df9 (diff) | |
download | openbsd-67d2b90781cde981c11f7630740bca9847e85165.tar.gz openbsd-67d2b90781cde981c11f7630740bca9847e85165.tar.bz2 openbsd-67d2b90781cde981c11f7630740bca9847e85165.zip |
Finish migrating to one source file per line.
ok jsing@ tb@
-rw-r--r-- | src/lib/libcrypto/Makefile | 95 |
1 files changed, 78 insertions, 17 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile index 084d6c1786..ffcdc7dabb 100644 --- a/src/lib/libcrypto/Makefile +++ b/src/lib/libcrypto/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.86 2022/11/10 16:37:51 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.87 2022/11/10 17:53:45 joshua Exp $ |
2 | 2 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | LIBREBUILD=y | 4 | LIBREBUILD=y |
@@ -641,33 +641,94 @@ SRCS+= sm4.c | |||
641 | SRCS+= stack.c | 641 | SRCS+= stack.c |
642 | 642 | ||
643 | # ts/ | 643 | # ts/ |
644 | SRCS+= ts_err.c ts_req_utils.c ts_req_print.c ts_rsp_utils.c ts_rsp_print.c | ||
645 | SRCS+= ts_rsp_sign.c ts_rsp_verify.c ts_verify_ctx.c ts_lib.c ts_conf.c | ||
646 | SRCS+= ts_asn1.c | 644 | SRCS+= ts_asn1.c |
645 | SRCS+= ts_conf.c | ||
646 | SRCS+= ts_err.c | ||
647 | SRCS+= ts_lib.c | ||
648 | SRCS+= ts_req_print.c | ||
649 | SRCS+= ts_req_utils.c | ||
650 | SRCS+= ts_rsp_print.c | ||
651 | SRCS+= ts_rsp_sign.c | ||
652 | SRCS+= ts_rsp_utils.c | ||
653 | SRCS+= ts_rsp_verify.c | ||
654 | SRCS+= ts_verify_ctx.c | ||
647 | 655 | ||
648 | # txt_db/ | 656 | # txt_db/ |
649 | SRCS+=txt_db.c | 657 | SRCS+=txt_db.c |
650 | 658 | ||
651 | # ui/ | 659 | # ui/ |
652 | SRCS+= ui_err.c ui_lib.c ui_openssl.c ui_util.c | 660 | SRCS+= ui_err.c |
661 | SRCS+= ui_lib.c | ||
662 | SRCS+= ui_openssl.c | ||
663 | SRCS+= ui_util.c | ||
653 | 664 | ||
654 | # whrlpool/ | 665 | # whrlpool/ |
655 | SRCS+= wp_dgst.c | 666 | SRCS+= wp_dgst.c |
656 | 667 | ||
657 | # x509/ | 668 | # x509/ |
658 | SRCS+= x509_addr.c x509_asid.c | 669 | SRCS+= by_dir.c |
659 | SRCS+= x509_def.c x509_d2.c x509_r2x.c x509_cmp.c | 670 | SRCS+= by_file.c |
660 | SRCS+= x509_obj.c x509_req.c x509spki.c x509_vfy.c | 671 | SRCS+= by_mem.c |
661 | SRCS+= x509_set.c x509cset.c x509rset.c x509_err.c | 672 | SRCS+= pcy_cache.c |
662 | SRCS+= x509name.c x509_v3.c x509_ext.c x509_att.c | 673 | SRCS+= pcy_data.c |
663 | SRCS+= x509type.c x509_lu.c x_all.c x509_txt.c | 674 | SRCS+= pcy_lib.c |
664 | SRCS+= x509_trs.c by_file.c by_dir.c by_mem.c x509_vpm.c | 675 | SRCS+= pcy_map.c |
665 | SRCS+= x509_bcons.c x509_bitst.c x509_conf.c x509_extku.c x509_ia5.c x509_lib.c | 676 | SRCS+= pcy_node.c |
666 | SRCS+= x509_prn.c x509_utl.c x509_genn.c x509_alt.c x509_skey.c x509_akey.c x509_pku.c | 677 | SRCS+= pcy_tree.c |
667 | SRCS+= x509_int.c x509_enum.c x509_sxnet.c x509_cpols.c x509_crld.c x509_purp.c x509_info.c | 678 | SRCS+= x509_addr.c |
668 | SRCS+= x509_ocsp.c x509_akeya.c x509_pmaps.c x509_pcons.c x509_ncons.c x509_pcia.c x509_pci.c | 679 | SRCS+= x509_akey.c |
669 | SRCS+= x509_issuer_cache.c x509_constraints.c x509_verify.c | 680 | SRCS+= x509_akeya.c |
670 | SRCS+= pcy_cache.c pcy_node.c pcy_data.c pcy_map.c pcy_tree.c pcy_lib.c | 681 | SRCS+= x509_alt.c |
682 | SRCS+= x509_asid.c | ||
683 | SRCS+= x509_att.c | ||
684 | SRCS+= x509_bcons.c | ||
685 | SRCS+= x509_bitst.c | ||
686 | SRCS+= x509_cmp.c | ||
687 | SRCS+= x509_conf.c | ||
688 | SRCS+= x509_constraints.c | ||
689 | SRCS+= x509_cpols.c | ||
690 | SRCS+= x509_crld.c | ||
691 | SRCS+= x509_d2.c | ||
692 | SRCS+= x509_def.c | ||
693 | SRCS+= x509_enum.c | ||
694 | SRCS+= x509_err.c | ||
695 | SRCS+= x509_ext.c | ||
696 | SRCS+= x509_extku.c | ||
697 | SRCS+= x509_genn.c | ||
698 | SRCS+= x509_ia5.c | ||
699 | SRCS+= x509_info.c | ||
700 | SRCS+= x509_int.c | ||
701 | SRCS+= x509_issuer_cache.c | ||
702 | SRCS+= x509_lib.c | ||
703 | SRCS+= x509_lu.c | ||
704 | SRCS+= x509_ncons.c | ||
705 | SRCS+= x509_obj.c | ||
706 | SRCS+= x509_ocsp.c | ||
707 | SRCS+= x509_pci.c | ||
708 | SRCS+= x509_pcia.c | ||
709 | SRCS+= x509_pcons.c | ||
710 | SRCS+= x509_pku.c | ||
711 | SRCS+= x509_pmaps.c | ||
712 | SRCS+= x509_prn.c | ||
713 | SRCS+= x509_purp.c | ||
714 | SRCS+= x509_r2x.c | ||
715 | SRCS+= x509_req.c | ||
716 | SRCS+= x509_set.c | ||
717 | SRCS+= x509_skey.c | ||
718 | SRCS+= x509_sxnet.c | ||
719 | SRCS+= x509_trs.c | ||
720 | SRCS+= x509_txt.c | ||
721 | SRCS+= x509_utl.c | ||
722 | SRCS+= x509_v3.c | ||
723 | SRCS+= x509_verify.c | ||
724 | SRCS+= x509_vfy.c | ||
725 | SRCS+= x509_vpm.c | ||
726 | SRCS+= x509cset.c | ||
727 | SRCS+= x509name.c | ||
728 | SRCS+= x509rset.c | ||
729 | SRCS+= x509spki.c | ||
730 | SRCS+= x509type.c | ||
731 | SRCS+= x_all.c | ||
671 | 732 | ||
672 | .PATH: ${.CURDIR}/arch/${MACHINE_CPU} \ | 733 | .PATH: ${.CURDIR}/arch/${MACHINE_CPU} \ |
673 | ${LCRYPTO_SRC} \ | 734 | ${LCRYPTO_SRC} \ |