summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-06-25 12:21:47 -0400
committer=Corey Hulen <corey@hulen.com>2015-06-25 12:21:47 -0400
commit16505ffe94ef09102e2bd1ecdca72541c2d85ae6 (patch)
tree4260356d839f8905c237eee62ba18aa928d23159 /Makefile
parent6ee153d7f8cfc14d3339e5e341e8ead330456c0d (diff)
downloadchat-16505ffe94ef09102e2bd1ecdca72541c2d85ae6.tar.gz
chat-16505ffe94ef09102e2bd1ecdca72541c2d85ae6.tar.bz2
chat-16505ffe94ef09102e2bd1ecdca72541c2d85ae6.zip
updating make
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index dc6cc3dc7..c1103f1ea 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-.PHONY: all test clean build install run stop cover dist dist-battlehouse cleandb
+.PHONY: all test clean build install run stop cover dist cleandb travis
GOPATH ?= $(GOPATH:)
GOFLAGS ?= $(GOFLAGS:)
@@ -15,7 +15,11 @@ DIST_RESULTS=$(DIST_ROOT)/results
BENCH=.
TESTS=.
-all: build
+all: travis
+
+travis:
+ @echo building for travis
+ @go build $(GOFLAGS) ./...
build:
@go build $(GOFLAGS) ./...