12 lines
141 B
Makefile
12 lines
141 B
Makefile
|
|
||
|
alias b := build
|
||
|
alias i := install
|
||
|
|
||
|
build:
|
||
|
cargo build --release
|
||
|
|
||
|
install DIR: build
|
||
|
cp ./target/release/env-share "{{DIR}}/env-share"
|
||
|
|
||
|
|