blob: 7348d9a3fd8f873f5e5a44576293b3a316f13cda [file] [log] [blame]
.PHONY: android_hashlookup
android_hashlookup:
go install -v ./android_hashlookup
.PHONY: packages
packages:
go install -v ./...
.PHONY: testgo
testgo: protobuf
go test ./... -v -test.short
.PHONY: test
test: protobuf
go test ./... -v
.PHONY: all
all: packages android_hashlookup
.PHONY: protobuf
protobuf:
go generate ./...
.PHONY: mocks
mocks:
go get github.com/vektra/mockery/...
go generate ./...