10 lines
152 B
Makefile
10 lines
152 B
Makefile
|
|
alias b := build
|
|
alias i := install
|
|
|
|
build:
|
|
cargo build --release
|
|
|
|
install DIR: build
|
|
cp ./target/release/path-convert "{{DIR}}/path-convert"
|
|
|