From 2435e0d6b635fa8449ef0bec9c7423a0c6529b49 Mon Sep 17 00:00:00 2001 From: Nereuxofficial <37740907+Nereuxofficial@users.noreply.github.com> Date: Fri, 5 Mar 2021 12:03:09 +0100 Subject: [PATCH] Added the uninstall target to the makefile --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b95c510..53297e3 100644 --- a/Makefile +++ b/Makefile @@ -8,4 +8,7 @@ build: main.c gcc $(FLAGS) -o $(NAME) $(FILES) install: - sudo cp $(NAME) $(INSTALL_DIR)$(NAME) \ No newline at end of file + sudo cp $(NAME) $(INSTALL_DIR)$(NAME) + +uninstall: + sudo rm $(INSTALL_DIR)$(NAME)