mirror of https://github.com/ginuerzh/gost
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.
17 lines
269 B
17 lines
269 B
# ----------------------------
|
|
#
|
|
# 构建打包
|
|
#
|
|
# ----------------------------
|
|
APP_NAME := gost
|
|
|
|
.PHONY: all
|
|
all: build
|
|
|
|
#
|
|
.PHONY: build
|
|
build:
|
|
@echo ">> Compile $(APP_NAME) ..."
|
|
GOOS=linux GOARCH=amd64 go build -o $(APP_NAME) main.go
|
|
@ls -lh |grep $(APP_NAME)
|
|
|
|
|