diff options
Diffstat (limited to 'src/regress/lib/libtls/gotls/Makefile')
-rw-r--r-- | src/regress/lib/libtls/gotls/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/regress/lib/libtls/gotls/Makefile b/src/regress/lib/libtls/gotls/Makefile new file mode 100644 index 0000000000..56286feec9 --- /dev/null +++ b/src/regress/lib/libtls/gotls/Makefile | |||
@@ -0,0 +1,15 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2014/10/31 14:10:55 jsing Exp $ | ||
2 | |||
3 | GO_VERSION != sh -c "(go version) 2>/dev/null || true" | ||
4 | |||
5 | .if empty(GO_VERSION) | ||
6 | regress: | ||
7 | @echo golang is required for this regress... skipping | ||
8 | .endif | ||
9 | |||
10 | REGRESS_TARGETS=regress-gotls | ||
11 | |||
12 | regress-gotls: | ||
13 | cd ${.CURDIR} && go test -test.v . | ||
14 | |||
15 | .include <bsd.regress.mk> | ||