aboutsummaryrefslogtreecommitdiff
path: root/crypto/Makefile.am.elf-mips
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/Makefile.am.elf-mips')
-rw-r--r--crypto/Makefile.am.elf-mips24
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 @@
1ASM_MIPS_ELF = aes/aes-mips.S
2ASM_MIPS_ELF += bn/bn-mips.S
3ASM_MIPS_ELF += bn/mont-mips.S
4ASM_MIPS_ELF += sha/sha1-mips.S
5ASM_MIPS_ELF += sha/sha512-mips.S
6ASM_MIPS_ELF += sha/sha256-mips.S
7
8ASM_MIPS_ELF += aes/aes_cbc.c
9ASM_MIPS_ELF += camellia/camellia.c
10ASM_MIPS_ELF += camellia/cmll_cbc.c
11ASM_MIPS_ELF += rc4/rc4_enc.c
12ASM_MIPS_ELF += rc4/rc4_skey.c
13ASM_MIPS_ELF += whrlpool/wp_block.c
14
15EXTRA_DIST += $(ASM_MIPS_ELF)
16
17if HOST_ASM_ELF_MIPS
18libcrypto_la_CPPFLAGS += -DAES_ASM
19libcrypto_la_CPPFLAGS += -DOPENSSL_BN_ASM_MONT
20libcrypto_la_CPPFLAGS += -DSHA1_ASM
21libcrypto_la_CPPFLAGS += -DSHA256_ASM
22libcrypto_la_CPPFLAGS += -DSHA512_ASM
23libcrypto_la_SOURCES += $(ASM_MIPS_ELF)
24endif