From 5505ac7d5951eda956d81c66a2b3ff764f4f27bf Mon Sep 17 00:00:00 2001 From: Samuel Dudik Date: Thu, 30 Jul 2020 18:58:09 +0200 Subject: [PATCH] Add uninstall option to makefile --- .gitignore | 2 +- makefile | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index ba2906d..00bb0a0 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -main +herbe diff --git a/makefile b/makefile index 817bfa4..70e5080 100644 --- a/makefile +++ b/makefile @@ -4,5 +4,8 @@ default: install: default cp herbe /usr/local/bin +uninstall: + rm /usr/local/bin/herbe + clean: rm -f herbe