blob: 72dc87b5c26a5c7870be0205cf73ea6e2825d8a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.17 2023/02/01 14:39:09 tb Exp $
SUBDIR = libressl openssl11 openssl30
# the above binaries must have been built before we can continue
SUBDIR += netcat
SUBDIR += session
SUBDIR += botan
# What is below takes a long time.
# setting REGRESS_SKIP_SLOW to "yes" in mk.conf
# will skip the tests that do not test libressl
# but do things like test openssl11 to openssl30
SUBDIR += version
SUBDIR += cipher
# This takes a really long time.
SUBDIR += cert
.include <bsd.subdir.mk>
|