summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2018-11-09 19:24:50 +0000
committertb <>2018-11-09 19:24:50 +0000
commit8d083224a40f4592475938948762e170253919f6 (patch)
treec5a691ebf250dd1a3f705a355785b6443cdb1f6e
parent9b7a041741f8375faa2b013fae385fe9884cdfff (diff)
downloadopenbsd-8d083224a40f4592475938948762e170253919f6.tar.gz
openbsd-8d083224a40f4592475938948762e170253919f6.tar.bz2
openbsd-8d083224a40f4592475938948762e170253919f6.zip
Add subdirectires with SUBDIR += instead of a single assignment with
line continuations.
-rw-r--r--src/regress/lib/libcrypto/Makefile93
-rw-r--r--src/regress/lib/libssl/Makefile26
-rw-r--r--src/regress/lib/libtls/Makefile13
3 files changed, 65 insertions, 67 deletions
diff --git a/src/regress/lib/libcrypto/Makefile b/src/regress/lib/libcrypto/Makefile
index 38e3304eb4..80ffceb128 100644
--- a/src/regress/lib/libcrypto/Makefile
+++ b/src/regress/lib/libcrypto/Makefile
@@ -1,51 +1,50 @@
1# $OpenBSD: Makefile,v 1.32 2018/07/25 18:04:09 jsing Exp $ 1# $OpenBSD: Makefile,v 1.33 2018/11/09 19:24:50 tb Exp $
2 2
3SUBDIR= \ 3SUBDIR += aead
4 aead \ 4SUBDIR += aeswrap
5 aeswrap \ 5SUBDIR += asn1
6 asn1 \ 6SUBDIR += base64
7 base64 \ 7SUBDIR += bf
8 bf \ 8SUBDIR += bio
9 bio \ 9SUBDIR += bn
10 bn \ 10SUBDIR += cast
11 cast \ 11SUBDIR += chacha
12 chacha \ 12SUBDIR += cts128
13 cts128 \ 13SUBDIR += curve25519
14 curve25519 \ 14SUBDIR += des
15 des \ 15SUBDIR += dh
16 dh \ 16SUBDIR += dsa
17 dsa \ 17SUBDIR += ec
18 ec \ 18SUBDIR += ecdh
19 ecdh \ 19SUBDIR += ecdsa
20 ecdsa \ 20SUBDIR += engine
21 engine \ 21SUBDIR += evp
22 evp \ 22SUBDIR += exp
23 exp \ 23SUBDIR += free
24 free \ 24SUBDIR += gcm128
25 gcm128 \ 25SUBDIR += gost
26 gost \ 26SUBDIR += hkdf
27 hkdf \ 27SUBDIR += hmac
28 hmac \ 28SUBDIR += idea
29 idea \ 29SUBDIR += ige
30 ige \ 30SUBDIR += init
31 init \ 31SUBDIR += md4
32 md4 \ 32SUBDIR += md5
33 md5 \ 33SUBDIR += pbkdf2
34 pbkdf2 \ 34SUBDIR += pkcs7
35 pkcs7 \ 35SUBDIR += poly1305
36 poly1305 \ 36SUBDIR += rand
37 rand \ 37SUBDIR += rc2
38 rc2 \ 38SUBDIR += rc4
39 rc4 \ 39SUBDIR += rmd
40 rmd \ 40SUBDIR += rsa
41 rsa \ 41SUBDIR += sha1
42 sha1 \ 42SUBDIR += sha2
43 sha2 \ 43SUBDIR += sha256
44 sha256 \ 44SUBDIR += sha512
45 sha512 \ 45SUBDIR += utf8
46 utf8 \ 46SUBDIR += wycheproof
47 wycheproof \ 47SUBDIR += x509
48 x509
49 48
50install: 49install:
51 50
diff --git a/src/regress/lib/libssl/Makefile b/src/regress/lib/libssl/Makefile
index 2544184d09..7fabb63476 100644
--- a/src/regress/lib/libssl/Makefile
+++ b/src/regress/lib/libssl/Makefile
@@ -1,17 +1,17 @@
1# $OpenBSD: Makefile,v 1.28 2018/11/07 21:42:10 beck Exp $ 1# $OpenBSD: Makefile,v 1.29 2018/11/09 19:24:50 tb Exp $
2 2
3SUBDIR= \ 3SUBDIR += asn1
4 asn1 \ 4SUBDIR += bytestring
5 bytestring \ 5SUBDIR += ciphers
6 ciphers \ 6SUBDIR += client
7 client \ 7SUBDIR += handshake
8 interop \ 8SUBDIR += interop
9 pqueue \ 9SUBDIR += pqueue
10 server \ 10SUBDIR += server
11 ssl \ 11SUBDIR += ssl
12 tlsext \ 12SUBDIR += tlsext
13 key_schedule \ 13SUBDIR += key_schedule
14 unit 14SUBDIR += unit
15 15
16install: 16install:
17 17
diff --git a/src/regress/lib/libtls/Makefile b/src/regress/lib/libtls/Makefile
index f522605a90..7c4d152223 100644
--- a/src/regress/lib/libtls/Makefile
+++ b/src/regress/lib/libtls/Makefile
@@ -1,11 +1,10 @@
1# $OpenBSD: Makefile,v 1.5 2018/02/08 10:06:52 jsing Exp $ 1# $OpenBSD: Makefile,v 1.6 2018/11/09 19:24:50 tb Exp $
2 2
3SUBDIR= \ 3SUBDIR += config
4 config \ 4SUBDIR += keypair
5 keypair \ 5SUBDIR += gotls
6 gotls \ 6SUBDIR += tls
7 tls \ 7SUBDIR += verify
8 verify
9 8
10install: 9install:
11 10