Merge pull request #2 from Nereuxofficial/main

Added the uninstall target to the makefile
This commit is contained in:
TheDarkBug 2021-03-05 12:08:58 +01:00 committed by GitHub
commit 688c654b2d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,4 +8,7 @@ build: main.c
gcc $(FLAGS) -o $(NAME) $(FILES) gcc $(FLAGS) -o $(NAME) $(FILES)
install: install:
sudo cp $(NAME) $(INSTALL_DIR)$(NAME) sudo cp $(NAME) $(INSTALL_DIR)$(NAME)
uninstall:
sudo rm $(INSTALL_DIR)$(NAME)