From b2adb3c5fee5e9c4f1bfc1e536ae705f19eb3a0d Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Mon, 3 Jul 2023 01:15:15 +0200 Subject: [PATCH] Add install task to Makefile --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7daca3d..ad7a351 100644 --- a/Makefile +++ b/Makefile @@ -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 \ No newline at end of file + rm *_linux.tar.gz 2>/dev/null || true