1
0
mirror of https://github.com/pcvolkmer/osc-variant.git synced 2025-04-19 11:46: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,9 +38,13 @@ 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
rm *_win64.zip 2>/dev/null || true
rm *_linux.tar.gz 2>/dev/null || true
rm *_linux.tar.gz 2>/dev/null || true