mirror of
https://codeberg.org/unspeaker/vestal.git
synced 2025-12-06 08:36:41 +01:00
10 lines
488 B
Makefile
10 lines
488 B
Makefile
hello:
|
|
clear; tmux clear-history || true; cargo build && target/debug/vestal bin/hello-msg.exe 2>&1
|
|
hello-v:
|
|
clear; tmux clear-history || true; cargo build && target/debug/vestal -v bin/hello-msg.exe 2>&1
|
|
vst:
|
|
clear; tmux clear-history || true; cargo build && target/debug/vestal bin/vst.dll 2>&1
|
|
vst-v:
|
|
clear; tmux clear-history || true; cargo build && target/debug/vestal -v bin/vst.dll 2>&1
|
|
wrapper:
|
|
cargo build -p vestal_wrapper --release --target=x86_64-unknown-linux-musl
|