加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gotools.mk 552 Bytes
一键复制 编辑 原始数据 按行查看 历史
Gari Singh 提交于 2020-05-18 09:58 . Move to Go modules
# Copyright the Hyperledger Fabric contributors. All rights reserved.
#
# SPDX-License-Identifier: Apache-2.0
GOTOOLS = gendoc gocov gocov-xml goimports golint
.PHONY: gotools
gotools: $(patsubst %,build/tools/%, $(GOTOOLS))
build/tools/%: tools/go.mod tools/tools.go
@mkdir -p $(@D)
@$(eval TOOL = ${subst build/tools/,,${@}})
@$(eval FQP = $(shell grep ${TOOL} tools/tools.go | cut -d " " -f2 | grep ${TOOL}\"$))
@echo Installing ${TOOL} at ${CURDIR}/$(TOOLS) from ${FQP}
@cd tools && GO111MODULE=on GOBIN=${CURDIR}/$(TOOLS) go install ${FQP}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化