Makefile中使用go的环境变量

本文介绍了如何使用Go语言进行项目构建,并详细说明了如何配置GOPROXY、GONOPROXY和GOINSECURE环境变量以确保安全性和高效下载依赖。同时,展示了如何创建和清理binary文件,以及查看Go版本和项目状态。

binary_path=./bin
binary_file=test

GOPROXY=https://goproxy.cn,direct
GONOPROXY=*git.intra.w.com*
GOINSECURE=git.intra.w.com
GOPRIVATE=git.intra.w.com

default:build
build:
	@git config --global url."ssh://git@git.intra.w.com:11".insteadOf "http://git.intra.w.com"
	@GOPROXY=$(GOPROXY) GONOPROXY=$(GONOPROXY) GOINSECURE=$(GOINSECURE) go build -o ${binary_path}/${binary_file}

# clean the binary file  @GOPROXY=$(GOPROXY) GONOPROXY=$(GONOPROXY) GOINSECURE=$(GOINSECURE) go build -o ${binary_path}/${binary_file}
clean:
	@go clean
	@if [ -f ${binary_path}/${binary_file} ]; then rm -f ${binary_path}/${binary_file}; fi

# show the version of the Go and the project
test:
	@go version

.PHONY: default clean

其中下面的红色部分不可少

@GOPROXY=$(GOPROXY) GONOPROXY=$(GONOPROXY) GOINSECURE=$(GOINSECURE) go build -o ${binary_path}/${binary_file}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值