.PHONY: all build test clean clippy

all: build
build:
	cargo build
build_test:
	cargo test --no-run
test:
	cargo test
clean:
	cargo clean
clippy:
	cargo clippy
