wake-build 0.1.1

Rust-written Make alternative
Documentation
1
2
3
4
5
6
7
8
9
buildandclean:
	cargo clean
	cargo build
install:
	echo "Root required!"
	su -c 'install -Dm755 -t /bin/ target/debug/wake && chmod +x /bin/wake'
full:
	make
	make install