1
0
mirror of https://github.com/pcvolkmer/osc-variant.git synced 2025-04-20 20:26:50 +00:00

Add install task to Makefile

This commit is contained in:
Paul-Christian Volkmer 2023-07-03 01:15:15 +02:00
parent a8911f86dd
commit b2adb3c5fe

View File

@ -38,7 +38,11 @@ win-binary-x86_64:
linux-binary-x86_64:
cargo build --release --target=x86_64-unknown-linux-gnu
.PHONE: clean
.PHONY: install
install:
cargo install --path .
.PHONY: clean
clean:
cargo clean
rm -rf osc-variant 2>/dev/null || true