From 9d1d608f4f1e3a58b98a5979d32c796f1226dd6b Mon Sep 17 00:00:00 2001 From: yangjianbo Date: Mon, 29 Dec 2025 20:23:19 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0makefile=E7=BC=96?= =?UTF-8?q?=E8=AF=91=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/backend/Makefile b/backend/Makefile index 96b0129e..9a17a3a2 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -1,4 +1,4 @@ -.PHONY: wire build build-embed test-unit test-integration test-cover-integration clean-coverage +.PHONY: wire build build-embed test-unit test-integration test-cover-integration clean-coverage clean wire: @echo "生成 Wire 代码..." @@ -30,4 +30,8 @@ test-cover-integration: clean-coverage: @rm -f coverage.out coverage.html - @echo "覆盖率文件已清理" \ No newline at end of file + @echo "覆盖率文件已清理" + +clean: clean-coverage + @rm -rf bin/ + @echo "构建产物已清理" \ No newline at end of file