summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/arch/mips64/Makefile.inc
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2025-04-14 17:32:06 +0000
committercvs2svn <admin@example.com>2025-04-14 17:32:06 +0000
commitb1ddde874c215cc8891531ed92876f091b7eb83e (patch)
treeedb6da6af7e865d488dc1a29309f1e1ec226e603 /src/lib/libcrypto/arch/mips64/Makefile.inc
parentf0a36529837a161734c802ae4c42e84e42347be2 (diff)
downloadopenbsd-tb_20250414.tar.gz
openbsd-tb_20250414.tar.bz2
openbsd-tb_20250414.zip
This commit was manufactured by cvs2git to create tag 'tb_20250414'.tb_20250414
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