From 8a0469f5fb77c4b1d02f77a23f136af6a0956c0b Mon Sep 17 00:00:00 2001 From: mrz1836 Date: Thu, 7 Jul 2022 12:28:29 -0400 Subject: [PATCH] Minor makefile cleanup --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b7695f2..b2bc0c0 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