blob: 24827e60d0dfb1fc32541dfe190002deb0d1fa54 (
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
|
# $NetBSD: Makefile,v 1.14 2018/09/23 13:34:57 christos Exp $
.include <bsd.own.mk>
SUBDIR+=bf bn cast conf des dh dsa ec ecdh ecdsa engine evp hmac \
md2 rc2 rc4 rsa srp threads
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>
|