You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/db/Makefile

12 lines
411 B

# Determine this makefile's path.
# Be sure to place this BEFORE `include` directives, if any.
THIS_FILE := $(lastword $(MAKEFILE_LIST))
### oplog requires protoc-gen-go v1.20.0 or later
# GO111MODULE=on go get -u google.golang.org/protobuf/cmd/protoc-gen-go@v1.20.1
proto:
protoc --go_out=paths=source_relative:. ./db_test/db_test.proto
protoc-go-inject-tag -input=./db_test/db_test.pb.go
.PHONY: proto