go-zero/tools/goctl/Makefile

13 lines
433 B
Makefile
Raw Normal View History

2020-07-29 17:11:41 +08:00
build:
2021-09-29 18:04:08 +08:00
go build -ldflags="-s -w" goctl.go
2020-11-28 22:27:58 +08:00
$(if $(shell command -v upx), upx goctl)
2020-08-30 18:22:46 +08:00
mac:
2021-09-29 18:04:08 +08:00
GOOS=darwin go build -ldflags="-s -w" -o goctl-darwin goctl.go
2020-11-28 22:27:58 +08:00
$(if $(shell command -v upx), upx goctl-darwin)
2020-08-30 18:22:46 +08:00
win:
2021-09-29 18:04:08 +08:00
GOOS=windows go build -ldflags="-s -w" -o goctl.exe goctl.go
2020-11-28 22:27:58 +08:00
$(if $(shell command -v upx), upx goctl.exe)
2020-08-30 18:22:46 +08:00
linux:
2021-09-29 18:04:08 +08:00
GOOS=linux go build -ldflags="-s -w" -o goctl-linux goctl.go
2020-11-28 22:27:58 +08:00
$(if $(shell command -v upx), upx goctl-linux)