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