mirror of
https://github.com/kristoferssolo/donut-rs.git
synced 2026-02-04 06:32:03 +00:00
Create Makefile
This commit is contained in:
18
Makefile
Normal file
18
Makefile
Normal file
@@ -0,0 +1,18 @@
|
||||
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"
|
||||
Reference in New Issue
Block a user