2019-10-02 08:54:20 +00:00
BUILD_VERSION := $( shell cat version)
BUILD_TIME := $( shell date "+%F %T" )
COMMIT_SHA1 := $( shell git rev-parse HEAD)
2019-10-04 05:05:45 +00:00
ROOT_DIR := $( shell dirname $( realpath $( lastword $( MAKEFILE_LIST) ) ) )
2019-10-02 08:54:20 +00:00
DIST_DIR := $( ROOT_DIR) /dist/
2019-10-02 13:24:02 +00:00
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 "
2019-10-02 08:54:20 +00:00
.PHONY : build release clean install upx
build :
i f n e q ( $( shell type gox >/dev /null 2>&1;echo $ $ ?) , 0 )
@echo "Can't find gox command, will start installation..."
2019-10-08 08:42:02 +00:00
cd ~ && go get -v -u github.com/mitchellh/gox && cd $( ROOT_DIR)
2019-10-02 08:54:20 +00:00
e n d i f
2019-10-03 02:30:03 +00:00
@# $( 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)
2019-10-02 08:54:20 +00:00
gox -ldflags $( LD_FLAGS) -osarch= "darwin/amd64 linux/386 linux/amd64 windows/amd64" \
-output= " $( DIST_DIR) {{.Dir}}_{{.OS}}_{{.Arch}} "
clean :
rm -rf $( DIST_DIR) *
2018-03-27 08:18:23 +00:00
2018-04-13 14:39:01 +00:00
install :
2019-10-02 08:54:20 +00:00
go install -ldflags $( LD_FLAGS)
2018-03-27 08:18:23 +00:00
2019-10-08 09:44:54 +00:00
# 如果一个规则是以 .IGNORE 作为目标的,那么这个规则中所有命令都将会忽略错误
.IGNORE :
upx
2018-03-27 08:18:23 +00:00
# 压缩。需要安装 https://github.com/upx/upx
upx :
2019-10-08 09:50:39 +00:00
@# 在命令前面加上 "-" ,表示不管该命令出不出错,后面的命令都将继续执行下去
2019-10-08 09:44:54 +00:00
@# -upx $( DIST_DIR) **
2019-10-02 08:54:20 +00:00
upx $( DIST_DIR) **
release : build upx
i f n e q ( $( shell type ghr >/dev /null 2>&1;echo $ $ ?) , 0 )
@echo "Can't find ghr command, will start installation..."
2019-10-08 08:42:02 +00:00
cd ~ && go get -v -u github.com/tcnksm/ghr && cd $( ROOT_DIR)
2019-10-02 08:54:20 +00:00
e n d i f
2019-10-03 02:30:03 +00:00
@# $( 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)
2019-10-02 08:54:20 +00:00
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