-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
116 lines (105 loc) · 3.51 KB
/
Makefile
File metadata and controls
116 lines (105 loc) · 3.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
GOHOSTOS:=$(shell go env GOHOSTOS)
GOPATH:=$(shell go env GOPATH)
VERSION=$(shell git describe --tags --always --abbrev=8 | sed 's/[^a-zA-Z0-9]/-/g')
GITHASH=$(shell git rev-parse HEAD)
APPNAME=$(shell go list -m | awk -F/ '{print $$3}')
Built:=$(shell date +%s)
ifeq ($(GOHOSTOS), windows)
#the `find.exe` is different from `find` in bash/shell.
#to see https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/find.
#changed to use git-bash.exe to run find cli or other cli friendly, caused of every developer has a Git.
#Git_Bash= $(subst cmd\,bin\bash.exe,$(dir $(shell where git)))
Git_Bash=$(subst \,/,$(subst cmd\,bin\bash.exe,$(dir $(shell where git))))
INTERNAL_PROTO_FILES=$(shell $(Git_Bash) -c "find internal -name *.proto")
API_PROTO_FILES=$(shell $(Git_Bash) -c "find api -name *.proto")
REMOTE_PROTO_FILES=$(shell $(Git_Bash) -c "go list -f '{{ .Dir }}' -m all | grep omalloc/contrib")
else
INTERNAL_PROTO_FILES=$(shell find internal -name *.proto)
API_PROTO_FILES=$(shell find api -name *.proto)
REMOTE_PROTO_FILES=$(shell go list -f '{{ .Dir }}' -m all | grep omalloc/contrib)
endif
.PHONY: init
# init env
init:
go install github.com/mitchellh/gox@latest
go install github.com/swaggo/swag/cmd/swag@latest
go install honnef.co/go/tools/cmd/staticcheck@latest
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
go install github.com/go-kratos/kratos/cmd/kratos/v2@latest
go install github.com/go-kratos/kratos/cmd/protoc-gen-go-http/v2@latest
go install github.com/google/gnostic/cmd/protoc-gen-openapi@latest
go install github.com/google/wire/cmd/wire@latest
.PHONY: config
# generate internal proto
config:
protoc --proto_path=./internal \
--proto_path=./third_party \
--proto_path=./third_party \
--proto_path=$(REMOTE_PROTO_FILES) \
--go_out=paths=source_relative:./internal \
$(INTERNAL_PROTO_FILES)
.PHONY: api
# generate api proto
api:
mkdir -p ./api/docs && protoc --proto_path=./api \
--proto_path=./third_party \
--go_out=paths=source_relative:./api \
--go-errors_out=paths=source_relative:. \
--go-http_out=paths=source_relative:./api \
--go-grpc_out=paths=source_relative:./api \
--openapiv2_out=./api/docs \
--openapiv2_opt=logtostderr=true \
--openapiv2_opt=json_names_for_fields=false \
--openapi_out=fq_schema_naming=true,naming=proto,default_response=false:. \
$(API_PROTO_FILES)
.PHONY: run
run:
@env go run -ldflags=" \
-X main.Version=$(VERSION) \
-X main.GitHash=$(GITHASH) \
-X main.Name=$(APPNAME) \
-X main.Built=$(Built) \
" \
./cmd/... --conf ./configs/
.PHONY: build
# build
build:
mkdir -p bin/ && go build -ldflags=" \
-X main.Version=$(VERSION) \
-X main.GitHash=$(GITHASH) \
-X main.Name=$(APPNAME) \
-X main.Built=$(Built)" -o ./bin/server ./cmd/...
.PHONY: zip
# zip bin file
zip:
@upx bin/server --best --lzma
.PHONY: generate
# generate
generate:
go mod tidy
go get github.com/google/wire/cmd/wire@latest
go generate ./...
.PHONY: all
# generate all
all:
make api;
make config;
make generate;
# 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, ":")); \
helpMessage = substr(lastLine, RSTART + 2, RLENGTH); \
printf "\033[36m%-22s\033[0m %s\n", helpCommand,helpMessage; \
} \
} \
{ lastLine = $$0 }' $(MAKEFILE_LIST)
.DEFAULT_GOAL := help