aboutsummaryrefslogtreecommitdiff
path: root/crypto/Makefile.am.elf-x86_64
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/Makefile.am.elf-x86_64')
-rw-r--r--crypto/Makefile.am.elf-x86_6441
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
2ASM_X86_64_ELF = aes/aes-elf-x86_64.s
3ASM_X86_64_ELF += aes/bsaes-elf-x86_64.s
4ASM_X86_64_ELF += aes/vpaes-elf-x86_64.s
5ASM_X86_64_ELF += aes/aesni-elf-x86_64.s
6ASM_X86_64_ELF += aes/aesni-sha1-elf-x86_64.s
7ASM_X86_64_ELF += bn/modexp512-elf-x86_64.s
8ASM_X86_64_ELF += bn/mont-elf-x86_64.s
9ASM_X86_64_ELF += bn/mont5-elf-x86_64.s
10ASM_X86_64_ELF += bn/gf2m-elf-x86_64.s
11ASM_X86_64_ELF += camellia/cmll-elf-x86_64.s
12ASM_X86_64_ELF += md5/md5-elf-x86_64.s
13ASM_X86_64_ELF += modes/ghash-elf-x86_64.s
14ASM_X86_64_ELF += rc4/rc4-elf-x86_64.s
15ASM_X86_64_ELF += rc4/rc4-md5-elf-x86_64.s
16ASM_X86_64_ELF += sha/sha1-elf-x86_64.s
17ASM_X86_64_ELF += sha/sha256-elf-x86_64.S
18ASM_X86_64_ELF += sha/sha512-elf-x86_64.S
19ASM_X86_64_ELF += whrlpool/wp-elf-x86_64.s
20ASM_X86_64_ELF += cpuid-elf-x86_64.S
21
22EXTRA_DIST += $(ASM_X86_64_ELF)
23
24if HOST_ASM_ELF_X86_64
25libcrypto_la_CFLAGS += -DAES_ASM
26libcrypto_la_CFLAGS += -DBSAES_ASM
27libcrypto_la_CFLAGS += -DVPAES_ASM
28libcrypto_la_CFLAGS += -DOPENSSL_IA32_SSE2
29libcrypto_la_CFLAGS += -DOPENSSL_BN_ASM_MONT
30libcrypto_la_CFLAGS += -DOPENSSL_BN_ASM_MONT5
31libcrypto_la_CFLAGS += -DOPENSSL_BN_ASM_GF2m
32libcrypto_la_CFLAGS += -DMD5_ASM
33libcrypto_la_CFLAGS += -DGHASH_ASM
34libcrypto_la_CFLAGS += -DRSA_ASM
35libcrypto_la_CFLAGS += -DSHA1_ASM
36libcrypto_la_CFLAGS += -DSHA256_ASM
37libcrypto_la_CFLAGS += -DSHA512_ASM
38libcrypto_la_CFLAGS += -DWHIRLPOOL_ASM
39libcrypto_la_CFLAGS += -DOPENSSL_CPUID_OBJ
40libcrypto_la_SOURCES += $(ASM_X86_64_ELF)
41endif