colormake 0.1.2

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
16
17
18
# 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

lint:
	cargo clippy --fix --allow-dirty -- -W clippy::all -W clippy::pedantic -W clippy::nursery -W clippy::cargo