From 98798a460a92bd58ec27a37fb3ddc711f80044e7 Mon Sep 17 00:00:00 2001 From: mrz1836 Date: Mon, 26 Dec 2022 14:03:45 -0500 Subject: [PATCH] Fixed phony tags --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2c6242b..80a3a79 100644 --- a/Makefile +++ b/Makefile @@ -14,15 +14,16 @@ ifeq ($(REPO_OWNER),) REPO_OWNER="mrz1836" endif -.PHONY: clean - +.PHONY: all all: ## Runs multiple commands @$(MAKE) test +.PHONY: clean clean: ## Remove previous builds and any test cache data @go clean -cache -testcache -i -r @test $(DISTRIBUTIONS_DIR) @if [ -d $(DISTRIBUTIONS_DIR) ]; then rm -r $(DISTRIBUTIONS_DIR); fi +.PHONY: release release:: ## Runs common.release then runs godocs @$(MAKE) godocs \ No newline at end of file