.PHONY: build install run demo test clean

# Build in release mode
build:
	cargo build --release

# Install to ~/.cargo/bin/k4000-dash
install:
	cargo install --path .

# Run in dev mode
run:
	cargo run

# Run the widget demo screen
demo:
	cargo run -- --demo

# Run tests
test:
	cargo test

# Clean build artifacts
clean:
	cargo clean
