10 lines
339 B
Makefile
10 lines
339 B
Makefile
# Determine this makefile's path.
|
|
# Be sure to place this BEFORE `include` directives, if any.
|
|
THIS_FILE := $(lastword $(MAKEFILE_LIST))
|
|
|
|
proto:
|
|
protoc github.com.hashicorp.go.kms.wrapping.types.proto --go_out=paths=source_relative:.
|
|
sed -i -e 's/Iv/IV/' -e 's/Hmac/HMAC/' github.com.hashicorp.go.kms.wrapping.types.pb.go
|
|
|
|
.PHONY: proto
|