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 /src/regress/lib/libssl | |
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.
Diffstat (limited to 'src/regress/lib/libssl')
-rw-r--r-- | src/regress/lib/libssl/Makefile | 26 |
1 files changed, 13 insertions, 13 deletions
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 | ||