Files
GL/Makefile
T

11 lines
193 B
Makefile

.PHONY: build generate test
generate:
buf generate ../proto --template ./buf.gen.yaml --path ../proto/base/v1 --path ../proto/ledger/v1
build: generate
go build ./...
test:
go test ./...