grpc-go/Makefile

46 строки
755 B
Makefile
Исходник Обычный вид История

all: test testrace
deps:
go get -d -v google.golang.org/grpc/...
updatedeps:
go get -d -v -u -f google.golang.org/grpc/...
testdeps:
go get -d -v -t google.golang.org/grpc/...
updatetestdeps:
go get -d -v -t -u -f google.golang.org/grpc/...
build: deps
go build google.golang.org/grpc/...
2015-05-24 17:14:32 +03:00
proto:
@ if ! which protoc > /dev/null; then \
echo "error: protoc not installed" >&2; \
exit 1; \
fi
go generate google.golang.org/grpc/...
2015-05-24 17:14:32 +03:00
2015-06-13 04:17:36 +03:00
test: testdeps
2017-10-05 00:23:20 +03:00
go test -cpu 1,4 google.golang.org/grpc/...
2015-06-13 04:17:36 +03:00
testrace: testdeps
2017-10-05 00:23:20 +03:00
go test -race -cpu 1,4 google.golang.org/grpc/...
clean:
go clean -i google.golang.org/grpc/...
2015-09-29 03:40:23 +03:00
.PHONY: \
all \
deps \
updatedeps \
testdeps \
updatetestdeps \
build \
proto \
test \
testrace \
clean \
coverage