From 8560a4b384d5ba8058ded9393f75e492966866e9 Mon Sep 17 00:00:00 2001 From: redxef Date: Wed, 22 Dec 2021 17:43:14 +0100 Subject: [PATCH] Add uninstall operation. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 55ce5bd..df2a270 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,10 @@ check: shellcheck clean: $(RM) build-docker shellcheck.log $(START_SCRIPT) -install: build +install: check build install -D --mode=755 $(START_SCRIPT) $(PREFIX)/bin/$(INSTALLATION_NAME) +uninstall: + $(RM) $(PREFIX)/bin/$(INSTALLATION_NAME) + .PHONY: check clean