diff options
author | tb <> | 2018-11-09 19:24:50 +0000 |
---|---|---|
committer | tb <> | 2018-11-09 19:24:50 +0000 |
commit | 8d083224a40f4592475938948762e170253919f6 (patch) | |
tree | c5a691ebf250dd1a3f705a355785b6443cdb1f6e | |
parent | 9b7a041741f8375faa2b013fae385fe9884cdfff (diff) | |
download | openbsd-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/Makefile | 93 | ||||
-rw-r--r-- | src/regress/lib/libssl/Makefile | 26 | ||||
-rw-r--r-- | src/regress/lib/libtls/Makefile | 13 |
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 | ||
3 | SUBDIR= \ | 3 | SUBDIR += aead |
4 | aead \ | 4 | SUBDIR += aeswrap |
5 | aeswrap \ | 5 | SUBDIR += asn1 |
6 | asn1 \ | 6 | SUBDIR += base64 |
7 | base64 \ | 7 | SUBDIR += bf |
8 | bf \ | 8 | SUBDIR += bio |
9 | bio \ | 9 | SUBDIR += bn |
10 | bn \ | 10 | SUBDIR += cast |
11 | cast \ | 11 | SUBDIR += chacha |
12 | chacha \ | 12 | SUBDIR += cts128 |
13 | cts128 \ | 13 | SUBDIR += curve25519 |
14 | curve25519 \ | 14 | SUBDIR += des |
15 | des \ | 15 | SUBDIR += dh |
16 | dh \ | 16 | SUBDIR += dsa |
17 | dsa \ | 17 | SUBDIR += ec |
18 | ec \ | 18 | SUBDIR += ecdh |
19 | ecdh \ | 19 | SUBDIR += ecdsa |
20 | ecdsa \ | 20 | SUBDIR += engine |
21 | engine \ | 21 | SUBDIR += evp |
22 | evp \ | 22 | SUBDIR += exp |
23 | exp \ | 23 | SUBDIR += free |
24 | free \ | 24 | SUBDIR += gcm128 |
25 | gcm128 \ | 25 | SUBDIR += gost |
26 | gost \ | 26 | SUBDIR += hkdf |
27 | hkdf \ | 27 | SUBDIR += hmac |
28 | hmac \ | 28 | SUBDIR += idea |
29 | idea \ | 29 | SUBDIR += ige |
30 | ige \ | 30 | SUBDIR += init |
31 | init \ | 31 | SUBDIR += md4 |
32 | md4 \ | 32 | SUBDIR += md5 |
33 | md5 \ | 33 | SUBDIR += pbkdf2 |
34 | pbkdf2 \ | 34 | SUBDIR += pkcs7 |
35 | pkcs7 \ | 35 | SUBDIR += poly1305 |
36 | poly1305 \ | 36 | SUBDIR += rand |
37 | rand \ | 37 | SUBDIR += rc2 |
38 | rc2 \ | 38 | SUBDIR += rc4 |
39 | rc4 \ | 39 | SUBDIR += rmd |
40 | rmd \ | 40 | SUBDIR += rsa |
41 | rsa \ | 41 | SUBDIR += sha1 |
42 | sha1 \ | 42 | SUBDIR += sha2 |
43 | sha2 \ | 43 | SUBDIR += sha256 |
44 | sha256 \ | 44 | SUBDIR += sha512 |
45 | sha512 \ | 45 | SUBDIR += utf8 |
46 | utf8 \ | 46 | SUBDIR += wycheproof |
47 | wycheproof \ | 47 | SUBDIR += x509 |
48 | x509 | ||
49 | 48 | ||
50 | install: | 49 | install: |
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 | ||
3 | SUBDIR= \ | 3 | SUBDIR += asn1 |
4 | asn1 \ | 4 | SUBDIR += bytestring |
5 | bytestring \ | 5 | SUBDIR += ciphers |
6 | ciphers \ | 6 | SUBDIR += client |
7 | client \ | 7 | SUBDIR += handshake |
8 | interop \ | 8 | SUBDIR += interop |
9 | pqueue \ | 9 | SUBDIR += pqueue |
10 | server \ | 10 | SUBDIR += server |
11 | ssl \ | 11 | SUBDIR += ssl |
12 | tlsext \ | 12 | SUBDIR += tlsext |
13 | key_schedule \ | 13 | SUBDIR += key_schedule |
14 | unit | 14 | SUBDIR += unit |
15 | 15 | ||
16 | install: | 16 | install: |
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 | ||
3 | SUBDIR= \ | 3 | SUBDIR += config |
4 | config \ | 4 | SUBDIR += keypair |
5 | keypair \ | 5 | SUBDIR += gotls |
6 | gotls \ | 6 | SUBDIR += tls |
7 | tls \ | 7 | SUBDIR += verify |
8 | verify | ||
9 | 8 | ||
10 | install: | 9 | install: |
11 | 10 | ||