Gitiles
Code Review
Sign In
gerrit.opencord.org
/
voltha-go
/
b9cfcb167c2cbe01ea37cf1edd4e3dd9915b78d0
/
.
/
vendor
/
github.com
/
grpc-ecosystem
/
go-grpc-middleware
/
makefile
blob: 51dc5b8f2007c0c401fe8443bfbb21d4b25e72a7 [
file
] [
log
] [
blame
]
SHELL
=/
bin
/
bash
GOFILES_NOVENDOR
=
$
(
shell go list
./...
|
grep
-
v
/
vendor
/)
all
:
vet fmt test
fmt
:
go fmt $
(
GOFILES_NOVENDOR
)
vet
:
go vet $
(
GOFILES_NOVENDOR
)
test
:
vet
./
scripts
/
test_all
.
sh
.
PHONY
:
all test