diff options
Diffstat (limited to 'crypto/Makefile.am.elf-x86_64')
-rw-r--r-- | crypto/Makefile.am.elf-x86_64 | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/crypto/Makefile.am.elf-x86_64 b/crypto/Makefile.am.elf-x86_64 new file mode 100644 index 0000000..6257c40 --- /dev/null +++ b/crypto/Makefile.am.elf-x86_64 | |||
@@ -0,0 +1,41 @@ | |||
1 | |||
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 | ||
6 | ASM_X86_64_ELF += aes/aesni-sha1-elf-x86_64.s | ||
7 | ASM_X86_64_ELF += bn/modexp512-elf-x86_64.s | ||
8 | ASM_X86_64_ELF += bn/mont-elf-x86_64.s | ||
9 | ASM_X86_64_ELF += bn/mont5-elf-x86_64.s | ||
10 | ASM_X86_64_ELF += bn/gf2m-elf-x86_64.s | ||
11 | ASM_X86_64_ELF += camellia/cmll-elf-x86_64.s | ||
12 | ASM_X86_64_ELF += md5/md5-elf-x86_64.s | ||
13 | ASM_X86_64_ELF += modes/ghash-elf-x86_64.s | ||
14 | ASM_X86_64_ELF += rc4/rc4-elf-x86_64.s | ||
15 | ASM_X86_64_ELF += rc4/rc4-md5-elf-x86_64.s | ||
16 | ASM_X86_64_ELF += sha/sha1-elf-x86_64.s | ||
17 | ASM_X86_64_ELF += sha/sha256-elf-x86_64.S | ||
18 | ASM_X86_64_ELF += sha/sha512-elf-x86_64.S | ||
19 | ASM_X86_64_ELF += whrlpool/wp-elf-x86_64.s | ||
20 | ASM_X86_64_ELF += cpuid-elf-x86_64.S | ||
21 | |||
22 | EXTRA_DIST += $(ASM_X86_64_ELF) | ||
23 | |||
24 | if HOST_ASM_ELF_X86_64 | ||
25 | libcrypto_la_CFLAGS += -DAES_ASM | ||
26 | libcrypto_la_CFLAGS += -DBSAES_ASM | ||
27 | libcrypto_la_CFLAGS += -DVPAES_ASM | ||
28 | libcrypto_la_CFLAGS += -DOPENSSL_IA32_SSE2 | ||
29 | libcrypto_la_CFLAGS += -DOPENSSL_BN_ASM_MONT | ||
30 | libcrypto_la_CFLAGS += -DOPENSSL_BN_ASM_MONT5 | ||
31 | libcrypto_la_CFLAGS += -DOPENSSL_BN_ASM_GF2m | ||
32 | libcrypto_la_CFLAGS += -DMD5_ASM | ||
33 | libcrypto_la_CFLAGS += -DGHASH_ASM | ||
34 | libcrypto_la_CFLAGS += -DRSA_ASM | ||
35 | libcrypto_la_CFLAGS += -DSHA1_ASM | ||
36 | libcrypto_la_CFLAGS += -DSHA256_ASM | ||
37 | libcrypto_la_CFLAGS += -DSHA512_ASM | ||
38 | libcrypto_la_CFLAGS += -DWHIRLPOOL_ASM | ||
39 | libcrypto_la_CFLAGS += -DOPENSSL_CPUID_OBJ | ||
40 | libcrypto_la_SOURCES += $(ASM_X86_64_ELF) | ||
41 | endif | ||