mirror of
https://github.com/kristoferssolo/donut-rs.git
synced 2025-10-21 19:20:34 +00:00
19 lines
318 B
Makefile
19 lines
318 B
Makefile
run:
|
|
cargo run
|
|
|
|
build:
|
|
cargo build --release
|
|
|
|
install:
|
|
cargo build --release
|
|
cp target/release/donut ~/.local/bin/donut
|
|
|
|
uninstall:
|
|
rm ~/.local/bin/donut
|
|
|
|
help:
|
|
@echo "Usage:"
|
|
@echo " * make run: run in debug"
|
|
@echo " * make install: install donut to ~/.local/bin/"
|
|
@echo " * make uninstall: uninstall donut"
|