diff options
author | tb <> | 2020-10-02 08:11:49 +0000 |
---|---|---|
committer | tb <> | 2020-10-02 08:11:49 +0000 |
commit | f3ccb75529881f30f1ad249c270f5f443636cb93 (patch) | |
tree | 00a051b55cc6c8b62d5b0066bb8f500068b7b74d | |
parent | f0d357b9eadb2e4521846bc9db12b0cc9cc9de76 (diff) | |
download | openbsd-f3ccb75529881f30f1ad249c270f5f443636cb93.tar.gz openbsd-f3ccb75529881f30f1ad249c270f5f443636cb93.tar.bz2 openbsd-f3ccb75529881f30f1ad249c270f5f443636cb93.zip |
Use += and ?= and tidy up whitespace
-rw-r--r-- | src/regress/lib/libcrypto/x509/bettertls/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/regress/lib/libcrypto/x509/bettertls/Makefile b/src/regress/lib/libcrypto/x509/bettertls/Makefile index fabbebcca7..778e06464a 100644 --- a/src/regress/lib/libcrypto/x509/bettertls/Makefile +++ b/src/regress/lib/libcrypto/x509/bettertls/Makefile | |||
@@ -1,13 +1,13 @@ | |||
1 | # $OpenBSD: Makefile,v 1.2 2020/10/02 08:07:33 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2020/10/02 08:11:49 tb Exp $ |
2 | 2 | ||
3 | PROGS= verify | 3 | PROGS = verify |
4 | LDADD= -lcrypto | 4 | LDADD += -lcrypto |
5 | DPADD= ${LIBCRYPTO} | 5 | DPADD += ${LIBCRYPTO} |
6 | WARNINGS= Yes | 6 | WARNINGS ?= Yes |
7 | CFLAGS+= -g -DLIBRESSL_INTERNAL -Wundef -Werror | 7 | CFLAGS += -g -DLIBRESSL_INTERNAL -Wundef -Werror |
8 | 8 | ||
9 | REGRESS_TARGETS= bettertls-test | 9 | REGRESS_TARGETS = bettertls-test |
10 | CLEANFILES+= test.out | 10 | CLEANFILES += test.out |
11 | 11 | ||
12 | bettertls-test: bettertls-verify | 12 | bettertls-test: bettertls-verify |
13 | ${.CURDIR}/check.perl ${.CURDIR}/expected ${.CURDIR}/known ${.OBJDIR}/test.out | 13 | ${.CURDIR}/check.perl ${.CURDIR}/expected ${.CURDIR}/known ${.OBJDIR}/test.out |