#----------------------------------------
# 可执行文件名称
#----------------------------------------
app = gateway
ifeq ($(OS), Windows_NT)
exec = $(app).exe
else
exec = $(app)
endif
#----------------------------------------
# 交叉编译设置
#----------------------------------------
set_env += :
set_env += ; export CGO_CFLAGS="-Os -ffunction-sections -fdata-sections"
set_env += ; export CGO_FFLAGS="-Os"
set_env += ; export CGO_LDFLAGS="-Os"
set_env += ; export STAGING_DIR=/opt/toolchain-mipsel_24kec+dsp_gcc-4.8-linaro_uClibc-0.9.33.2/bin:$(STAGING_DIR)
set_env += ; export CC=/mnt/extension/docker_share/openwrt_sdk_2102/openwrt-b2ae423/staging_dir/toolchain-mipsel_24kc_gcc-8.4.0_musl/bin/mipsel-openwrt-linux-gcc
set_env += ; export CGO_ENABLED=1; export GOOS=linux; export GOMIPS=softfloat; export GOARCH=mipsle
# set_env += ; export GOOS=windows
#----------------------------------------
# 链接参数设置
#----------------------------------------
build_time = $(shell date +'%Y-%m-%d %H:%M:%S')
LD_FLAG = -ldflags="-s -w -X 'gateway/config.BUILD_TIME=$(build_time)'"
#----------------------------------------
# 编译后命令执行
#----------------------------------------
script_do := :
#script_do += ; cp $(exec) "d:\Program Files\app"
#----------------------------------------
# 编译前准备
#----------------------------------------
src := $(shell find . -name "*.go")
all: ${exec}
$(exec): $(src) Makefile
$(set_env); go build $(LD_FLAG) -o $@
$(script_do)
zip: all
upx -9 ./$(exec)
up: all
scp ./$(exec) root@192.168.12.10:/tmp
init:
go mod init gateway
go mod tidy
update:
go mod tidy
load: clean zip
cd ./scripts && ./load.sh && cd -
pack: clean zip
cd ./ipk && ./build.sh && cd -
.PHONY: clean
clean:
go clean