mirror of
https://github.com/go-home-admin/toolset.git
synced 2025-12-24 13:37:52 +08:00
10 lines
181 B
Makefile
10 lines
181 B
Makefile
GOBIN := $(shell go env GOBIN)
|
|
ATDIR := $(shell pwd)
|
|
|
|
# mac 系统更新path可能不全
|
|
export PATH := $(GOBIN):$(PATH)
|
|
|
|
build:
|
|
go build -ldflags="-w -s" -o $(GOBIN)/toolset ./
|
|
|