mirror of
https://github.com/chenasraf/tblf_rust.git
synced 2026-05-17 17:48:09 +00:00
16 lines
249 B
Makefile
16 lines
249 B
Makefile
build:
|
|
cargo build --release
|
|
build-dev:
|
|
cargo build
|
|
install:
|
|
cp target/release/tblf /usr/local/bin/tblf
|
|
install-dev:
|
|
cp target/debug/tblf /usr/local/bin/tblf
|
|
dev:
|
|
make build-dev
|
|
make install-dev
|
|
|
|
clean:
|
|
cargo clean
|
|
rm -f /usr/local/bin/tblf
|