SHELL := /bin/bash
.PHONY: help
help:
@echo -e "$$(grep -hE '^\S+:.*##' $(MAKEFILE_LIST) | sed -e 's/:.*##\s*/:/' -e 's/^\(.\+\):\(.*\)/\\x1b[36m\1\\x1b[m:\2/' | column -c2 -t -s :)"
.PHONY: check
check:
cargo check
.PHONY: build
build:
cargo build
.PHONY: install
install:
cargo install --force --path .
.PHONY: test
test:
cargo test
.PHONY: publish
publish:
cargo publish