From 7885f9bfc6abda7a04dda1da4f4bf0da78d500ad Mon Sep 17 00:00:00 2001 From: Kenjiro Nakayama Date: Thu, 22 May 2025 09:47:56 +0900 Subject: update CMake and Makefile --- crypto/CMakeLists.txt | 8 -------- crypto/Makefile.am.elf-x86_64 | 2 -- crypto/Makefile.am.macosx-x86_64 | 2 -- crypto/Makefile.am.masm-x86_64 | 2 -- crypto/Makefile.am.mingw64-x86_64 | 2 -- 5 files changed, 16 deletions(-) diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index cee92ef..4f3f338 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt @@ -23,8 +23,6 @@ if(HOST_ASM_ELF_X86_64) set( ASM_X86_64_ELF_SRC aes/aes-elf-x86_64.S - aes/bsaes-elf-x86_64.S - aes/vpaes-elf-x86_64.S aes/aesni-elf-x86_64.S bn/modexp512-elf-x86_64.S bn/mont-elf-x86_64.S @@ -60,8 +58,6 @@ if(HOST_ASM_MACOSX_X86_64) set( ASM_X86_64_MACOSX_SRC aes/aes-macosx-x86_64.S - aes/bsaes-macosx-x86_64.S - aes/vpaes-macosx-x86_64.S aes/aesni-macosx-x86_64.S bn/modexp512-macosx-x86_64.S bn/mont-macosx-x86_64.S @@ -98,8 +94,6 @@ if(HOST_ASM_MASM_X86_64) set( ASM_X86_64_MASM_SRC aes/aes-masm-x86_64.S - aes/bsaes-masm-x86_64.S - aes/vpaes-masm-x86_64.S aes/aesni-masm-x86_64.S #bn/modexp512-masm-x86_64.S #bn/mont-masm-x86_64.S @@ -124,8 +118,6 @@ if(HOST_ASM_MINGW64_X86_64) set( ASM_X86_64_MINGW64_SRC aes/aes-mingw64-x86_64.S - aes/bsaes-mingw64-x86_64.S - aes/vpaes-mingw64-x86_64.S aes/aesni-mingw64-x86_64.S #bn/modexp512-mingw64-x86_64.S #bn/mont-mingw64-x86_64.S diff --git a/crypto/Makefile.am.elf-x86_64 b/crypto/Makefile.am.elf-x86_64 index c62662c..c85ede8 100644 --- a/crypto/Makefile.am.elf-x86_64 +++ b/crypto/Makefile.am.elf-x86_64 @@ -1,7 +1,5 @@ ASM_X86_64_ELF = aes/aes-elf-x86_64.S -ASM_X86_64_ELF += aes/bsaes-elf-x86_64.S -ASM_X86_64_ELF += aes/vpaes-elf-x86_64.S ASM_X86_64_ELF += aes/aesni-elf-x86_64.S ASM_X86_64_ELF += bn/modexp512-elf-x86_64.S ASM_X86_64_ELF += bn/mont-elf-x86_64.S diff --git a/crypto/Makefile.am.macosx-x86_64 b/crypto/Makefile.am.macosx-x86_64 index 010e3be..b8bc893 100644 --- a/crypto/Makefile.am.macosx-x86_64 +++ b/crypto/Makefile.am.macosx-x86_64 @@ -1,7 +1,5 @@ ASM_X86_64_MACOSX = aes/aes-macosx-x86_64.S -ASM_X86_64_MACOSX += aes/bsaes-macosx-x86_64.S -ASM_X86_64_MACOSX += aes/vpaes-macosx-x86_64.S ASM_X86_64_MACOSX += aes/aesni-macosx-x86_64.S ASM_X86_64_MACOSX += bn/modexp512-macosx-x86_64.S ASM_X86_64_MACOSX += bn/mont-macosx-x86_64.S diff --git a/crypto/Makefile.am.masm-x86_64 b/crypto/Makefile.am.masm-x86_64 index 2ef7e1b..a9225be 100644 --- a/crypto/Makefile.am.masm-x86_64 +++ b/crypto/Makefile.am.masm-x86_64 @@ -1,7 +1,5 @@ ASM_X86_64_MASM = aes/aes-masm-x86_64.S -ASM_X86_64_MASM += aes/bsaes-masm-x86_64.S -ASM_X86_64_MASM += aes/vpaes-masm-x86_64.S ASM_X86_64_MASM += aes/aesni-masm-x86_64.S ASM_X86_64_MASM += bn/modexp512-masm-x86_64.S ASM_X86_64_MASM += bn/mont-masm-x86_64.S diff --git a/crypto/Makefile.am.mingw64-x86_64 b/crypto/Makefile.am.mingw64-x86_64 index 8e39e9f..72b767f 100644 --- a/crypto/Makefile.am.mingw64-x86_64 +++ b/crypto/Makefile.am.mingw64-x86_64 @@ -1,7 +1,5 @@ ASM_X86_64_MINGW64 = aes/aes-mingw64-x86_64.S -ASM_X86_64_MINGW64 += aes/bsaes-mingw64-x86_64.S -ASM_X86_64_MINGW64 += aes/vpaes-mingw64-x86_64.S ASM_X86_64_MINGW64 += aes/aesni-mingw64-x86_64.S #ASM_X86_64_MINGW64 += bn/modexp512-mingw64-x86_64.S #ASM_X86_64_MINGW64 += bn/mont-mingw64-x86_64.S -- cgit v1.2.3-55-g6feb