diff options
Diffstat (limited to 'crypto/Makefile.am.macosx-x86_64')
-rw-r--r-- | crypto/Makefile.am.macosx-x86_64 | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/crypto/Makefile.am.macosx-x86_64 b/crypto/Makefile.am.macosx-x86_64 new file mode 100644 index 0000000..e361aae --- /dev/null +++ b/crypto/Makefile.am.macosx-x86_64 | |||
@@ -0,0 +1,41 @@ | |||
1 | |||
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 | ||
6 | ASM_X86_64_MACOSX += aes/aesni-sha1-macosx-x86_64.s | ||
7 | ASM_X86_64_MACOSX += bn/modexp512-macosx-x86_64.s | ||
8 | ASM_X86_64_MACOSX += bn/mont-macosx-x86_64.s | ||
9 | ASM_X86_64_MACOSX += bn/mont5-macosx-x86_64.s | ||
10 | ASM_X86_64_MACOSX += bn/gf2m-macosx-x86_64.s | ||
11 | ASM_X86_64_MACOSX += camellia/cmll-macosx-x86_64.s | ||
12 | ASM_X86_64_MACOSX += md5/md5-macosx-x86_64.s | ||
13 | ASM_X86_64_MACOSX += modes/ghash-macosx-x86_64.s | ||
14 | ASM_X86_64_MACOSX += rc4/rc4-macosx-x86_64.s | ||
15 | ASM_X86_64_MACOSX += rc4/rc4-md5-macosx-x86_64.s | ||
16 | ASM_X86_64_MACOSX += sha/sha1-macosx-x86_64.s | ||
17 | ASM_X86_64_MACOSX += sha/sha256-macosx-x86_64.S | ||
18 | ASM_X86_64_MACOSX += sha/sha512-macosx-x86_64.S | ||
19 | ASM_X86_64_MACOSX += whrlpool/wp-macosx-x86_64.s | ||
20 | ASM_X86_64_MACOSX += cpuid-macosx-x86_64.S | ||
21 | |||
22 | EXTRA_DIST += $(ASM_X86_64_MACOSX) | ||
23 | |||
24 | if HOST_ASM_MACOSX_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_MACOSX) | ||
41 | endif | ||