diff options
Diffstat (limited to 'crypto/Makefile.am.elf-mips')
-rw-r--r-- | crypto/Makefile.am.elf-mips | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/crypto/Makefile.am.elf-mips b/crypto/Makefile.am.elf-mips new file mode 100644 index 0000000..9c4a70f --- /dev/null +++ b/crypto/Makefile.am.elf-mips | |||
@@ -0,0 +1,24 @@ | |||
1 | ASM_MIPS_ELF = aes/aes-mips.S | ||
2 | ASM_MIPS_ELF += bn/bn-mips.S | ||
3 | ASM_MIPS_ELF += bn/mont-mips.S | ||
4 | ASM_MIPS_ELF += sha/sha1-mips.S | ||
5 | ASM_MIPS_ELF += sha/sha512-mips.S | ||
6 | ASM_MIPS_ELF += sha/sha256-mips.S | ||
7 | |||
8 | ASM_MIPS_ELF += aes/aes_cbc.c | ||
9 | ASM_MIPS_ELF += camellia/camellia.c | ||
10 | ASM_MIPS_ELF += camellia/cmll_cbc.c | ||
11 | ASM_MIPS_ELF += rc4/rc4_enc.c | ||
12 | ASM_MIPS_ELF += rc4/rc4_skey.c | ||
13 | ASM_MIPS_ELF += whrlpool/wp_block.c | ||
14 | |||
15 | EXTRA_DIST += $(ASM_MIPS_ELF) | ||
16 | |||
17 | if HOST_ASM_ELF_MIPS | ||
18 | libcrypto_la_CPPFLAGS += -DAES_ASM | ||
19 | libcrypto_la_CPPFLAGS += -DOPENSSL_BN_ASM_MONT | ||
20 | libcrypto_la_CPPFLAGS += -DSHA1_ASM | ||
21 | libcrypto_la_CPPFLAGS += -DSHA256_ASM | ||
22 | libcrypto_la_CPPFLAGS += -DSHA512_ASM | ||
23 | libcrypto_la_SOURCES += $(ASM_MIPS_ELF) | ||
24 | endif | ||