# Build the project
build: test
	cargo build --release

install: build
	sudo install --mode=755 --strip target/release/colormake /usr/local/bin/colormake

uninstall:
	sudo rm -f /usr/local/bin/colormake

clean:
	cargo clean

test:
	cargo test
