blob: 4866893d73bc74303c72946f96904ee0b5ce8d58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# $NetBSD: Makefile,v 1.15 2023/05/08 17:46:06 christos Exp $
.include <bsd.own.mk>
SUBDIR+=bf bn cast conf des dh dsa ec engine evp hmac \
rc2 rc4 rsa srp threads
.if ${HAVE_OPENSSL} <= 11
SUBDIR+= ecdh ecdsa md2
.endif
SUBDIR+=idea mdc2
SUBDIR+=rc5
.if ${HAVE_OPENSSL} == 10
SUBDIR += lhash sha x509v3
.endif
TESTSDIR= ${TESTSBASE}/crypto/libcrypto
.if ${HAVE_OPENSSL} == 10
TESTS_SH= t_certs
.endif
TESTS_SH+= t_ciphers
TESTS_SH+= t_hashes
TESTS_SH+= t_libcrypto
TESTS_SH+= t_pubkey
.include <bsd.test.mk>
|