aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 917e7f4ac..03e3bf4c6 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
# with Go source code. If you know what GOPATH is then you probably
# don't need to bother with make.
-.PHONY: geth mist test clean
+.PHONY: geth mist all test travis-test-with-coverage clean
GOBIN = build/bin
geth:
@@ -21,5 +21,8 @@ all:
test: all
build/env.sh go test ./...
+travis-test-with-coverage: all
+ build/env.sh build/test-global-coverage.sh
+
clean:
rm -fr build/_workspace/pkg/ Godeps/_workspace/pkg $(GOBIN)/*