From 4946cebba43d377b59059097b2363e71f446f83a Mon Sep 17 00:00:00 2001 From: mrz1836 Date: Sun, 7 Aug 2022 09:58:55 -0400 Subject: [PATCH] Fixed phony tags --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e8ee26f..92fe11e 100644 --- a/Makefile +++ b/Makefile @@ -14,18 +14,20 @@ 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 +.PHONY: run-examples run-examples: ## Runs all the examples @go run examples/examples.go \ No newline at end of file