You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
279 B
8 lines
279 B
GOHOSTOS:=$(shell go env GOHOSTOS)
|
|
GOPATH:=$(shell go env GOPATH)
|
|
VERSION=$(shell git describe --tags --always)
|
|
|
|
.PHONY: win_build
|
|
# win_build services
|
|
win_build:
|
|
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "-X main.Version=$(VERSION)" -o ./bin/wssPool ./cmd/main.go
|