diff --git a/Makefile b/Makefile index 46a0198..fe83d99 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,12 @@ export PATH:=$(PATH):$(HOME)/.cargo/bin .phony: build -build: +build: format cargo build +format: + cargo fmt + clean: cargo clean