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.
go-library/Makefile

14 lines
164 B

.PHONY: Golang Library
all: tidy update
tidy:
@go mod tidy
update:
@go get -u all
help:
@echo "make tidy - 整理依赖"
@echo "make update - 更新依赖"