mirror of
https://github.com/kristoferssolo/blockishfire.git
synced 2025-12-31 13:42:30 +00:00
19 lines
353 B
Makefile
19 lines
353 B
Makefile
run:
|
|
cargo run
|
|
|
|
build:
|
|
cargo build --release
|
|
|
|
install:
|
|
cargo build --release
|
|
cp target/release/blockishfire ~/.local/bin/blockishfire
|
|
|
|
uninstall:
|
|
rm ~/.local/bin/blockishfire
|
|
|
|
help:
|
|
@echo "Usage:"
|
|
@echo " * make run: run in debug"
|
|
@echo " * make install: install blockishfire to ~/.local/bin/"
|
|
@echo " * make uninstall: uninstall blockishfire"
|