55 lines
2.2 KiB
Makefile
55 lines
2.2 KiB
Makefile
BUILD_VERSION := $(shell cat version)
|
|
BUILD_TIME := $(shell date "+%F %T")
|
|
COMMIT_SHA1 := $(shell git rev-parse HEAD)
|
|
ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
DIST_DIR := $(ROOT_DIR)/dist/
|
|
|
|
VERSION_PATH := $(shell cat `go env GOMOD` | awk '/^module/{print $$2}')/cmd
|
|
LD_GIT_COMMIT := -X '$(VERSION_PATH).GitCommit=$(COMMIT_SHA1)'
|
|
LD_BUILD_TIME := -X '$(VERSION_PATH).BuildTime=$(BUILD_TIME)'
|
|
LD_GO_VERSION := -X '$(VERSION_PATH).GoVersion=`go version`'
|
|
LD_VERSION := -X '$(VERSION_PATH).Version=$(BUILD_VERSION)'
|
|
LD_FLAGS := "$(LD_GIT_COMMIT) $(LD_BUILD_TIME) $(LD_GO_VERSION) $(LD_VERSION) -w -s"
|
|
|
|
.PHONY : build release clean install upx
|
|
|
|
build:
|
|
ifneq ($(shell type gox >/dev/null 2>&1;echo $$?), 0)
|
|
@echo "Can't find gox command, will start installation..."
|
|
cd ~ && go get -v -u github.com/mitchellh/gox && cd $(ROOT_DIR)
|
|
endif
|
|
@# $(if $(findstring 0,$(shell type gox >/dev/null 2>&1;echo $$?)),,echo "Can't find gox command, will start installation...";GO111MODULE=off go get -v -u github.com/mitchellh/gox)
|
|
gox -ldflags $(LD_FLAGS) -osarch="darwin/amd64 linux/386 linux/amd64 windows/amd64" \
|
|
-output="$(DIST_DIR){{.Dir}}_{{.OS}}_{{.Arch}}"
|
|
|
|
clean:
|
|
rm -rf $(DIST_DIR)*
|
|
|
|
install:
|
|
go install -ldflags $(LD_FLAGS)
|
|
|
|
# 如果一个规则是以 .IGNORE 作为目标的,那么这个规则中所有命令都将会忽略错误
|
|
.IGNORE:
|
|
upx
|
|
|
|
# 压缩。需要安装 https://github.com/upx/upx
|
|
upx:
|
|
@# 在命令前面加上 "-",表示不管该命令出不出错,后面的命令都将继续执行下去
|
|
@# -upx $(DIST_DIR)**
|
|
upx $(DIST_DIR)**
|
|
|
|
release: build upx
|
|
ifneq ($(shell type ghr >/dev/null 2>&1;echo $$?), 0)
|
|
@echo "Can't find ghr command, will start installation..."
|
|
cd ~ && go get -v -u github.com/tcnksm/ghr && cd $(ROOT_DIR)
|
|
endif
|
|
@# $(if $(findstring 0,$(shell type ghr >/dev/null 2>&1;echo $$?)),,echo "Can't find ghr command, will start installation...";GO111MODULE=off go get -v -u github.com/tcnksm/ghr)
|
|
ghr -u ehlxr -t $(GITHUB_RELEASE_TOKEN) -replace -delete --debug ${BUILD_VERSION} $(DIST_DIR)
|
|
|
|
# this tells 'make' to export all variables to child processes by default.
|
|
.EXPORT_ALL_VARIABLES:
|
|
|
|
GO111MODULE = on
|
|
GOPROXY = https://goproxy.cn,direct
|
|
GOSUMDB = sum.golang.google.cn
|