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.
70 lines
1.9 KiB
70 lines
1.9 KiB
GOPATH:=$(shell go env GOPATH)
|
|
VERSION=$(shell git describe --tags --always)
|
|
INTERNAL_PROTO_FILES=$(shell find internal -name *.proto)
|
|
API_PROTO_FILES=$(shell find api -name *.proto)
|
|
|
|
.PHONY: init
|
|
# init env
|
|
init:
|
|
go get -u github.com/go-kratos/kratos/cmd/kratos/v2
|
|
go get -u google.golang.org/protobuf/cmd/protoc-gen-go
|
|
go get -u google.golang.org/grpc/cmd/protoc-gen-go-grpc
|
|
go get -u github.com/go-kratos/kratos/cmd/protoc-gen-go-http/v2
|
|
go get -u github.com/go-kratos/kratos/cmd/protoc-gen-go-errors/v2
|
|
go get -u github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2
|
|
go get -u github.com/envoyproxy/protoc-gen-validate
|
|
|
|
.PHONY: errors
|
|
# generate errors code
|
|
errors:
|
|
protoc --proto_path=. \
|
|
--proto_path=./third_party \
|
|
--go_out=paths=source_relative:. \
|
|
--go-errors_out=paths=source_relative:. \
|
|
$(API_PROTO_FILES)
|
|
|
|
.PHONY: config
|
|
# generate internal proto
|
|
config:
|
|
protoc --proto_path=. \
|
|
--proto_path=./third_party \
|
|
--go_out=paths=source_relative:. \
|
|
$(INTERNAL_PROTO_FILES)
|
|
|
|
.PHONY: api
|
|
# generate api proto
|
|
api:
|
|
protoc --proto_path=. \
|
|
--proto_path=./third_party \
|
|
--go_out=paths=source_relative:. \
|
|
--go-http_out=paths=source_relative:. \
|
|
--go-grpc_out=paths=source_relative:. \
|
|
--validate_out=paths=source_relative,lang=go:. \
|
|
--openapiv2_out . \
|
|
$(API_PROTO_FILES)
|
|
|
|
.PHONY: all
|
|
# generate all
|
|
all:
|
|
make api;
|
|
make errors;
|
|
make config;
|
|
|
|
# show help
|
|
help:
|
|
@echo ''
|
|
@echo 'Usage:'
|
|
@echo ' make [target]'
|
|
@echo ''
|
|
@echo 'Targets:'
|
|
@awk '/^[a-zA-Z\-\_0-9]+:/ { \
|
|
helpMessage = match(lastLine, /^# (.*)/); \
|
|
if (helpMessage) { \
|
|
helpCommand = substr($$1, 0, index($$1, ":")-1); \
|
|
helpMessage = substr(lastLine, RSTART + 2, RLENGTH); \
|
|
printf "\033[36m%-22s\033[0m %s\n", helpCommand,helpMessage; \
|
|
} \
|
|
} \
|
|
{ lastLine = $$0 }' $(MAKEFILE_LIST)
|
|
|
|
.DEFAULT_GOAL := help
|
|
|