mirror of
https://github.com/libressl/portable.git
synced 2026-01-17 21:51:17 +01:00
23 lines
695 B
Makefile
23 lines
695 B
Makefile
|
|
ASM_X86_64_MASM = aes/aes-masm-x86_64.S
|
|
ASM_X86_64_MASM += aes/aesni-masm-x86_64.S
|
|
ASM_X86_64_MASM += bn/modexp512-masm-x86_64.S
|
|
ASM_X86_64_MASM += bn/mont-masm-x86_64.S
|
|
ASM_X86_64_MASM += bn/mont5-masm-x86_64.S
|
|
ASM_X86_64_MASM += modes/ghash-masm-x86_64.S
|
|
ASM_X86_64_MASM += rc4/rc4-masm-x86_64.S
|
|
|
|
EXTRA_DIST += $(ASM_X86_64_MASM)
|
|
|
|
if HOST_ASM_MASM_X86_64
|
|
libcrypto_la_SOURCES += aes/aes_amd64.c
|
|
libcrypto_la_SOURCES += modes/gcm128_amd64.c
|
|
|
|
libcrypto_la_CPPFLAGS += -DAES_ASM
|
|
libcrypto_la_CPPFLAGS += -DOPENSSL_BN_ASM_MONT
|
|
libcrypto_la_CPPFLAGS += -DOPENSSL_BN_ASM_MONT5
|
|
libcrypto_la_CPPFLAGS += -DGHASH_ASM
|
|
libcrypto_la_CPPFLAGS += -DRSA_ASM
|
|
libcrypto_la_SOURCES += $(ASM_X86_64_MASM)
|
|
endif
|