aboutsummaryrefslogtreecommitdiffstats
path: root/rust/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'rust/Makefile')
-rw-r--r--rust/Makefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/rust/Makefile b/rust/Makefile
deleted file mode 100644
index f093a89..0000000
--- a/rust/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-
-.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: ## Run all tests
- cargo test
-
-.PHONY: lint
-lint: ## Run syntax/style checks
- cargo clippy fatcat-cli
-
-.PHONY: fmt
-fmt: ## Run syntax re-formatting
- cargo fmt fatcat-cli
-
-.PHONY: build
-build: ## Build
- cargo build
-
-.PHONY: manpage
-manpage: ## Rebuild manpage using scdoc
- scdoc < fatcat-cli/fatcat-cli.1.scdoc > fatcat-cli/fatcat-cli.1
-
-.PHONY: deb
-deb: ## Build debian packages (.deb files)
- cargo deb -p fatcat-cli