summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/arch/mips64/Makefile.inc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/arch/mips64/Makefile.inc')
-rw-r--r--src/lib/libcrypto/arch/mips64/Makefile.inc23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/lib/libcrypto/arch/mips64/Makefile.inc b/src/lib/libcrypto/arch/mips64/Makefile.inc
deleted file mode 100644
index 64e806289d..0000000000
--- a/src/lib/libcrypto/arch/mips64/Makefile.inc
+++ /dev/null
@@ -1,23 +0,0 @@
1# $OpenBSD: Makefile.inc,v 1.19 2025/02/14 12:01:58 jsing Exp $
2
3# mips64-specific libcrypto build rules
4
5# aes
6CFLAGS+= -DAES_ASM
7SSLASM+= aes aes-mips aes-mips
8# bn
9SSLASM+= bn mips bn-mips
10SSLASM+= bn mips-mont mips-mont
11CFLAGS+= -DOPENSSL_BN_ASM_MONT
12# sha
13SSLASM+= sha sha1-mips sha1-mips
14SSLASM+= sha sha512-mips sha256-mips
15SSLASM+= sha sha512-mips sha512-mips
16
17.for dir src dst in ${SSLASM}
18SRCS+= ${dst}.S
19GENERATED+=${dst}.S
20${dst}.S: ${LCRYPTO_SRC}/${dir}/asm/${src}.pl
21 /usr/bin/env CC=${CC} /usr/bin/perl \
22 ${LCRYPTO_SRC}/${dir}/asm/${src}.pl 64 ${.TARGET} > ${.TARGET}
23.endfor