11 lines
152 B
Makefile
11 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"
|
||
|
|