From 741e33c97ae4421137ebc23d7e8a5b55cc0ce68b Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Fri, 29 Dec 2023 12:53:06 +0000 Subject: [PATCH] feat: Updated scripts/make-rules/tools.mk --- scripts/make-rules/tools.mk | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/scripts/make-rules/tools.mk b/scripts/make-rules/tools.mk index 7fe7305fb..890036a8c 100644 --- a/scripts/make-rules/tools.mk +++ b/scripts/make-rules/tools.mk @@ -49,6 +49,15 @@ tools.install.%: @$(MAKE) install.$* ## tools.install-all.%: Parallelism install a single tool in ./tools/* +## install.codegen: Install codegen +.PHONY: install.codegen +install.codegen: + @$(GO) install github.com/yourorg/codegen@latest + +## tools.install.codegen: Install codegen tool +.PHONY: tools.install.codegen +tools.install.codegen: + @$(MAKE) install.codegen .PHONY: tools.install-all.% tools.install-all.%: @echo "===========> Installing $,The default installation path is $(TOOLS_DIR)/$*"