feat: 增加makefile编译脚本

This commit is contained in:
yangjianbo
2025-12-29 20:23:19 +08:00
parent 042d82359c
commit 9d1d608f4f

View File

@@ -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: wire:
@echo "生成 Wire 代码..." @echo "生成 Wire 代码..."
@@ -31,3 +31,7 @@ test-cover-integration:
clean-coverage: clean-coverage:
@rm -f coverage.out coverage.html @rm -f coverage.out coverage.html
@echo "覆盖率文件已清理" @echo "覆盖率文件已清理"
clean: clean-coverage
@rm -rf bin/
@echo "构建产物已清理"