.PHONY: build install uninstall test
build:
cargo build --release
install: build
./target/release/eqtune install
@echo
@echo "Optional: put the CLI on your PATH:"
@echo " ln -sf \"$$HOME/Library/Application Support/eqtune/eqtune\" /usr/local/bin/eqtune"
uninstall:
-./target/release/eqtune uninstall
test:
cargo test