Skip to content

Commit

Permalink
Fixed phony tags
Browse files Browse the repository at this point in the history
  • Loading branch information
mrz1836 committed Feb 4, 2023
1 parent 27ce971 commit 10a1276
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 10a1276

Please sign in to comment.