From ac71207af9e6bbcee27ecf0a38e1ac9605ea3dc9 Mon Sep 17 00:00:00 2001 From: silverwind Date: Wed, 25 Mar 2026 11:50:45 +0100 Subject: [PATCH] Align Makefile help text with gitea/gitea Co-Authored-By: Claude (claude-opus-4-6) --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 35b0321..cb9ea22 100644 --- a/Makefile +++ b/Makefile @@ -30,13 +30,13 @@ uninstall: ## uninstall the application @echo "Uninstalled $(EXECUTABLE) from $(GOPATH)/bin/$(EXECUTABLE)" .PHONY: clean -clean: ## clean the build artifacts +clean: ## delete build artifacts @echo "Cleaning up build artifacts..." @rm -f $(EXECUTABLE) @echo "Cleaned up $(EXECUTABLE)" .PHONY: build -build: ## build the application +build: ## build everything $(GO) build -v -ldflags '-s -w $(LDFLAGS)' -o $(EXECUTABLE) .PHONY: air @@ -50,7 +50,7 @@ dev: air ## run the application with hot reload air --build.cmd "make build" --build.bin ./gitea-mcp .PHONY: fmt -fmt: ## format Go code with gofumpt +fmt: ## format the Go code $(GO) run $(GOFUMPT_PACKAGE) -w . .PHONY: lint