From 8ae3ff47d4effb1b0ed7c0e2f185c80a2a976be1 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 26 Oct 2022 23:29:14 -0700 Subject: add a Makefile --- Makefile | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b7baf57 --- /dev/null +++ b/Makefile @@ -0,0 +1,42 @@ + +.PHONY: help +help: ## Print info about all commands + @echo "Commands:" + @echo + @grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[01;32m%-20s\033[0m %s\n", $$1, $$2}' + +.PHONY: test +test: build ## Run all tests + cargo test + ./tests/live.sh + +.PHONY: lint +lint: ## Run syntax/style checks + cargo clippy -p adenosine-cli -- --no-deps + +.PHONY: fmt +fmt: ## Run syntax re-formatting + cargo fmt -p adenosine-cli + +.PHONY: build +build: ## Build + cargo build + +.PHONY: build-release +build-release: ## Build for release + cargo build --release + +.PHONY: completions +completions: build ## generate shell completions + ./target/debug/adenosine --shell-completions bash status > extra/adenosine.bash_completions + ./target/debug/adenosine --shell-completions bash status > extra/adenosine.zsh_completions + +extra/adenosine.1: extra/adenosine.1.scdoc + scdoc < extra/adenosine.1.scdoc > extra/adenosine.1 + +.PHONY: manpage +manpage: extra/adenosine.1 ## Rebuild manpage using scdoc + +.PHONY: deb +deb: ## Build debian packages (.deb files) + cargo deb -p adenosine-cli -- cgit v1.2.3