.PHONY: build install lint test

build:
	cargo build

install:
	./scripts/install.sh

lint:
	cargo clippy -- -D warnings

test:
	cargo test
