colormake 0.1.0

A fast, lightweight tool to colorize make output for better readability.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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