From 10a1276638f9c7450f874e92f511bdd8c98c5ddf Mon Sep 17 00:00:00 2001 From: mrz1836 Date: Sat, 4 Feb 2023 13:22:19 -0500 Subject: [PATCH] Fixed phony tags --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ed97774..c9bce55 100644 --- a/Makefile +++ b/Makefile @@ -14,15 +14,16 @@ ifeq ($(REPO_OWNER),) REPO_OWNER="bitcoinschema" 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