Documentation
1
2
3
4
5
6
7
8
9
10
11
test:
	cargo test -- --nocapture

build:
	cargo build --release

install:
	cp target/release/csbq /usr/bin/

clean:
	rm -rf target