-
-
Notifications
You must be signed in to change notification settings - Fork 239
/
Makefile
40 lines (28 loc) · 996 Bytes
/
Makefile
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
.PHONY: all dep lint vet test test-coverage build clean
# custom define
PROJECT := zpan
MAINFILE := main.go
all: build
mod: ## Get the dependencies
go mod download
lint: ## Lint Golang files
@golangci-lint --version
@golangci-lint run -D errcheck
test: ## Run tests with coverage
go test -coverprofile .coverprofile ./...
go tool cover --func=.coverprofile
coverage-html: ## show coverage by the html
go tool cover -html=.coverprofile
generate: ## generate the static assets
go generate ./...
build: mod ## Build the binary file
go build -v -o build/bin/$(PROJECT) $(MAINFILE)
swag:
swag init -g internal/app/api/router.go --exclude client --parseDependency --parseDepth 1 --output internal/docs
install:
# 复制二进制文件
# 复制默认配置文件
clean: ## Remove previous build
@rm -rf ./build
help: ## Display this help screen
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'