11 lines
247 B
Makefile
11 lines
247 B
Makefile
.PHONY: requirements portal
|
|
|
|
all: requirements portal
|
|
|
|
requirements:
|
|
@go mod download
|
|
@go install storj.io/drpc/cmd/protoc-gen-go-drpc@latest
|
|
|
|
portal:
|
|
protoc --go_out=paths=source_relative:. --go-drpc_out=paths=source_relative:. portal/*.proto
|