summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/segmentio/analytics-go/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/segmentio/analytics-go/Makefile')
-rw-r--r--vendor/github.com/segmentio/analytics-go/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/github.com/segmentio/analytics-go/Makefile b/vendor/github.com/segmentio/analytics-go/Makefile
new file mode 100644
index 000000000..e896b1b5f
--- /dev/null
+++ b/vendor/github.com/segmentio/analytics-go/Makefile
@@ -0,0 +1,10 @@
+vet:
+ @godep go vet ./...
+
+build:
+ @godep go build
+
+test:
+ @godep go test -race -cover ./...
+
+.PHONY: vet build test