diff options
| author | Kenjiro Nakayama <nakayamakenjiro@gmail.com> | 2025-05-22 09:47:56 +0900 |
|---|---|---|
| committer | Kenjiro Nakayama <nakayamakenjiro@gmail.com> | 2025-05-22 09:47:56 +0900 |
| commit | 7885f9bfc6abda7a04dda1da4f4bf0da78d500ad (patch) | |
| tree | 2adbc6010144d65c1fd7c1afd30d2a52aa19b30d | |
| parent | 95fea99949550d5d07ad5c03921e374f070a110e (diff) | |
| download | portable-7885f9bfc6abda7a04dda1da4f4bf0da78d500ad.tar.gz portable-7885f9bfc6abda7a04dda1da4f4bf0da78d500ad.tar.bz2 portable-7885f9bfc6abda7a04dda1da4f4bf0da78d500ad.zip | |
update CMake and Makefile
| -rw-r--r-- | crypto/CMakeLists.txt | 8 | ||||
| -rw-r--r-- | crypto/Makefile.am.elf-x86_64 | 2 | ||||
| -rw-r--r-- | crypto/Makefile.am.macosx-x86_64 | 2 | ||||
| -rw-r--r-- | crypto/Makefile.am.masm-x86_64 | 2 | ||||
| -rw-r--r-- | crypto/Makefile.am.mingw64-x86_64 | 2 |
5 files changed, 0 insertions, 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) | |||
| 23 | set( | 23 | set( |
| 24 | ASM_X86_64_ELF_SRC | 24 | ASM_X86_64_ELF_SRC |
| 25 | aes/aes-elf-x86_64.S | 25 | aes/aes-elf-x86_64.S |
| 26 | aes/bsaes-elf-x86_64.S | ||
| 27 | aes/vpaes-elf-x86_64.S | ||
| 28 | aes/aesni-elf-x86_64.S | 26 | aes/aesni-elf-x86_64.S |
| 29 | bn/modexp512-elf-x86_64.S | 27 | bn/modexp512-elf-x86_64.S |
| 30 | bn/mont-elf-x86_64.S | 28 | bn/mont-elf-x86_64.S |
| @@ -60,8 +58,6 @@ if(HOST_ASM_MACOSX_X86_64) | |||
| 60 | set( | 58 | set( |
| 61 | ASM_X86_64_MACOSX_SRC | 59 | ASM_X86_64_MACOSX_SRC |
| 62 | aes/aes-macosx-x86_64.S | 60 | aes/aes-macosx-x86_64.S |
| 63 | aes/bsaes-macosx-x86_64.S | ||
| 64 | aes/vpaes-macosx-x86_64.S | ||
| 65 | aes/aesni-macosx-x86_64.S | 61 | aes/aesni-macosx-x86_64.S |
| 66 | bn/modexp512-macosx-x86_64.S | 62 | bn/modexp512-macosx-x86_64.S |
| 67 | bn/mont-macosx-x86_64.S | 63 | bn/mont-macosx-x86_64.S |
| @@ -98,8 +94,6 @@ if(HOST_ASM_MASM_X86_64) | |||
| 98 | set( | 94 | set( |
| 99 | ASM_X86_64_MASM_SRC | 95 | ASM_X86_64_MASM_SRC |
| 100 | aes/aes-masm-x86_64.S | 96 | aes/aes-masm-x86_64.S |
| 101 | aes/bsaes-masm-x86_64.S | ||
| 102 | aes/vpaes-masm-x86_64.S | ||
| 103 | aes/aesni-masm-x86_64.S | 97 | aes/aesni-masm-x86_64.S |
| 104 | #bn/modexp512-masm-x86_64.S | 98 | #bn/modexp512-masm-x86_64.S |
| 105 | #bn/mont-masm-x86_64.S | 99 | #bn/mont-masm-x86_64.S |
| @@ -124,8 +118,6 @@ if(HOST_ASM_MINGW64_X86_64) | |||
| 124 | set( | 118 | set( |
| 125 | ASM_X86_64_MINGW64_SRC | 119 | ASM_X86_64_MINGW64_SRC |
| 126 | aes/aes-mingw64-x86_64.S | 120 | aes/aes-mingw64-x86_64.S |
| 127 | aes/bsaes-mingw64-x86_64.S | ||
| 128 | aes/vpaes-mingw64-x86_64.S | ||
| 129 | aes/aesni-mingw64-x86_64.S | 121 | aes/aesni-mingw64-x86_64.S |
| 130 | #bn/modexp512-mingw64-x86_64.S | 122 | #bn/modexp512-mingw64-x86_64.S |
| 131 | #bn/mont-mingw64-x86_64.S | 123 | #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 @@ | |||
| 1 | 1 | ||
| 2 | ASM_X86_64_ELF = aes/aes-elf-x86_64.S | 2 | ASM_X86_64_ELF = aes/aes-elf-x86_64.S |
| 3 | ASM_X86_64_ELF += aes/bsaes-elf-x86_64.S | ||
| 4 | ASM_X86_64_ELF += aes/vpaes-elf-x86_64.S | ||
| 5 | ASM_X86_64_ELF += aes/aesni-elf-x86_64.S | 3 | ASM_X86_64_ELF += aes/aesni-elf-x86_64.S |
| 6 | ASM_X86_64_ELF += bn/modexp512-elf-x86_64.S | 4 | ASM_X86_64_ELF += bn/modexp512-elf-x86_64.S |
| 7 | ASM_X86_64_ELF += bn/mont-elf-x86_64.S | 5 | 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 @@ | |||
| 1 | 1 | ||
| 2 | ASM_X86_64_MACOSX = aes/aes-macosx-x86_64.S | 2 | ASM_X86_64_MACOSX = aes/aes-macosx-x86_64.S |
| 3 | ASM_X86_64_MACOSX += aes/bsaes-macosx-x86_64.S | ||
| 4 | ASM_X86_64_MACOSX += aes/vpaes-macosx-x86_64.S | ||
| 5 | ASM_X86_64_MACOSX += aes/aesni-macosx-x86_64.S | 3 | ASM_X86_64_MACOSX += aes/aesni-macosx-x86_64.S |
| 6 | ASM_X86_64_MACOSX += bn/modexp512-macosx-x86_64.S | 4 | ASM_X86_64_MACOSX += bn/modexp512-macosx-x86_64.S |
| 7 | ASM_X86_64_MACOSX += bn/mont-macosx-x86_64.S | 5 | 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 @@ | |||
| 1 | 1 | ||
| 2 | ASM_X86_64_MASM = aes/aes-masm-x86_64.S | 2 | ASM_X86_64_MASM = aes/aes-masm-x86_64.S |
| 3 | ASM_X86_64_MASM += aes/bsaes-masm-x86_64.S | ||
| 4 | ASM_X86_64_MASM += aes/vpaes-masm-x86_64.S | ||
| 5 | ASM_X86_64_MASM += aes/aesni-masm-x86_64.S | 3 | ASM_X86_64_MASM += aes/aesni-masm-x86_64.S |
| 6 | ASM_X86_64_MASM += bn/modexp512-masm-x86_64.S | 4 | ASM_X86_64_MASM += bn/modexp512-masm-x86_64.S |
| 7 | ASM_X86_64_MASM += bn/mont-masm-x86_64.S | 5 | 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 @@ | |||
| 1 | 1 | ||
| 2 | ASM_X86_64_MINGW64 = aes/aes-mingw64-x86_64.S | 2 | ASM_X86_64_MINGW64 = aes/aes-mingw64-x86_64.S |
| 3 | ASM_X86_64_MINGW64 += aes/bsaes-mingw64-x86_64.S | ||
| 4 | ASM_X86_64_MINGW64 += aes/vpaes-mingw64-x86_64.S | ||
| 5 | ASM_X86_64_MINGW64 += aes/aesni-mingw64-x86_64.S | 3 | ASM_X86_64_MINGW64 += aes/aesni-mingw64-x86_64.S |
| 6 | #ASM_X86_64_MINGW64 += bn/modexp512-mingw64-x86_64.S | 4 | #ASM_X86_64_MINGW64 += bn/modexp512-mingw64-x86_64.S |
| 7 | #ASM_X86_64_MINGW64 += bn/mont-mingw64-x86_64.S | 5 | #ASM_X86_64_MINGW64 += bn/mont-mingw64-x86_64.S |
