From b8197d7678373bd07b1d9909ba539cbd036388ef Mon Sep 17 00:00:00 2001 From: AustrianToast Date: Wed, 28 May 2025 20:20:26 +0200 Subject: [PATCH] forgot the shell scripts --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6243270..243e467 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,12 @@ yt_download: yt_download.c .PHONY: install uninstall -install: yt_download +install: yt_download move_audio.sh move_video.sh sudo mv yt_download /usr/local/bin + sudo mv move_audio.sh /usr/local/bin + sudo mv move_video.sh /usr/local/bin uninstall: sudo rm /usr/local/bin/yt_download + sudo rm /usr/local/bin/move_audio.sh + sudo rm /usr/local/bin/move_video.sh