mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-09 09:35:03 +09:00
12 lines
No EOL
463 B
Makefile
12 lines
No EOL
463 B
Makefile
.PHONY: proto build test
|
|
export GOPRIVATE=github.com/anytypeio
|
|
|
|
proto:
|
|
protoc --gogofaster_out=:. --go-drpc_out=protolib=github.com/gogo/protobuf:. consensusproto/protos/*.proto
|
|
|
|
build:
|
|
@$(eval FLAGS := $$(shell govvv -flags -pkg github.com/anytypeio/go-anytype-infrastructure-experiments/consensus))
|
|
go build -v -o ../bin/consensus-node -ldflags "$(FLAGS)" github.com/anytypeio/go-anytype-infrastructure-experiments/consensus/cmd
|
|
|
|
test:
|
|
go test ./... --cover
|