mirror of
https://github.com/libressl/portable.git
synced 2026-01-17 21:51:17 +01:00
15 lines
371 B
Makefile
15 lines
371 B
Makefile
ASM_MIPS_ELF = aes/aes-mips.S
|
|
ASM_MIPS_ELF += bn/bn-mips.S
|
|
ASM_MIPS_ELF += bn/mont-mips.S
|
|
ASM_MIPS_ELF += sha/sha1-mips.S
|
|
ASM_MIPS_ELF += sha/sha512-mips.S
|
|
ASM_MIPS_ELF += sha/sha256-mips.S
|
|
|
|
EXTRA_DIST += $(ASM_MIPS_ELF)
|
|
|
|
if HOST_ASM_ELF_MIPS
|
|
libcrypto_la_CPPFLAGS += -DAES_ASM
|
|
libcrypto_la_CPPFLAGS += -DOPENSSL_BN_ASM_MONT
|
|
libcrypto_la_SOURCES += $(ASM_MIPS_ELF)
|
|
endif
|