.DEFAULT_GOAL := build
all: build install
watch:
cargo watch -- make run
lint:
cargo fmt --check
test:
cargo test --release
run: build
./target/release/w16
install:
cargo install
build:
cargo build --release
start: build
./target/release/w16
build-debug:
cargo build
start-debug:
./target/debug/w16