actually put in google.golang.org/grpc reference in Makefile

Signed-off-by: Peter Edge <peter.edge@gmail.com>
This commit is contained in:
Peter Edge
2015-05-24 16:27:48 +02:00
parent 7b50c34edb
commit 193def8df4

View File

@ -15,19 +15,19 @@
all: test testrace all: test testrace
deps: deps:
go get -d -v ./... go get -d -v google.golang.org/grpc/...
updatedeps: updatedeps:
go get -d -v -u -f ./... go get -d -v -u -f google.golang.org/grpc/...
testdeps: testdeps:
go get -d -v -t ./... go get -d -v -t google.golang.org/grpc/...
updatetestdeps: updatetestdeps:
go get -d -v -t -u -f ./... go get -d -v -t -u -f google.golang.org/grpc/...
build: deps build: deps
go build ./... go build google.golang.org/grpc/...
proto: proto:
@ if ! which protoc > /dev/null; then \ @ if ! which protoc > /dev/null; then \
@ -48,10 +48,10 @@ lint: testdeps
pretest: lint pretest: lint
test: pretest test: pretest
go test -v -cpu 1,4 ./... go test -v -cpu 1,4 google.golang.org/grpc/...
testrace: pretest testrace: pretest
go test -v -race -cpu 1,4 ./... go test -v -race -cpu 1,4 google.golang.org/grpc/...
clean: clean:
go clean ./... go clean google.golang.org/grpc/...