diff options
Diffstat (limited to 'src/lib/libcrypto/arch/hppa/Makefile.inc')
-rw-r--r-- | src/lib/libcrypto/arch/hppa/Makefile.inc | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/src/lib/libcrypto/arch/hppa/Makefile.inc b/src/lib/libcrypto/arch/hppa/Makefile.inc deleted file mode 100644 index d8ca1065d6..0000000000 --- a/src/lib/libcrypto/arch/hppa/Makefile.inc +++ /dev/null | |||
@@ -1,55 +0,0 @@ | |||
1 | # $OpenBSD: Makefile.inc,v 1.8 2015/03/05 20:35:28 miod Exp $ | ||
2 | |||
3 | # hppa-specific libcrypto build rules | ||
4 | |||
5 | # aes | ||
6 | SRCS+= aes_core.c aes_cbc.c | ||
7 | CFLAGS+= -DAES_ASM | ||
8 | SSLASM+= aes aes-parisc aes-parisc | ||
9 | # bf | ||
10 | SRCS+= bf_enc.c | ||
11 | # bn | ||
12 | SRCS+= bn_asm.c | ||
13 | SSLASM+= bn parisc-mont parisc-mont | ||
14 | CFLAGS+= -DOPENSSL_BN_ASM_MONT -DBN_DIV2W | ||
15 | # camellia | ||
16 | SRCS+= camellia.c cmll_cbc.c cmll_misc.c | ||
17 | # des | ||
18 | SRCS+= des_enc.c fcrypt_b.c | ||
19 | # modes | ||
20 | CFLAGS+= -DGHASH_ASM | ||
21 | SSLASM+= modes ghash-parisc ghash-parisc | ||
22 | # rc4 | ||
23 | .if 0 # about 35% slower than C code | ||
24 | SSLASM+= rc4 rc4-parisc rc4-parisc | ||
25 | .else | ||
26 | SRCS+= rc4_enc.c rc4_skey.c | ||
27 | .endif | ||
28 | ## rc5 | ||
29 | #SRCS+= rc5_enc.c | ||
30 | # sha | ||
31 | CFLAGS+= -DSHA1_ASM | ||
32 | SSLASM+= sha sha1-parisc sha1-parisc | ||
33 | .if 0 # sha512 subtly broken, sha256 probably as well | ||
34 | CFLAGS+= -DSHA256_ASM | ||
35 | SSLASM+= sha sha512-parisc sha256-parisc | ||
36 | CFLAGS+= -DSHA512_ASM | ||
37 | SSLASM+= sha sha512-parisc sha512-parisc | ||
38 | .endif | ||
39 | # whrlpool | ||
40 | SRCS+= wp_block.c | ||
41 | |||
42 | .for dir src dst in ${SSLASM} | ||
43 | SRCS+= ${dst}.S | ||
44 | GENERATED+=${dst}.S | ||
45 | ${dst}.S: ${LCRYPTO_SRC}/${dir}/asm/${src}.pl | ||
46 | /usr/bin/perl \ | ||
47 | ${LCRYPTO_SRC}/${dir}/asm/${src}.pl 32 ${.TARGET} > ${.TARGET} | ||
48 | .endfor | ||
49 | |||
50 | CFLAGS+= -DOPENSSL_CPUID_OBJ | ||
51 | SRCS+= pariscid.S | ||
52 | GENERATED+=pariscid.S | ||
53 | pariscid.S: ${LCRYPTO_SRC}/pariscid.pl | ||
54 | /usr/bin/perl \ | ||
55 | ${LCRYPTO_SRC}/pariscid.pl 32 > ${.TARGET} | ||