From a9f8dee14d4286fec14b282b0dfee2caf60b304b Mon Sep 17 00:00:00 2001 From: Shahzad Lone Date: Tue, 25 Jun 2024 13:20:18 -0400 Subject: [PATCH] tools(i): Make one command do all the steps (#2772) ## Relevant issue(s) Resolves #2771 ## Description Runs all the developer make commands in one command. ## How has this been tested? locally Specify the platform(s) on which this was tested: - WSL2 --- 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