teamspeak-query-lib/Makefile
Tobias Reisinger 895f5f9373
Fix some small issues
Don't crash without self_clid
Improve functions in main.rs
2024-06-03 01:24:46 +02:00

19 lines
285 B
Makefile

.PHONY: run
INSTALL_DIR = $(HOME)/.local/bin
export PATH := target/debug:$(PATH)
build:
@cargo build
run: build
./ts-control
install:
mkdir -p "$(INSTALL_DIR)"
cargo build --release
install -Dm755 -t "$(INSTALL_DIR)" \
./target/release/teamspeak-query-lib \
./ts-control