From 22affa2ab41b3f4b5227aa9b1c0e4a994597d3fd Mon Sep 17 00:00:00 2001 From: Shahzad Lone Date: Tue, 25 Jun 2024 12:30:52 -0400 Subject: [PATCH] PR: One command to do all dev gen steps --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index f4cfa7a7bd..134291390f 100644 --- a/Makefile +++ b/Makefile @@ -380,3 +380,11 @@ docs\:godoc: .PHONY: toc toc: bash tools/scripts/md-toc/gh-md-toc --insert --no-backup --hide-footer --skip-header README.md + +.PHONY: fix +fix: + @$(MAKE) deps + @$(MAKE) lint\:fix + @$(MAKE) tidy + @$(MAKE) mocks + @$(MAKE) docs