aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 8 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index eb433f7b5..faedc63c8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,11 @@
-#VERBOSE :=
-VERBOSE := -v
+#BUILD_VERBOSE :=
+BUILD_VERBOSE := -v
+
+TEST_VERBOSE :=
+#TEST_VERBOSE := -v
all:
- go build $(VERBOSE)
+ go build $(BUILD_VERBOSE)
.PHONY: docker
docker:
@@ -11,11 +14,11 @@ docker:
.PHONY: deps
deps:
- go get
+ go get ${BUILD_VERBOSE}
.PHONY: test
test:
- go test
+ go test $(TEST_VERBOSE) ./...
.PHONY: clean
clean: