Commit aeb03748200a20de6ab449d9ca1e463928f4f77b

Stefan Sperling 2019-01-02T15:47:01

don't run regress tests by default

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/Makefile b/Makefile
index 103d8cd..865f3fb 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,7 @@
-SUBDIR = libexec got tog regress
+SUBDIR = libexec got tog
+
+.if make(regress)
+SUBDIR += regress
+.endif
 
 .include <bsd.subdir.mk>